/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation Styles */
.navbar {
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.15s ease;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Logo Styles */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Remove logo hover scale per animation restrictions */
.logo-img:hover {
  transform: none;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 15px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #071b72;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Tone down nav-link hover to color only (keep for navigation per allowance) */
.nav-link:hover {
  background-color: rgba(7, 27, 114, 0.08);
  transform: none;
  color: #0a1f7a;
}

.nav-link.active {
  background-color: rgba(7, 27, 114, 0.15);
  color: #0a1f7a;
  font-weight: 600;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  color: #071b72;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.dropdown-toggle:hover {
  background-color: rgba(7, 27, 114, 0.08);
  transform: none;
  color: #0a1f7a;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: inherit;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.15s ease;
  list-style: none;
  padding: 8px 0;
  margin-top: 8px;
  border: 1px solid #e5e7eb;
  max-height: 100vh;
  overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #071b72;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}

.dropdown-link:hover {
  background-color: #f8fafc;
  border-left-color: #071b72;
  padding-left: 25px;
  color: #0a1f7a;
}

/* Donate Button Styles - Professional */
.donate-btn {
  background: #f59e0b !important;
  color: white !important;
  border-radius: 6px !important;
  padding: 12px 20px !important;
  font-weight: 600 !important;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease !important;
  margin-left: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  border: none;
  white-space: nowrap;
}

.donate-btn:hover {
  background: #d97706 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  color: white !important;
  text-decoration: none !important;
}

.donate-btn i {
  font-size: 14px;
}

.donate-btn span {
  font-size: 14px;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding: 5px;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #071b72;
  transition: all 0.15s ease;
  border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Main Content Styles */
.main-content {
  margin-top: 70px;
}

.hero-section {
  height: 60vh;
  background-image: url("images/01 Home Page - Solid Picks/home-page-newsletter-smile-butterfly-wings.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  opacity: 0.9;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 1100px) {
  .hamburger {
    display: flex;
  }

  .nav-right {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 100%;
    max-width: 100vw;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 0;
    border-top: 1px solid #e5e7eb;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-right.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-item {
    margin: 0;
    width: 100%;
  }

  .nav-link {
    padding: 15px 20px;
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Mobile Dropdown Styles */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8fafc;
    margin: 0;
    border-radius: 0;
    display: none;
    border: none;
  }

  /* Disable hover on mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-link {
    color: #071b72;
    border-left: none;
    padding: 10px 40px;
  }

  .dropdown-link:hover {
    background-color: rgba(7, 27, 114, 0.1);
    padding-left: 40px;
    color: #0a1f7a;
  }

  /* Mobile Donate Button Styles */
  .donate-btn {
    margin-left: 0 !important;
    margin: 10px 20px !important;
    justify-content: center;
    padding: 14px 24px !important;
    border-radius: 6px !important;
    width: calc(100% - 40px);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo-img {
    height: 35px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-link:focus,
.dropdown-link:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

/* Professional button focus states */
.cta-btn:focus,
.hero-btn:focus,
.donate-btn:focus,
.donate-btn:active,
.donate-btn:visited,
.newsletter-btn:focus,
.contact-submit-btn:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  text-decoration: none !important;
}

/* Professional button disabled states */
.cta-btn:disabled,
.hero-btn:disabled,
.donate-btn:disabled,
.newsletter-btn:disabled,
.contact-submit-btn:disabled {
  background: #9ca3af !important;
  color: #6b7280 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  opacity: 0.6;
}

/* Hero Carousel Styles */
.hero-carousel {
  position: relative;
  height: calc(100vh - 70px);
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-content {
  text-align: center;
  color: white;
  max-width: 85%;
  padding: 0 20px;
  animation: slideUp 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
  background: #f59e0b;
  color: white;
  border-radius: 6px;
  padding: 14px 28px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  display: inline-block;
  font-size: 16px;
  border: none;
  white-space: nowrap;
  cursor: pointer;
}

/* Home newsletter FAQ button style to match Contact Us button style (less rounded) */
.newsletter-section .faq-cta .hero-btn {
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid #ffffff !important;
}
.faq-cta {
  background: none !important;
  background-color: rgba(255, 255, 255, 0) !important;
}

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.carousel-btn:hover {
  color: #fbbf24;
  transform: translateY(-50%) scale(1.2);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

/* Content Sections */
.content-section {
  padding: 60px 0;
  position: relative;
}

.content-section.bg-light {
  background-color: #f8fafc;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-row {
  display: grid;
  grid-template-columns: 3fr auto 2fr;
  gap: 40px;
  align-items: center;
  min-height: 350px;
}

.content-row.reverse {
  grid-template-columns: 2fr auto 3fr;
}

.content-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.content-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  /* Remove hover zoom for general images */
  transition: none;
}

.content-text {
  padding: 0 20px;
}

.content-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #071b72;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  background: #071b72;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #0a1f7a;
}

/* Home newsletter FAQ button: white border/text, transparent bg; grow slightly on hover */
.newsletter-section .faq-cta .cta-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 2px solid #ffffff;
}

.newsletter-section .faq-cta .cta-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-1px) scale(1.03);
}

/* Content Divider */
.content-divider {
  position: relative;
  width: 1px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #cbd5e1 20%,
    #cbd5e1 80%,
    transparent 100%
  );
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  box-shadow: 0 0 0 3px white, 0 0 0 4px #cbd5e1;
  z-index: 1;
}

/* Newsletter Section */
.newsletter-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.newsletter-content {
  position: relative;
}

.newsletter-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #071b72 0%, #2c3e50 50%, #4a5568 100%);
  padding: 60px 50px;
  text-align: center;
  color: white;
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), inset 0 0 50px rgba(0, 0, 0, 0.1);
}

.newsletter-overlay h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.newsletter-overlay > p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto 2rem;
}

