html {
  scroll-behavior: smooth;
}

body {
  background: #0f0f0f;
  color: #fff;
}
*{
  padding: 0;
  margin: 0;
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  
}
body {
  padding-top: 70px;   /* match your navbar height */
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
 background: rgba(255, 212, 59, 0.7);
  backdrop-filter: blur(8px); /* transparent yellow */
 
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* NAVBAR LOGO */
.navbar-logo img {
  height: 55px;
  width: auto;
  display: block;
}

.navbar-logo a {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 55px;   /* adjust size */
  width: auto;
  display: block;
}

.navbar-logo a {
  display: flex;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
/* BUY NOW BUTTON - ORANGE VERSION */
.buy-btn {
  background: linear-gradient(135deg, #ff6a00, #ff9e00);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s ease;
}

.buy-btn:hover {
  background: #ff4500;
  color: #fff !important;
  transform: translateY(-2px);
}
/* ================= DROPDOWN ================= */

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 220px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #222;
}

.dropdown-content a:hover {
  background: #ffd43b;
  color: #000;
}

/* Show on hover (Desktop) */
.dropdown:hover .dropdown-content {
  display: block;
}
/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #000;
  margin: 4px 0;
}

@media (max-width: 768px) {

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
  }

 .nav-links {
  position: fixed;
  top: 70px;   /* same as navbar height */
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  display: none;
  z-index: 2000;
}

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #fff !important;
    font-size: 16px;
    padding: 10px 0;
    display: block;
  }
  .buy-btn {
  width: 80%;
  text-align: center;
  margin-top: 10px;
}
  /* FIX DROPDOWN FOR MOBILE */
  .dropdown-content {
    position: static;
    width: 100%;
    background: #000;
    box-shadow: none;
    display: none;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
 }

/* RESPONSIVE */
@media (max-width: 900px) {
  .dance-classes {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BANNER RESPONSIVE
========================= */
@media (max-width: 768px) {
  .banner {
    height: 55vh;
   
  }
}

@media (max-width: 480px) {
  .banner {
    height: 45vh;
   
  }
}

/* Video Container */
.video-container {
  position: relative;
  height: 100vh; /* Full screen */
  width: 100%;
  overflow: hidden;
}

/* =========================
   BANNER SECTION (FIXED)
========================= */
.banner {
  width: 100%;
  height: 450px;   /* Desktop height */
  overflow: hidden;
  position: relative;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Responsive Banner */
@media (max-width: 992px) {
  .banner {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 200px;
  }
}

/* Video Styling */
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Makes video cover entire container */
}

/* Content Over Video */
.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #ffcc00;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

    /* Sidebar */
    .sidebar{
      width:70px;
      background:#2b2a27;
      color:#fff;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:space-between;
      padding:20px 0;
    }

    .logo{
      font-family:'Playfair Display', serif;
      font-size:28px;
    }

    .menu{
      font-size:26px;
      cursor:pointer;
    }

    .socials{
      font-size:12px;
      transform:rotate(-90deg);
      letter-spacing:2px;
      opacity:0.7;
    }




    .content{
      position:relative;
      height:100%;
    }

    /* Top Navigation */
    .top-nav{
      position:absolute;
      top:0;
      right:0;
      text-align:right;
      font-size:12px;
      letter-spacing:1px;
    }

    .top-nav a{
      display:block;
      color:#222;
      text-decoration:none;
      margin-bottom:10px;
    }

    /* Hero */
    .hero{
      display:flex;
      align-items:center;
      height:100%;
    }

    .hero-text{
      max-width:420px;
      margin-left:420px;
    }

    .hero-text h1{
      font-family:'Playfair Display', serif;
      font-size:48px;
      font-weight:400;
      line-height:1.1;
      color: #fff;
    }

    /* Cards */
    .cards{
      position:absolute;
      bottom:40px;
      right:0;
      display:grid;
      grid-template-columns:repeat(2, 220px);
      gap:20px;
    }

    .card{
      background:#2b2a27;
      color:#fff;
      padding:20px;
      height:120px;
      display:flex;
      align-items:flex-end;
      font-size:14px;
      letter-spacing:0.5px;
      cursor:pointer;
      transition:transform 0.3s ease, background 0.3s ease;
    }

    .card:hover{
      transform:translateY(-5px);
      background:#1e1d1a;
    }
    /* PROFESSIONAL COURSE SECTION */
.professional-course-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 6%;
  background: #1b1b1b;
  position: relative;
}

/* LEFT MEDIA */
.course-media {
  flex: 1;
}

.media-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* PLAY BUTTON */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 200, 0, 0.9);
  color: #000;
  font-size: 28px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* RIGHT CONTENT CARD */
