:root {
      --navy: #0d1f3c;
      --navy-mid: #1a3358;
      --gold: #8d7847;
      --gold-light: #d4b86a;
      --cream: #f8f5ef;
      --off-white: #f0ece4;
      --gray-soft: #e8e2d9;
      --text-dark: #0d1f3c;
      --text-mid: #3a4f6b;
      --text-light: #6b7f99;
      --white: #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }


/* ----- WHATSAPP FLOATING ICON ----- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 999;
}

/* Text (hidden initially) */
.whatsapp-text {
  background: #25D366;
  color: white;
  padding: 10px 14px;
  border-radius: 30px;
  margin-right: 10px;
  font-size: 14px;
  white-space: nowrap;

  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

/* Icon button */
.whatsapp-icon {
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

/* Hover Effects */
.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.1);
  animation: none
}

/* Floating Animation */
.whatsapp-icon  {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(248,245,239,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(181,150,74,0.2);
      padding: 0 5%;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
      
    }

    .nav-logo img { width: 40px; height: 40px; }

    .nav-brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      color: var(--navy);
      letter-spacing: 2px;
      line-height: 1;
    }
    .nav-brand span { display: block; font-size: 0.55rem; letter-spacing: 2px; color: var(--gold); font-family: 'Outfit', sans-serif; font-weight: 600; }

    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      text-decoration: none; color: var(--text-mid);
      font-weight: 500; font-size: 0.9rem; letter-spacing: 0.5px;
      position: relative; transition: color 0.2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
      height: 2px; background: var(--gold); transform: scaleX(0);
      transition: transform 0.25s; transform-origin: left;
    }
    .nav-links a:hover { color: var(--navy); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      background: var(--navy); color: var(--white) !important;
      padding: 0.5rem 1.3rem; border-radius: 4px;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
    .nav-cta::after { display: none !important; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: 6rem 5% 4rem;
    }

    .hero-grid-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(181,150,74,0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181,150,74,0.2) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-glow {
      position: absolute; right: -10%; top: 50%; transform: translateY(-50%);
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(181,150,74,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-content { position: relative; z-index: 2; max-width: 700px; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(181,150,74,0.15);
      border: 1px solid rgba(181,150,74,0.3);
      padding: 6px 16px; border-radius: 50px;
      color: var(--gold-light); font-size: 0.8rem; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase;
      margin-bottom: 2rem;
      animation: fadeUp 0.8s 0.1s ease forwards;
    }
    /* .hero-badge::before { content: '●'; font-size: 0.5rem; } */

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 8vw, 7rem);
      line-height: 0.95;
      color: var(--white);
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s 0.25s ease forwards;
    }
    .hero-title em { color: var(--gold-light); font-style: normal; }

    .hero-sub {
      font-size: 1.1rem; color: rgba(255,255,255,0.65);
      line-height: 1.7; max-width: 520px;
      margin-bottom: 2.5rem;
      font-weight: 300;
      animation: fadeUp 0.8s 0.5s ease forwards;
    }

    .hero-btns {
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp 0.8s 0.3s ease forwards;
    }

    .btn-primary {
      background: var(--gold-light); color: var(--navy);
      padding: 0.85rem 2rem; border-radius: 4px;
      font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px;
      text-decoration: none; transition: all 0.2s;
      border: 2px solid var(--gold-light);
    }
    .btn-primary:hover { background: transparent; color: var(--gold-light)}

    .btn-outline {
      background: transparent; color: var(--white);
      padding: 0.85rem 2rem; border-radius: 4px;
      font-weight: 600; font-size: 0.95rem;
      text-decoration: none; transition: all 0.2s;
      border: 2px solid rgba(255,255,255,0.3);
    }
    .btn-outline:hover { border-color: var(--white); }

    .hero-stats {
      display: flex; gap: 3rem; margin-top: 4rem;
    }

    .stat { border-left: 2px solid var(--gold); padding-left: 1rem; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem; color: var(--white); line-height: 1;
    }
    .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }
    
     .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(197,162,83,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(197,162,83,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
  }

    /* ── SECTION BASE ── */
    section { padding: 6rem 5%; }

    .section-tag {
      display: inline-block;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      color: var(--navy); line-height: 1.05;
      margin-bottom: 1rem;
    }

    .section-desc {
      font-size: 1rem; color: var(--text-light);
      max-width: 520px; line-height: 1.7;
    }

    .section-header { margin-bottom: 4rem; }

    /* ── SERVICES ── */
    #services { background: var(--white); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2px;
      background: var(--gray-soft);
      border: 2px solid var(--gray-soft);
      border-radius: 12px;
      overflow: hidden;
    }

    .service-card {
      background: var(--white);
      padding: 2.5rem;
      transition: background 0.25s;
      position: relative; overflow: hidden;
    }
    
    .service-card:nth-child(1).active {
      animation-delay: 0.2s;
    }
    
    .service-card:nth-child(2).active {
      animation-delay: 0.4s;
    }
    
    .service-card:nth-child(3).active {
      animation-delay: 0.6s;
    }
    
    .service-card:nth-child(4).active {
      animation-delay: 0.8s;
    }

    .service-card::before {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }

    .service-card:hover { background: var(--cream); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 56px; height: 56px;
      background: rgba(181,150,74,0.1);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem;
      transition: background 0.25s;
    }
    .service-card:hover .service-icon { background: rgba(181,150,74,0.2); }

    .service-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

    .service-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem; color: var(--navy);
      letter-spacing: 1px; margin-bottom: 0.75rem;
    }

    .service-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

    /* ── ABOUT ── */
