* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}



body {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 85px;
    z-index: 50;
    background: linear-gradient(120deg, #0a0f0f 0%, #002d2d 50%, #000 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.header-inner {
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-title {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(to right, #d4af37, #f5e6ca);
    -webkit-background-clip: text;
    color: transparent;
}

.logo-text small {
    color: #f0e6c8;
    font-size: 12px;
    letter-spacing: 2px;
}

/* DESKTOP NAV */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-desktop ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-desktop a {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 15px;
    position: relative;
}

.nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #d4af37, #f5e6ca);
    transition: 0.4s;
}

.nav-desktop a:hover::after {
    width: 100%;
}

/* CALL BUTTON */
.call-btn {
    background: linear-gradient(to right, #d4af37, #f5e6ca);
    color: #121212;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

/* MOBILE */
.mobile-icons {
    display: none;
    gap: 15px;
}

.menu-btn {
    font-size: 26px;
    background: none;
    border: none;
    color: #d4af37;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 75%;
    background: linear-gradient(to bottom, #0a0f0f, #002d2d, #000);
    transform: translateX(100%);
    transition: 0.4s;
    z-index: 60;
    border-left: 1px solid rgba(212, 175, 55, 0.4);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
}

.mobile-nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 18px;
}

.mobile-nav a:hover {
    color: #d4af37;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-icons {
        display: flex;
        align-items: center;
    }
}


/* ---------------- HERO ---------------- */
.hero {
    margin-top: 85px;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .9));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h2 {
    font-family: Playfair Display, serif;
    font-size: 50px;
    color: #fff;
}

.hero-content span {
    display: block;
    margin-top: 15px;
    background: linear-gradient(to right, #d4af37, #f5e6ca);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-content p {
    margin-top: 20px;
    color: #f0e6c8;
    font-size: 18px;
}

.hero-content .btns {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 20px 100px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
}

.primary {
    background: linear-gradient(to right, #00ff4d, #13731e);
    color: #fffdfd;
}

.outline {
    border: 1px solid #d4af37;
}

/* ---------------- RESPONSIVE ---------------- */
@media(max-width:900px) {
    .menu {
        display: none
    }

    .hamburger {
        display: block
    }

    .hero-content h2 {
        font-size: 36px
    }
}




/* ---------------- ABOUT SECTION ---------------- */
.about-section {
    position: relative;
    padding: 120px 20px;
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef') center/cover no-repeat;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, .92),
            rgba(0, 0, 0, .75));
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h4 {
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.about-text h2 {
    font-family: Playfair Display, serif;
    font-size: 42px;
    margin-bottom: 25px;
    color: #fff;
}

.about-text p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    background: linear-gradient(to right, #d4af37, #f5e6ca);
    color: #111;
}

/* IMAGE */
.about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, .5);
    box-shadow: 0 0 40px rgba(212, 175, 55, .25);
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform .8s ease;
}

.about-image:hover img {
    transform: scale(1.08);
}

/* ---------------- RESPONSIVE ---------------- */
@media(max-width:900px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-image img {
        height: 320px;
    }
}



/* ---------------- SERVICES SECTION ---------------- */
.services-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0b0f16, #141b24, #0b0f16);
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

.services-heading {
    text-align: center;
    margin-bottom: 70px;
}

.services-heading h4 {
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.services-heading h2 {
    font-family: Playfair Display, serif;
    font-size: 44px;
    margin-bottom: 15px;
    color: #fff;
}

.services-heading p {
    color: #cbd5e1;
    max-width: 650px;
    margin: auto;
    font-size: 16px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: #111927;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, .35);
    box-shadow: 0 0 25px rgba(212, 175, 55, .15);
    transition: .5s;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 45px rgba(212, 175, 55, .35);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 22px;
}

.service-content h3 {
    font-family: Playfair Display, serif;
    font-size: 20px;
    color: #f5e6ca;
    margin-bottom: 10px;
}

.service-content p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-content span {
    display: block;
    color: #d4af37;
    font-size: 13px;
    margin-bottom: 18px;
}

/* ACTIONS */
.service-actions {
    display: flex;
    gap: 12px;
}

.service-actions a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-actions a:first-child {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.service-actions a:last-child {
    background: linear-gradient(to right, #d4af37, #f5e6ca);
    color: #111;
}

/* ---------------- RESPONSIVE ---------------- */
@media(max-width:1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .services-grid {
        grid-template-columns: 1fr
    }

    .services-heading h2 {
        font-size: 32px
    }
}


/* ---------------- GALLERY SECTION ---------------- */
.gallery-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0a0f14, #141a22, #0a0f14);
}

.gallery-container {
    max-width: 1200px;
    margin: auto;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-heading h4 {
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.gallery-heading h2 {
    font-family: Playfair Display, serif;
    font-size: 44px;
    margin-bottom: 15px;
    color: #fff;
}

.gallery-heading p {
    color: #cbd5e1;
    max-width: 650px;
    margin: auto;
    font-size: 16px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, .4);
    box-shadow: 0 0 25px rgba(212, 175, 55, .15);
    transition: .6s;
}

.gallery-grid img:hover {
    transform: scale(1.06);
    box-shadow: 0 0 45px rgba(212, 175, 55, .4);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 15px;
    border: 2px solid #d4af37;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 35px;
    color: #d4af37;
    cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-heading h2 {
        font-size: 32px;
    }
}





/* ---------------- WHY CHOOSE US ---------------- */
.why-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0b0f16, #141b24, #0b0f16);
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

.why-heading {
    text-align: center;
    margin-bottom: 70px;
}

.why-heading h4 {
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.why-heading h2 {
    font-family: Playfair Display, serif;
    font-size: 44px;
    margin-bottom: 15px;
    color: #fff;
}


.why-heading p {
    color: #cbd5e1;
    max-width: 700px;
    margin: auto;
    font-size: 16px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.why-card {
    background: #111927;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, .35);
    box-shadow: 0 0 25px rgba(212, 175, 55, .15);
    transition: .5s;
}

.why-card span {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: Playfair Display, serif;
    color: #f5e6ca;
    margin-bottom: 12px;
}

.why-card p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 45px rgba(212, 175, 55, .45);
}

/* RESPONSIVE */
@media(max-width:900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .why-grid {
        grid-template-columns: 1fr
    }

    .why-heading h2 {
        font-size: 32px
    }
}




/* ---------------- TESTIMONIALS ---------------- */
.testimonials-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0a0f14, #141a22, #0a0f14);
}

.testimonials-container {
    max-width: 1100px;
    margin: auto;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 70px;
}

.testimonials-heading h4 {
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonials-heading h2 {
    font-family: Playfair Display, serif;
    font-size: 44px;
    margin-bottom: 15px;
    color: #fff;
}

.testimonials-heading p {
    color: #cbd5e1;
    max-width: 650px;
    margin: auto;
    font-size: 16px;
}

/* GRID */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.testimonial-card {
    background: #111927;
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, .35);
    box-shadow: 0 0 25px rgba(212, 175, 55, .15);
    transition: .5s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 45px rgba(212, 175, 55, .45);
}

.stars {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: #e5e7eb;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.testimonial-card h4 {
    color: #f5e6ca;
    font-weight: 600;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-heading h2 {
        font-size: 32px;
    }
}





/* ---------------- CONTACT ---------------- */
.contact-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0b0f16, #141b24, #0b0f16);
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

.contact-heading {
    text-align: center;
    margin-bottom: 70px;
}

.contact-heading h4 {
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-heading h2 {
    font-family: Playfair Display, serif;
    font-size: 44px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-heading p {
    color: #cbd5e1;
    max-width: 650px;
    margin: auto;
    font-size: 16px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}




@media only screen and (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}








/* INFO */
.contact-info {
    display: grid;
    gap: 25px;
}

.info-box {
    background: #111927;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, .35);
    box-shadow: 0 0 25px rgba(212, 175, 55, .15);
}

.info-box h3 {
    color: #f5e6ca;
    margin-bottom: 10px;
}

.info-box a,
.info-box p {
    color: #cbd5e1;
    font-size: 15px;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, .35);
}






.site-footer {
  position: relative;
  padding: 70px 25px 40px;
  color: #d1d5db;
  background: linear-gradient(135deg, #0d0f14 0%, #1a1d25 100%);
  border-top: 2px solid #d4af37;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(26,29,37,0.4),
    rgba(0,0,0,0.7)
  );
  pointer-events: none;
}

/* Layout */
.footer-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  z-index: 2;
}

/* Columns */
.footer-col h2 {
  color: #d4af37;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #cbd5e1;
}

.footer-col span {
  color: #d4af37;
  font-weight: 600;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #3ddad7;
}

/* Small text column */
.small-text p {
  color: #9ca3af;
  font-size: 13px;
}

/* About */
.about-text {
  color: #9ca3af;
  margin-bottom: 25px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
}


/* Copyright */
.copyright {
  font-size: 13px;
  color: #9ca3af;
}

.keywords {
  margin-top: 12px;
  font-size: 11px;
  color: #d4af37;
  font-style: italic;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}