.form-group {
  display: flex;
  gap: 0;
  background: white;
  border-radius: 35px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group input {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-size: 1rem;
  border-radius: 35px;
  outline: none;
  background: transparent;
  color: #374151;
}

.form-group input::placeholder {
  color: #9ca3af;
}

.newsletter-btn {
  background: #f59e0b;
  border: none;
  padding: 16px 24px;
  border-radius: 35px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 15px;
}

.newsletter-btn:hover {
  background: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Contact Section Styles */
.contact-section {
  background-color: #f8fafc;
  padding: 80px 0;
  border-top: 1px solid #e5e7eb;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #071b72;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-header p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-image-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: slideInFromLeft 0.4s ease-out;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(7, 27, 114, 0.15);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 15px;
}

.contact-image:hover {
  transform: none;
  box-shadow: 0 15px 35px rgba(7, 27, 114, 0.15);
}

.contact-image img {
  border-radius: 15px !important;
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.contact-image img:hover {
  transform: none;
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.contact-image-text {
  padding: 1.5rem 0;
  position: relative;
}

.contact-image-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #071b72;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.contact-image-text h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #071b72, #0a1f7a);
  border-radius: 2px;
}

.contact-image-text p {
  font-size: 1.2rem;
  color: #4b5563;
  line-height: 1.7;
  font-weight: 400;
}

.contact-form-container {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  height: fit-content;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-field input,
.form-field textarea {
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  color: #374151;
  background: #fff;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #071b72;
  box-shadow: 0 0 0 3px rgba(7, 27, 114, 0.1);
  transform: translateY(-1px);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact-submit-btn {
  background: #071b72;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: center;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.contact-submit-btn:hover {
  background: #0a1f7a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-submit-btn i {
  font-size: 1rem;
}

/* Contact Form Responsive Design */
@media screen and (max-width: 968px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-image img {
    height: 350px;
  }

  .contact-image-text h3 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-main {
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .contact-image img {
    height: 300px;
  }

  .contact-image-text h3 {
    font-size: 1.4rem;
  }

  .contact-form-container {
    padding: 2rem;
    border-radius: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-submit-btn {
    width: 100%;
    padding: 14px 24px;
  }
}

@media screen and (max-width: 480px) {
  .contact-header h2 {
    font-size: 1.8rem;
  }

  .contact-main {
    gap: 1.5rem;
  }

  .contact-image img {
    height: 250px;
  }

  .contact-image-text h3 {
    font-size: 1.3rem;
  }

  .contact-form-container {
    padding: 1.5rem;
    border-radius: 10px;
  }

  .form-field input,
  .form-field textarea {
    padding: 14px 16px;
  }
}

/* Professional Design Standards Applied:
   - Conservative 6px border radius for modern look
   - Consistent 44-48px button height for accessibility
   - Professional color palette (solid colors vs gradients)
   - Moderate font weight (600) and normal case text
   - Subtle hover effects (1px lift, gentle shadows)
   - Proper focus states for accessibility compliance
   - Disabled states for complete UX
   - Faster transitions (0.2s) for responsive feel
*/

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animations */
[data-animation] {
  opacity: 0;
  transition: all 0.8s ease;
}

[data-animation].animate {
  opacity: 1;
}

[data-animation="slide-in-left"] {
  transform: translateX(-50px);
}

[data-animation="slide-in-left"].animate {
  transform: translateX(0);
}

[data-animation="slide-in-right"] {
  transform: translateX(50px);
}

[data-animation="slide-in-right"].animate {
  transform: translateX(0);
}

[data-animation="fade-in-up"] {
  transform: translateY(50px);
}

[data-animation="fade-in-up"].animate {
  transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .content-row {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .content-row.reverse {
    grid-template-columns: 1fr;
  }

  /* Ensure text is always above image on mobile */
  .content-text {
    order: 1;
  }

  .content-image {
    order: 2;
  }

  .content-divider {
    display: none;
  }

  .content-text h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .carousel-btn {
    font-size: 2rem;
  }

  .prev-btn {
    left: 20px;
  }

  .next-btn {
    right: 20px;
  }

  .content-section {
    padding: 40px 0;
  }

  .content-image img {
    height: 280px;
  }

  .newsletter-overlay {
    padding: 40px 25px;
    border-radius: 12px;
  }

  .newsletter-overlay h2 {
    font-size: 2rem;
  }

  .form-group {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
  }

  .form-group input,
  .newsletter-btn {
    border-radius: 35px;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .content-text h2 {
    font-size: 1.5rem;
  }

  .newsletter-overlay {
    padding: 30px 15px;
    border-radius: 8px;
  }

  .newsletter-overlay h2 {
    font-size: 1.5rem;
  }
}

/* Footer Styles */
.footer {
  background-color: #f8f9fa;
  color: #495057;
  padding: 20px 0;
  margin-top: 0;
  border-top: 1px solid #e9ecef;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 15px 0;
  }
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #343a40;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #495057;
}

.footer-section p {
  margin-bottom: 0.3rem;
  line-height: 1.5;
  color: #6c757d;
  font-size: 0.9rem;
}

/* Contact Information Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.address-group {
  margin-bottom: 0.5rem;
}

.address-group p:first-of-type {
  font-weight: 600;
  color: #343a40;
}

/* Hours and Phone Styles */
.hours-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-group,
.phone-group {
  margin-bottom: 0.5rem;
}

.phone-numbers {
  margin: 0.3rem 0 !important;
}

.phone-numbers a {
  color: #071b72;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.phone-numbers a:hover {
  color: #0a1f7a;
  text-decoration: underline;
}

.tour-message {
  font-style: italic;
  color: #6c757d !important;
  margin-top: 0.5rem !important;
  font-weight: 400;
  font-size: 0.85rem;
}

/* Social Media Styles */

.social-media > p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #495057;
}

.social-icons {
  display: flex;
  justify-content: left;
  gap: 15px;
  margin-top: 0.8rem;
  margin-bottom: 2rem;
}

/* Schedule Tour Styles */
.schedule-tour {
  margin-top: 1.5rem;
}

.schedule-tour h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #495057;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 50%;
  color: #6c757d;
  font-size: 1.375rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link.facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
}

.social-link.instagram:hover {
  border-color: #e4405f;
  color: #e4405f;
}

.social-link.youtube:hover {
  border-color: #ff0000;
  color: #ff0000;
}

/* Footer FAQ Link */
.footer-faq-link {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #071b72;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-link:hover {
  color: #f59e0b;
  text-decoration: none;
}

.faq-link i {
  font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #dee2e6;
  padding: 15px 0;
  text-align: center;
}

.footer-bottom-content p {
  margin-bottom: 0.3rem;
  color: #6c757d;
  font-size: 0.85rem;
}

.footer-bottom-content p:first-child {
  font-weight: 500;
  color: #495057;
}

.footer-bottom-content p:last-child {
  font-style: italic;
  opacity: 0.8;
}

/* Footer Responsive Design */
@media screen and (max-width: 968px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-section:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 25px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .contact-info,
  .hours-info {
    align-items: center;
  }

  .address-group,
  .hours-group,
  .phone-group {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .social-icons {
    gap: 12px;
  }
}