.course-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.course-content h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.course-content p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* BUTTON */
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}
/* SECTION */
.dance-offer-section {
  padding: 80px 6%;
  background: #141414;
  color: #fff;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 500;
}

.section-header p {
  font-size: 32px;
  margin-top: 10px;
  font-weight: 300;
}

/* GRID */
.dance-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.dance-card {
  background: #1f1f1f;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.dance-card:hover {
  transform: translateY(-8px);
}

.dance-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 25px;
}

/* HIGHLIGHT CARD */
.dance-card.highlight {
  background: #ffd43b;
  color: #000;
}

.dance-card.highlight p {
  color: #000;
}

/* BUTTONS */
.btn-outline,
.btn-dark {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

.btn-dark {
  background: #000;
  color: #ffd43b;
}

.btn-dark:hover {
  background: #222;
}
/* TESTIMONIAL SECTION */
.testimonial-section {
  padding: 90px 6%;
  background: #141414;
  color: #fff;
  text-align: center;
}

.testimonial-header h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.testimonial-header p {
  color: #aaa;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* SLIDER */
.testimonial-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
  min-width: 320px;
  background: #1f1f1f;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
}

.testimonial-card .quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #f5c842;
  color: #f5c842;
  font-size: 28px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  color: #f5c842;
  font-weight: 500;
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 40px;
  color: #f5c842;
  cursor: pointer;
  z-index: 2;
}

.nav-btn.left { left: 0; }
.nav-btn.right { right: 0; }

.footer {
  background: #1b1b1b;
  color: #ccc;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  align-items: start;
}

.footer h3 {
  color: #fff;
  margin-bottom: 20px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.footer ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #f7b500;
}

.footer i {
  color: #f7b500;
  margin-right: 8px;
}

.social-vertical {
  margin-top: 20px;
}



