/* Common Header, Navbar, Hamburger, and WhatsApp Button Styles */

/* Header */
header {
  position: sticky;
  top: 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  z-index: 999;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
header:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
header img {
  height: 45px;
  margin-right: auto;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}
header img:hover {
  transform: scale(1.05);
}

/* Navbar */
nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  background: rgba(255,255,255,0.1);
  padding: 6px 20px;
  border-radius: 15px;
}
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #1e2e3e;
  font-weight: 500;
  position: relative;
  padding: 3px 0;
  transition: color 0.3s ease;
}
nav a.active {
  color: #C12637;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #C12637;
  transition: width 0.3s ease;
}
nav a:hover {
  color: #C12637;
}
nav a:hover::after {
  width: 100%;
}
nav a.active::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #1e2e3e;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  header {
    top: 10px;
    margin: 0 10px;
    padding: 8px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  header:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  }
  .hamburger {
    display: block;
  }
  nav {
    position: fixed;
    top: 90px;
    left: -100%;
    width: calc(100% - 40px);
    height: calc(100vh - 110px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: left 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  nav.active {
    left: 20px;
  }
  nav a {
    margin: 15px 0;
    font-size: 1.2em;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}
.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
.whatsapp-button i {
  font-size: 24px;
}
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    font-size: 0.9em;
  }
  .whatsapp-button span {
    display: inline;
    font-size: 0.9em;
  }
  .whatsapp-button i {
    font-size: 20px;
    margin-right: 5px;
  }
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #1a1d1e 0%, #2c2f30 100%);
  color: #fff;
  padding: 60px 0 30px;
  margin-top: 60px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #007b5e, transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 20px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #007b5e, #C12637);
  border-radius: 2px;
}

.footer-section p {
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.95em;
}

.footer-section a {
  color: #b3b3b3;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95em;
}

.footer-section a:hover {
  color: #007b5e;
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #b3b3b3;
  font-size: 0.95em;
}

.footer-contact-item i {
  width: 20px;
  margin-right: 12px;
  color: #007b5e;
  font-size: 1em;
}

.footer-contact-item strong {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: linear-gradient(135deg, #007b5e, #005c47);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 94, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left {
  color: #b3b3b3;
  font-size: 0.9em;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-bottom-links a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.9em;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-bottom-links a:hover {
  color: #007b5e;
}

.footer-bottom-links .divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1em;
  user-select: none;
}

@media screen and (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }

  footer {
    padding: 50px 0 25px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-bottom-links .divider {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
  }

  footer {
    padding: 40px 0 20px;
  }

  .footer-section h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
  }

  .footer-section p {
    font-size: 0.9em;
  }

  .social-links a {
    width: 35px;
    height: 35px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .footer-content {
    padding: 0 15px;
    gap: 20px;
  }

  footer {
    padding: 30px 0 15px;
  }

  .footer-section h4 {
    font-size: 1em;
  }

  .footer-section p,
  .footer-contact-item {
    font-size: 0.85em;
  }

  .footer-bottom {
    gap: 10px;
  }

  .footer-bottom-left {
    font-size: 0.8em;
  }

  .footer-bottom-links a {
    font-size: 0.8em;
  }
}

/* Adak Kurban Bölümü Stilleri */
.adak-kurban-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  margin: 0;
  width: 100%;
}

.adak-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.adak-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.adak-text h2 {
  color: #2c5530;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.adak-description {
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.adak-features {
  margin-bottom: 35px;
}

.adak-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #495057;
  font-size: 1rem;
}

.adak-feature i {
  color: #007b5e;
  margin-right: 12px;
  width: 20px;
  font-size: 1.1rem;
}

.adak-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.adak-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.adak-btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.adak-btn.primary {
  background: linear-gradient(135deg, #007b5e 0%, #005a47 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 94, 0.3);
}

.adak-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 94, 0.4);
  background: linear-gradient(135deg, #005a47 0%, #004238 100%);
}

.adak-btn.secondary {
  background: transparent;
  color: #007b5e;
  border: 2px solid #007b5e;
}

.adak-btn.secondary:hover {
  background: #007b5e;
  color: white;
  transform: translateY(-2px);
}

.adak-image {
  text-align: center;
}

.adak-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.adak-image img:hover {
  transform: scale(1.02);
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
  .adak-kurban-section {
    padding: 40px 0;
  }
  
  .adak-container {
    padding: 0 15px;
  }
  
  .adak-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .adak-text {
    order: 2;
  }
  
  .adak-image {
    order: 1;
  }
  
  .adak-text h2 {
    font-size: 1.8rem;
  }
  
  .adak-description {
    font-size: 1rem;
  }
  
  .adak-features {
    text-align: left;
  }
  
  .adak-buttons {
    justify-content: center;
  }
  
  .adak-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .adak-text h2 {
    font-size: 1.5rem;
  }
  
  .adak-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .adak-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Adak Detay Bölümü Stilleri */
.adak-detay-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 0;
  margin: 0;
  width: 100%;
}

.adak-detay-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.adak-detay-container h2 {
  color: #2c5530;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

.adak-detay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.adak-detay-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.adak-detay-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.adak-detay-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007b5e 0%, #005a47 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.adak-detay-item:hover .adak-detay-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 123, 94, 0.3);
}

.adak-detay-icon i {
  font-size: 2rem;
  color: white;
}

.adak-detay-item h3 {
  color: #2c5530;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.adak-detay-item p {
  color: #495057;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Tasarım - Detay Bölümü */
@media screen and (max-width: 992px) {
  .adak-detay-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .adak-detay-container h2 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .adak-detay-section {
    padding: 60px 0;
  }
  
  .adak-detay-container {
    padding: 0 15px;
  }
  
  .adak-detay-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .adak-detay-container h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .adak-detay-item {
    padding: 30px 20px;
  }
  
  .adak-detay-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .adak-detay-icon i {
    font-size: 1.8rem;
  }
  
  .adak-detay-item h3 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .adak-detay-container h2 {
    font-size: 1.8rem;
  }
  
  .adak-detay-item {
    padding: 25px 15px;
  }
  
  .adak-detay-icon {
    width: 60px;
    height: 60px;
  }
  
  .adak-detay-icon i {
    font-size: 1.5rem;
  }
  
  .adak-detay-item h3 {
    font-size: 1.1rem;
  }
  
  .adak-detay-item p {
    font-size: 0.95rem;
  }
}


