/* Colors */
:root {
  --green: #228b22;
  --gold: #daa520;
  --pink: #ffc0cb;
  --light: #f9f9f9;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: #228b22;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px; /* Tighter on mobile for full-width feel */
  }
}

.text-center {
  text-align: center;
}

/* Header */
/* ─────────────── Modern & Fully Responsive Header ─────────────── */

/* Header */
.header {
  background: var(--gold);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: background 0.3s ease;
}

/* Container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Logo */
.logo img {
  height: 70px; /* Smaller for better balance */
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

/* Navigation */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-list a {
  color: #111;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--green);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 60%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 12px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 0.95rem;
}

.dropdown-menu li a:hover {
  background: #f8f9fa;
  color: var(--green);
}

/* Right Side: Donate + Toggle */
.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-donate {
  padding: 12px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--green);
  color: white;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(30,77,30,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.nav-donate:hover {
  background: #164016;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30,77,30,0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--green);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-toggle:hover {
  transform: rotate(90deg);
}

/* ─────────────── Mobile Menu ─────────────── */
.mobile-menu {
  display: none;
}

/* ─────────────── Mobile Menu ─────────────── */
/* ─────────────── Mobile Menu ─────────────── */
@media (max-width: 1024px) {
  /* container */
  .header-container {
    padding: 0 20px;
  }

  /* Hide desktop nav */
  .nav {
    display: none;
  }

  /* Show hamburger */
  .nav-toggle {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
  }

    /* Mobile menu container */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gold); 
    border-top: 2px solid var(--foundation-green);
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }

  /* Menu list */
  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu-list a,
  .mobile-dropdown .dropdown-toggle {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff; /* White text on purple */
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    transition: background 0.3s;
  }

  .mobile-menu-list a:hover,
  .mobile-dropdown .dropdown-toggle:hover {
    background: var(--foundation-green);
    color: var(--foundation-purple);
  }

   /* Mobile dropdown */
  .mobile-dropdown .dropdown-toggle {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #374151;
    text-align: left;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    margin-top: 0.5rem;
    padding-left: 1rem;
  }

  .mobile-dropdown-menu.active {
    display: flex;
  }
}

/* Global Buttons */
.btn {
  padding: 15px 65px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #f5aa1d;
  color: white;
}

.btn-primary:hover {
  background: #fda502;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(34, 139, 34, 0.4);
}

.btn-secondary {
  background: var(--gold);
  color: #333;
}

.btn-secondary:hover {
  background: #c4941b;
  transform: translateY(-5px);
}

.btn-outline {
  border: 3px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--green);
}

/* ====================== USA CHAPTER HERO ====================== */
.usa-hero {
    min-height: 92vh;
    background: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.48)), 
                url('../images/wog-19.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34,139,34,0.25), rgba(218,165,32,0.35));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.flag-hero {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f5d07a;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    animation: floatFlag 4s ease-in-out infinite;
}

.flag-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatFlag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.chapter-hero h1 {
    font-size: clamp(3.4rem, 7vw, 5.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gold);
    margin-bottom: 12px;
    text-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

.chapter-subtitle {
    font-size: clamp(1.35rem, 3.5vw, 1.8rem);
    color: #f5d07a;
    font-weight: 600;
    margin-bottom: 20px;
}

.chapter-tagline {
    font-size: clamp(1.25rem, 3vw, 1.55rem);
    max-width: 760px;
    margin: 0 auto 40px;
    line-height: 1.5;
    font-weight: 500;
}

.hero-cta .btn-large {
    padding: 18px 48px;
    font-size: 1.25rem;
}

/* Mobile */
@media (max-width: 768px) {
    .usa-hero {
        min-height: 78vh;
        padding-top: 80px;
    }
    
    .flag-hero {
        width: 140px;
        height: 140px;
    }
    
    .hero-cta {
        margin-top: 20px;
    }
}

/* ====================== ABOUT USA CHAPTER SECTION - MOBILE FIRST ====================== */
.about-usa-section {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    display: block;
}

.about-text h2 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    color: var(--green);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 20px;
}

.about-btn a {
    padding: 14px 40px;
    font-size: 1.1rem;
}

/* Desktop: Side-by-side */
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .about-image {
        order: 2; /* Image on right on desktop */
    }
    
    .about-text {
        order: 1;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .about-usa-section {
        padding: 70px 0;
    }
    
    .about-grid {
        gap: 40px;
    }
}

/* ==============================================
   IMPACT STATS - USA Chapter
   Modern glossy cards with smooth counter animation
============================================== */
.impact-stories-section {
    padding: 100px 0;
    background: var(--light);
}

.impact-stories-section h2 {
    color: var(--green);
    text-align: center;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    margin-bottom: 60px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.impact-card {
    background: white;
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(34, 139, 22, 0.15);
}

.impact-card i {
    font-size: 3.2rem;
    color: var(--green);
    margin-bottom: 20px;
    display: block;
}

.impact-card h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--green);
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
}

.impact-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Counter animation styling */
.counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--green);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
        margin-top: 40px;
    }
    
    .impact-card {
        padding: 32px 20px;
    }
    
    .impact-card i {
        font-size: 2.8rem;
    }
    
    .impact-card h3 {
        font-size: 2.4rem;
    }
}

/* ==============================================
   KEY PROGRAMS - Horizontal Scroll (Hidden Scrollbar)
============================================== */
.programs-section {
    padding: 100px 0;
    background: white;
}

.programs-section .container h2 {
    color: var(--green);
    text-align: center;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    margin-bottom: 20px;
}