#about { 
  background: var(--cream); 
  
}

.about-layout {
  display: grid; 
  /* Default to 1 column for mobile */
  grid-template-columns: 1fr; 
  gap: 3rem; 
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  order: 2; /* Moves the visual below the text on mobile for better flow */
}

.about-card-main {
  background: var(--navy); 
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 2rem; /* Reduced padding for mobile */
  color: var(--white);
  position: relative; 
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(181,150,74,0.08);
}

.about-card-main h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; /* Slightly smaller for mobile */
  letter-spacing: 1px;
  margin-bottom: 1rem; 
  line-height: 1.1;
}
.about-card-main h3 span { color: var(--gold-light); }
.about-card-main p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

.about-card-accent {
  background: var(--gold-light);
  border-radius: 12px; 
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  margin-top: -1rem; /* Overlap effect for visual interest */
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex; 
  align-items: center; 
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.about-card-accent .acc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; 
  color: var(--navy); 
  line-height: 1;
}
.about-card-accent .acc-label { font-size: 0.8rem; font-weight: 700; color: var(--navy); }

.about-text { order: 1; } /* Text appears first on mobile */
.about-text .section-desc { max-width: 100%; margin-bottom: 1.5rem; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.feature-list li {
  display: flex; 
  align-items: flex-start; 
  gap: 0.75rem;
  font-size: 0.9rem; 
  color: var(--text-mid);
}
.feature-list li::before {
  content: '✦'; 
  color: var(--gold); 
  font-size: 0.7rem;
  margin-top: 4px; 
  flex-shrink: 0;
}

/* ── Tablet & Desktop Breakpoint ── */
@media (min-width: 768px) {
  
  .about-layout {
    grid-template-columns: 1fr 1fr; 
    gap: 5rem;
  }
  
  .about-visual { order: 1; }
  .about-text { order: 2; }
  
  .about-card-main { padding: 3rem; }
  .about-card-main h3 { font-size: 2.5rem; }
  
  .about-card-accent {
    margin-top: 1rem;
    margin-left: 0;
    margin-right: 0;
    padding: 1.5rem 2rem;
  }
  
  .about-card-accent .acc-num { font-size: 3rem; }
}


   /* ── GALLERY ── */
#gallery { 
  background: var(--white); 
}