.social-vertical a:hover {
  background: #ffd43b;
  color: #000;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom span {
  color: #f7b500;
}
.faq-section {
  background: #000;
  padding: 80px 20px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.faq-container {
  max-width: 850px;
  margin: auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
}

.faq-sub {
  text-align: center;
  color: #ccc;
  margin-bottom: 50px;
}

.faq-sub a {
  color: #fff;
  text-decoration: underline;
}

.faq-category {
  color: #bbb;
  margin-bottom: 15px;
}

.faq-item {
  margin-bottom: 14px;
}

.faq-question {
  width: 100%;
  background: #2c333a;
  color: #fff;
  padding: 18px 22px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #1e2328;
  border-radius: 0 0 6px 6px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 18px 22px;
  color: #ccc;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(90deg);
}
.blog-section {
  background: #1e2328;
  padding: 90px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #fff;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.blog-header h2 {
  font-size: 40px;
  font-weight: 600;
}

.blog-btn {
  background: #0d3b66;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-btn:hover {
  background: #145ea8;
}
.social-vertical {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-vertical a {
  width: 60px;      /* increased size */
  height: 60px;     /* increased size */
  background: #d12667;
  color: #7cdbde;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;  /* increased icon size */
  transition: all 0.3s ease;
}

.social-vertical a:hover {
  background: #000;
  color: #0a0a0a;
  transform: translateY(-3px);
}


/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

/* Featured Blog */
.blog-featured {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
}

.blog-featured img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.blog-featured .blog-content {
  padding: 25px;
}

.blog-featured h3 {
  font-size: 24px;
  margin-top: 10px;
  line-height: 1.4;
}

/* Blog List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-item {
  display: flex;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
}

.blog-item img {
  width: 140px;
  object-fit: cover;
}

.blog-info {
  padding: 18px;
}

.date {
  font-size: 13px;
  color: #b5b5b5;
}

.blog-info h4 {
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.4;
}
.testimonial-card {
  position: relative;
  padding: 50px 25px 30px;
  text-align: center;
}

.quote-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;

  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);

  border-radius: 50%;
  border: 3px solid #f5c400; /* yellow border */
  background: #000;
  padding: 10px;
}
/* Map Section Styling */
.map-section {
  padding: 50px 20px;
  background: #111; /* dark background for contrast */
  display: flex;
  justify-content: center;
}

.map-container {
  width: 100%;
  max-width: 1000px; /* limits map width on large screens */
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Make iframe fill container */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .map-container {
    height: 350px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .map-section {
    padding: 30px 10px;
  }
  .map-container {
    height: 250px;
  }
}



/* Responsive */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured img {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .blog-item {
    flex-direction: column;
  }

  .blog-item img {
    width: 100%;
    height: 180px;
  }
}


@media (max-width: 600px) {
  .faq-container h2 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-slider {
    gap: 20px;
  }

  .testimonial-card {
    min-width: 100%;
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header p {
    font-size: 24px;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .professional-course-section {
    flex-direction: column;
  }

  .course-content {
    padding: 30px;
  }

  .course-content h2 {
    font-size: 36px;
  }
}


    /* Responsive */
    @media(max-width:1024px){
      .hero-text{
        margin-left:0;
      }
      .cards{
        position:static;
        margin-top:40px;
      }
      .hero{
        flex-direction:column;
        align-items:flex-start;
        padding-top:80px;
      }
    }

    @media(max-width:600px){
      .sidebar{
        display:none;
      }
      .main{
        padding:30px 20px;
      }
      .hero-text h1{
        font-size:36px;
      }
      .cards{
        grid-template-columns:1fr;
      }
    }

/* INNER PAGES */
.inner-hero {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.inner-overlay {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  text-align: center;
}

.inner-overlay h1 {
  font-size: 48px;
}

.inner-content {
  padding: 100px 6%;
  background: #0f0f0f;
  color: #fff;
}

.inner-content h2 {
  font-size: 38px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
  line-height: 1.3;
  color: #ffd43b;
}

.inner-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #ccc;
  max-width: 900px;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 45px;
  text-align: center;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #2a2a2a;
  transition: all 0.4s ease;
}

.feature-box:hover {
  background: #ffd43b;
  color: #000;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 212, 59, 0.3);
}
/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}
.gallery-grid video {
  width: 100%;
  height: 250px;   /* same height as images */
  object-fit: cover;
  border-radius: 10px;
}
/* SOCIAL ICONS AT BOTTOM */
.footer-social-bottom {
  text-align: center;
  padding: 20px 0 40px;
  background: #1b1b1b;
}

.footer-social-bottom a {
  width: 50px;
  height: 50px;
  background: #d12667;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-social-bottom a:hover {
  background: #ffd43b;
  color: #000;
  transform: translateY(-5px);
}
/* SOCIAL ICONS UNDER GET IN TOUCH */
.footer-social {
  margin-top: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: #d12667;   /* same pink */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ffd43b;
  color: #000;
  transform: translateY(-5px);
}
.footer-social {
  margin-top: 25px;
}

.footer-social a {
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  margin-right: 5px;
  color: white;
  transition: 0.4s ease;
}

/* Facebook */
.footer-social .facebook {
  background: #1877F2;
}

/* Instagram Gradient */
.footer-social .instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, #d6249f 60%, 
    #285AEB 90%);
}

/* Twitter */
.footer-social .twitter {
  background: #1DA1F2;
}

/* YouTube */
.footer-social .youtube {
  background: #FF0000;
}

/* Hover Effect */
.footer-social a:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
/* ============================= */
/* PREMIUM LUXURY BLACK GOLD FOOTER */
/* ============================= */

.footer {
  background: #0c0c0c;
  color: #c6a85b;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Gold top border */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #d4af37, #f5d77a, #d4af37);
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* Headings */
.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 25px;
  color: #f5d77a;
  letter-spacing: 1px;
  position: relative;
}

/* Gold underline effect */
.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #d4af37;
}

/* Paragraph */
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #b5b5b5;
}

/* List */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

/* Premium Hover Link Animation */
.footer-col ul li a {
  text-decoration: none;
  color: #b5b5b5;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-col ul li a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: #f5d77a;
  padding-left: 10px;
}

.footer-col ul li a:hover::before {
  width: 10px;
}

/* Social Icons */
.footer-social {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 55px;
  height: 55px;
  border: 1px solid #d4af37;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
  font-size: 24px;
}

/* Hover glow effect */
.footer-social a:hover {
  background: linear-gradient(135deg, #d4af37, #f5d77a);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  padding: 25px 15px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 13px;
  color: #999;
}

.footer-bottom span {
  color: #f5d77a;
  font-weight: 500;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }
}