.programs-scroll-container {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.programs-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;           /* Firefox */
    -ms-overflow-style: none;        /* IE/Edge */
}

/* Hide scrollbar - Chrome, Safari, Edge */
.programs-grid::-webkit-scrollbar {
    display: none;
}

.program-card {
    flex: 0 0 320px;                 /* Fixed card width for scroll effect */
    scroll-snap-align: start;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(34, 139, 22, 0.15);
}

.program-flyer {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .program-card {
        flex: 0 0 280px;
    }
    .programs-grid {
        gap: 20px;
    }
    .program-flyer {
        height: 200px;
    }
}

/* ==============================================
   UPCOMING EVENTS - Glossy & Mobile-Friendly
============================================== */
.upcoming-events-section {
    padding: 100px 0;
    background: var(--light);
}

.upcoming-events-section h2 {
    color: var(--green);
    text-align: center;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    margin-bottom: 20px;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.upcoming-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.upcoming-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.upcoming-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(34, 139, 22, 0.15);
}

.date {
    display: inline-block;
    background: var(--gold);
    color: #333;
    font-weight: bold;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.upcoming-card h3 {
    font-size: 1.65rem;
    margin-bottom: 12px;
    color: #222;
}

.event-location {
    color: #666;
    margin-bottom: 25px;
}

/* Main Gala Card - Extra Highlight */
.main-event {
    background: linear-gradient(135deg, #228b22, #1e7a1e);
    color: white;
    border: 3px solid #f5d07a;
}

.main-event .date,
.main-event h3,
.main-event .event-location {
    color: white;
}

.main-event .btn-primary {
    background: white;
    color: var(--green);
    font-weight: bold;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f5d07a;
    color: #222;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 4px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
    .upcoming-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .upcoming-card {
        padding: 32px 25px;
    }
}

/* ==============================================
   STORIES OF IMPACT - Horizontal Scroll (Hidden Scrollbar)
============================================== */

.stories-scroll-container {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.stories-grid {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;           /* Firefox */
    -ms-overflow-style: none;        /* IE/Edge */
}

/* Hide scrollbar completely */
.stories-grid::-webkit-scrollbar {
    display: none;
}

.story-card {
    flex: 0 0 340px;                 /* Fixed width for scroll effect */
    scroll-snap-align: start;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(34, 139, 22, 0.15);
}

.story-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.quote {
    padding: 25px 25px 10px;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    font-size: 1.05rem;
}

.story-author {
    padding: 0 25px 25px;
    color: var(--green);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .story-card {
        flex: 0 0 290px;
    }
    .story-card img {
        height: 210px;
    }
}

/* ==============================================
   PAST EVENTS - Horizontal Scroll + Modal Gallery
============================================== */
.past-events-section {
    padding: 100px 0;
    background: var(--light);
}

.past-events-section h2 {
    color: var(--green);
    text-align: center;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    margin-bottom: 20px;
}

.past-events-scroll {
    margin-top: 50px;
    overflow: hidden;
}

.past-events-grid {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.past-events-grid::-webkit-scrollbar { display: none; }

.past-event-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    cursor: pointer;
}

.past-event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(34,139,22,0.15);
}

.past-event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-info {
    padding: 20px;
    text-align: center;
}

.event-info strong { display: block; font-size: 1.25rem; margin-bottom: 4px; }
.event-info span { color: #666; font-size: 1rem; }

.view-gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(34,139,22,0.9);
    color: white;
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: 30px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s;
}

.past-event-card:hover .view-gallery-badge { opacity: 1; }

/* Modal Gallery */
.past-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.past-modal-content {
    background: white;
    max-width: 1000px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.past-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.past-modal-header h3 { margin: 0; }

.past-modal-close {
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.past-modal-body {
    padding: 30px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.past-modal-body img,
.past-modal-body iframe {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Mobile */
@media (max-width: 768px) {
    .past-event-card { flex: 0 0 280px; }
    .past-event-card img { height: 200px; }
}

/* ====================== GET INVOLVED CTA SECTION ====================== */
.get-involved-cta {
    padding: 100px 0;
    background: white;
}

.get-involved-cta h2 {
    color: var(--green);
    text-align: center;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.35rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto 60px;
}

.involvement-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.involvement-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.09);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.involvement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(34,139,34,0.15);
}

.involvement-card i {
    font-size: 3.6rem;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.involvement-card h3 {
    font-size: 1.55rem;
    color: var(--green);
    margin-bottom: 14px;
}

.involvement-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Desktop - 2x2 grid */
@media (min-width: 768px) {
    .involvement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .get-involved-cta {
        padding: 70px 0;
    }
    
    .involvement-card {
        padding: 32px 24px;
    }
}

/* Footer */
.footer {
  background: #1a3d1a; /* Deep green for elegance */
  color: white;
  padding: 80px 0 30px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1400px;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.footer-logo img {
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 15px;
}

.tax-info {
  font-size: 0.6rem;
  opacity: 0.8;
  font-style: italic;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links a,
.footer-contact li {
  margin-bottom: 12px;
  display: block;
  color: #ddd;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact i {
  color: var(--gold);
  margin-right: 10px;
  width: 20px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: #333;
  transform: translateY(-5px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.newsletter-form input {
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.newsletter-form .btn {
  padding: 14px;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
  .footer-grid {
    gap: 40px;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .newsletter-form {
    align-items: center;
  }
  .newsletter-form input {
    width: 100%;
    max-width: 300px;
  }
}