.gallery-filter {
  display: flex; 
  gap: 0.5rem; 
  flex-wrap: wrap; 
  margin-bottom: 2rem;
  justify-content: flex-start;
}

.filter-btn {
  padding: 0.5rem 1rem; 
  border-radius: 50px;
  border: 1.5px solid var(--gray-soft);
  background: transparent; 
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; 
  font-weight: 600; 
  color: var(--text-light);
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--navy); 
  border-color: var(--navy); 
  color: var(--white);
}

.gallery-grid {
  display: grid;
  /* Default mobile: 1 column */
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative; 
  border-radius: 10px; 
  overflow: hidden;
  aspect-ratio: 4/3; 
  background: var(--gray-soft);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.gallery-item:hover{
  border-color: rgba(181,150,74,0.4);
  box-shadow: 0 10px 30px rgba(181,150,74,0.25);
}

/* Reset the span for mobile so it doesn't break the layout */
.gallery-item:nth-child(1) { 
  grid-column: span 1; 
  aspect-ratio: 4/3; 
}

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.gallery-placeholder svg { width: 32px; height: 32px; stroke: var(--text-light); fill: none; stroke-width: 1.5; }

.gp-cctv { background: linear-gradient(135deg, #e8e2d9 0%, #d5cfc5 100%); }
.gp-network { background: linear-gradient(135deg, #e0ddd8 0%, #ccc9c2 100%); }
.gp-auto { background: linear-gradient(135deg, #dedad4 0%, #c8c3bb 100%); }

.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.9), transparent);
  padding: 2.5rem 1rem 1rem;
  color: var(--white); 
  font-weight: 600; 
  font-size: 0.8rem;
  /* Visible on mobile by default for better UX, or keep your hover effect */
  transform: translateY(0); 
}

.gallery-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

/* ── Tablet View ── */
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) { 
    grid-column: span 2; 
    aspect-ratio: 16/7; 
  }
  .filter-btn { font-size: 0.85rem; padding: 0.5rem 1.25rem; }
}

/* ── Desktop View ── */
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-item:nth-child(1) { 
    grid-column: span 2; 
    aspect-ratio: 16/9; 
  }

  /* Bring back hover effect for desktop only */
  .gallery-label { transform: translateY(100%); transition: transform 0.3s; }
  .gallery-item:hover .gallery-label { transform: translateY(0); }
  .gallery-item:hover .gallery-placeholder { filter: brightness(0.8); }
  
  .gallery-placeholder svg { width: 36px; height: 36px; }
}

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--navy); }
    #testimonials .section-title { color: var(--white); }
    #testimonials .section-tag { color: var(--gold); }
    #testimonials .section-desc { color: rgba(255,255,255,0.5); }

    .testimonials-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(181,150,74,0.15);
      border-radius: 12px; padding: 2rem;
      transition: background 0.2s, border-color 0.2s;
    }
    .testimonial-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(181,150,74,0.3);
    }

    .stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }

    .testimonial-text {
      font-size: 0.95rem; color: rgba(255,255,255,0.75);
      line-height: 1.75; margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

    .author-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(181,150,74,0.2);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--gold);
      flex-shrink: 0;
    }

    .author-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
    .author-loc { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

   /* ── CONTACT ── */
#contact { 
  background: var(--cream); 
}

.contact-layout {
  display: grid; 
  /* Default: Stacked for mobile */
  grid-template-columns: 1fr; 
  gap: 3rem; 
  align-items: start;
}

.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; /* Adjusted for better mobile scaling */
  color: var(--navy); 
  margin-bottom: 1rem; 
  letter-spacing: 1px;
}

.contact-info p {
  font-size: 0.95rem; 
  color: var(--text-light); 
  line-height: 1.7; 
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: 10px; 
  padding: 1.25rem;
  display: flex; 
  align-items: center; 
  gap: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--gray-soft);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(181,150,74,0.4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }

.contact-detail-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.contact-detail-val { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-top: 2px; line-height: 1.4; }
.contact-detail-val a { color: inherit; text-decoration: none; }

/* FORM RESPONSIVENESS */
.contact-form {
  background: var(--white);
  border-radius: 14px; 
  padding: 1.5rem; /* Reduced padding for mobile screens */
  border: 1px solid var(--gray-soft);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; color: var(--navy);
  letter-spacing: 1px; margin-bottom: 1.5rem;
}

/* Stack the form row on mobile */
.form-row { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 1rem; 
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--text-mid); margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-soft);
  border-radius: 8px; background: var(--cream);
  font-family: 'Outfit', sans-serif; font-size: 16px; /* 16px prevents iOS auto-zoom on focus */
  color: var(--navy);
  outline: none;
  box-sizing: border-box; /* Ensures padding doesn't break width */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,150,74,0.12);
}

.form-submit {
  width: 100%; padding: 1rem;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 8px; cursor: pointer;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
/* ── FORM SUBMIT ICON FIX ── */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem; /* Gap between text and icon */
}

.form-submit svg {
  /* Strictly cap the size of the paper plane icon */
  width: 18px; 
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor; /* Matches the text color (white/navy) */
  fill: none;
  stroke-width: 2.5; /* Makes it look sharp */
}

/* ── FORM SUCCESS ICON FIX ── */
.form-success {
  display: none; /* Controlled by JS */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.form-success svg {
  /* The big checkmark circle should be visible but not huge */
  width: 60px; 
  height: 60px;
  margin-bottom: 1.5rem;
  stroke: #22c55e; /* Success Green */
  fill: none;
  stroke-width: 1.5;
}

/* Ensure the success text matches the branding */
.form-success h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

/* ── Tablet & Desktop Breakpoint ── */
@media (min-width: 992px) {
  
  .contact-layout {
    grid-template-columns: 1fr 1.4fr; 
    gap: 5rem;
  }
  
  .contact-form { padding: 3rem; }
  
  /* Return to two-column inputs for desktop */
  .form-row { grid-template-columns: 1fr 1fr; }
  
  .contact-info h2 { font-size: 3rem; }
}

/* Success Message Scaling */
.form-success h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy); 
  padding: 6rem 2rem; 
  border-top: 1px solid rgba(181,150,74,0.15);
}

.footer-top {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  flex-wrap: wrap; 
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; 
  color: var(--white); 
  letter-spacing: 2px;
}

.footer-brand span { 
  display: block; 
  font-size: 0.55rem; 
  letter-spacing: 3px; 
  color: var(--gold-light); 
  font-family: 'Outfit', sans-serif; 
  font-weight: 600; 
  margin-top: 2px; 
}

.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { 
  color: rgba(255,255,255,0.5); 
  text-decoration: none; 
  font-size: 0.85rem; 
  transition: color 0.2s; 
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  flex-wrap: wrap; 
  gap: 1.5rem;
}

.footer-copy, .footer-tagline, .footer-dev { 
  font-size: 0.8rem; 
  color: rgba(255,255,255,0.35); 
}

/* Developer Link Styling */
.footer-dev a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-dev a:hover {
  color: var(--gold-light);
}

.footer-tagline span { color: var(--gold-light); }

/* Responsive adjustments for the bottom bar */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start; /* Keeps alignment match with previous sections */
    gap: 0.75rem;
  }
  
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}




/* --- ANIMATION --- */
  @keyframes fadeUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}


.reveal {
  opacity: 0;
}

/* Different animations */
.reveal-up.active {
  animation: fadeUp 0.8s ease forwards;
}
.reveal-left.active {
  animation: fadeLeft 0.8s ease forwards;
}
.reveal-right.active {
  animation: fadeRight 0.8s ease forwards;
}

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero{margin-top: 70px;}
      .nav-links { display: none; }
      .hero-grid-bg {
      background-image:
        linear-gradient(rgba(181,150,74,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181,150,74,0.1) 1px, transparent 1px);
    }
