/* -------------------------------------------------
   GLOBAL RESET
--------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    background: none;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* -------------------------------------------------
   CONTAINERS
--------------------------------------------------*/
.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* -------------------------------------------------
   GLASS EFFECT
--------------------------------------------------*/
.glass {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* -------------------------------------------------
   HEADER
--------------------------------------------------*/
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 0;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand img.logo {
    height: 55px;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    font-weight: 500;
    opacity: 0.85;
    transition: 0.3s;
}

.main-nav a:hover {
    opacity: 1;
    color: #3ea6ff;
}

.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
}

/* CTA BUTTON */
.btn-primary {
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #b58500, #ffd700, #fff1b8, #b8860b);
    color: #000;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    transition: 0.3s;
    text-shadow:
        0 0 2px rgba(255,255,255,0.5),
        0 0 4px rgba(255,255,255,0.7);
}



.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.5);
}

/* -------------------------------------------------
   HERO / VIDEO SECTION
--------------------------------------------------*/
.about {
    background: #111;      /* whatever your black strip color is */
    padding: 24px 0;
}

.about-text {
    background: rgba(0,0,0,0.5);
    padding: 20px 25px;
    border-radius: 10px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
}

.about-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.bullets {
    margin-bottom: 10px;
    line-height: 1.8;
    padding-left: 20px;
}
.bullets li {
    margin-left: 0;
}


/* -------------------------------------------------
   TESTIMONIALS
--------------------------------------------------*/
.testimonials {
    margin: 120px auto 80px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.testi-slider {
    display: grid;
    gap: 25px;
}

.testi {
    padding: 24px 28px;
    font-size: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border-left: 4px solid #0d59ff;
}

/* -------------------------------------------------
   CONTACT SECTION
--------------------------------------------------*/
.contact {
    margin: 100px auto;
    padding: 40px;
    border-radius: 16px;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.contact-form .row {
    display: flex;
    gap: 20px;
}

/* -------------------------------------------------
   FOOTER
--------------------------------------------------*/
.site-footer {
    padding: 50px 0 20px;
    margin-top: 80px;
    background: rgba(255,255,255,0.05);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.col h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.col p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.copyright {
    text-align: center;
    opacity: 0.5;
    font-size: 14px;
    margin-top: 20px;
}

#showcaseVideo {
    transition: opacity 0.8s ease;
    opacity: 1;
}


.video-wrap video.active {
    opacity: 1;
}

.video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    align-self: start;
}

.video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.2s linear;
}

.video-wrap video.active {
    opacity: 1;
}


/* -------------------------------------------------
   RESPONSIVE
--------------------------------------------------*/
@media (max-width: 900px) {

    .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form .row {
        flex-direction: column;
    }
}

/* -------------------------------------------------
   LATEST COLLECTION
--------------------------------------------------*/
/* ------------------------------ */
/* LATEST COLLECTION SLIDER       */
/* ------------------------------ */

.latest-collection {
    margin: 120px auto;
}

.lc-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.lc-slider {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 16px;
}

.lc-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s ease-in-out;
}

.lc-slide.active {
    left: 0;
}

.lc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* instead of contain */

}

.lc-details {
    position: relative;
    min-height: 200px;
}

.lc-desc {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lc-desc.active {
    opacity: 1;
}

.lc-desc h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.lc-desc p {
    opacity: 0.85;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 900px) {
    .lc-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .lc-slider {
        height: 300px;
    }
}


/* Email/Contact Success Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    padding: 30px 40px;
    text-align: center;
    border-radius: 12px;
    max-width: 350px;
}

.popup h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.popup p {
    font-size: 16px;
    margin-bottom: 20px;
}
/* footer */
/* Social Icons Wrapper */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}

/* Slide-in animation */
.social-icons.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Icon styling */
.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  color: #d4af37; /* Gold */
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: 0.35s ease;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Hover glow + shine */
.social-link:hover {
  color: #fff4cc;
  border-color: #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8),
              0 0 25px rgba(255, 215, 0, 0.5);
  transform: translateY(-4px) scale(1.08);
  background: linear-gradient(135deg, #b8860b, #ffd700, #b8860b);
}

/*For title on pages*/
/* PAGE TITLE — premium, centered, glass, animated, responsive */
/* PAGE TITLE — robust, animated on .in-view, glass + responsive + validators-friendly */
.page-title {
    /* validator-friendly fallback first */
    font-size: 1.9rem;                     /* fallback for older validators/browsers */
    font-size: clamp(1.8rem, 4vw, 3rem);   /* modern responsive size */

    text-align: center;
    font-weight: 700;
    margin: 40px auto 30px;
    padding: 15px 35px;
    width: fit-content;
    color: #fff;
    font-family: "Playfair Display", serif;
    letter-spacing: 1px;

    /* glass background + fallback */
    background: rgba(255,255,255,0.12);               /* fallback if backdrop-filter not supported */
    -webkit-backdrop-filter: blur(12px);              /* safari prefix */
    backdrop-filter: blur(12px);                      /* modern browsers */
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.18);

    /* initial state for animated reveal (no animation until .in-view) */
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
}

/* colored underline */
.page-title::after {
    content: "";
    display: block;
    margin: 10px auto 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e5c07b, transparent);
    border-radius: 10px;
    opacity: 0.95;
}

/* animation only when .in-view is present (works with your IntersectionObserver) */
.page-title.in-view {
    animation: pageTitleFadeUp 0.8s ease-out forwards;
}

/* keyframes */
@keyframes pageTitleFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .page-title {
        padding: 12px 22px;
        margin: 30px auto 25px;
        border-radius: 12px;
    }
    .page-title::after {
        width: 70%;
        height: 2px;
    }
}

/* If header is fixed at top */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Push main content below header */
main {
    padding-top: calc( var(--header-height, 100px) ); /* fallback 100px */
}

/* Optional: define header height variable */
:root {
    --header-height: 60px; /* set your actual header height here */
}

@media (max-width: 600px) {
    :root {
        --header-height: 70px; /* taller header on mobile */
    }
}

/* Gold button style */
.gold-btn {
    background-color: #d4af37; /* gold */
    color: #000;
    border: 1px solid #d4af37;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gold-btn:hover {
    background-color: #fff3d1;
    color: #000;
    box-shadow: 0 0 10px 2px #d4af37;
    transform: translateY(-2px);
}

/* Inventory card glow */
.gold-glow {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px 2px rgba(212, 175, 55, 0.2);
}

.gold-glow:hover {
    box-shadow: 0 0 20px 4px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}


/* -------------------------------------------------
   MOBILE NAV MENU (NEW FIX)
--------------------------------------------------*/
/* ----------------------------
   MOBILE NAV STYLING & ANIMATION
---------------------------- */
@media (max-width: 900px) {

    .main-nav {
        position: fixed;
        top: var(--header-height, 100px);
        right: -100%; /* hide offscreen */
        width: 70%;
        height: calc(100vh - var(--header-height, 100px));
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(14px);
        padding: 60px 30px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.45s ease;
        opacity: 0;
        z-index: 9999;
        overflow-y: auto;
    }

    .main-nav.open {
        right: 0;
        opacity: 1;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .main-nav ul li {
        opacity: 0;
        transform: translateX(20px);
        animation: fadeSlide 0.45s forwards;
    }

    .main-nav.open ul li {
        /* Staggered reveal based on --i variable */
        animation-delay: calc(var(--i) * 0.08s);
    }

    .main-nav a {
        font-size: 1.3rem;
        font-weight: 600;
        color: #fff;
        padding: 10px 0;
        transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
    }

    .main-nav a:hover {
        color: #ffd700;
        transform: translateX(8px);
        text-shadow: 0 0 8px #ffd700;
    }

    .nav-toggle {
        display: block;
        font-size: 2.4rem;
        background: none;
        border: none;
        color: #ffd700;
        cursor: pointer;
        z-index: 10000;
        transition: transform 0.4s ease, color 0.3s;
    }

    .nav-toggle:hover {
        transform: rotate(90deg);
        color: #fff4b0;
    }

    .nav-toggle.active {
        transform: rotate(90deg) scale(1.1);
        color: #fff4b0;
    }

    @keyframes fadeSlide {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Optional: Scrollbar styling */
    .main-nav::-webkit-scrollbar {
        width: 6px;
    }
    .main-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 215, 0, 0.4);
        border-radius: 3px;
    }
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-inner .col {
    flex: 1;
    min-width: 180px;
}

/* Quick Links Horizontal */
.quick-links {
    display: flex;
    gap: 15px; /* space between links */
    margin-top: 5px;
}

.footer-link {
    color: #fff; /* initially white */
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer-link:hover {
    color: #FFD700; /* golden on hover */
    text-shadow: 0 0 8px #FFD700, 0 0 15px #FFD700; /* glowing effect */
}

/* Optional: social icons */
.social-icons .social-link {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons .social-link:hover {
    color: #FFD700;
    text-shadow: 0 0 8px #FFD700, 0 0 15px #FFD700;
}
/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center; /* centers all columns */
        text-align: center;  /* makes text and links centered */
        gap: 20px;
    }

    .footer-inner .col {
        min-width: unset;
        width: 100%;
    }

    .social-col .social-icons {
        justify-content: center; /* centers social icons horizontally */
        display: flex;
        gap: 15px;
    }

    .quick-links {
        justify-content: center; /* centers quick links */
        flex-wrap: wrap;
    }
}

/* Brand Logos*/
.brands-section {
    padding: 60px 0;
    background: #000; /* dark background */
    margin-top: 60px; /* separation from video section */
}

.brands-section .section-title {
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Slider */
.brand-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.brand-track {
    display: flex;
    gap: 120px;
    width: max-content;
    animation: scrollBrands 25s linear infinite;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Logo tile */
.brand-item {
    width: 150px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 0 0 10px rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(255,255,255,0.18);
}

/* Logos bigger */
.brand-item img {
    width: 90%;
    height: auto;
    transition: 0.3s ease;
}

.brand-item img:hover {
    transform: scale(1.12);
}

/* Whatsapp button styling */
/* WhatsApp Floating Widget (Ultimate Version) */
.zap-widget {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row; /* text left, icon right */
    animation: zapSlideIn 0.9s ease-out forwards;
}

/* Chat bubble */
.zap-bubble {
    background: #000;
    color: #d4af37; /* gold */
    padding: 9px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(14px);
    transition: all 0.35s ease;
    white-space: nowrap;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.zap-widget:hover .zap-bubble {
    opacity: 1;
    transform: translateX(0);
}

/* WhatsApp Circle Button */
.zap-btn {
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.25s ease;
    animation: zapPulse 2.2s infinite ease-in-out;
    border: 2px solid #d4af37; /* gold ring */
}

.zap-btn img {
    width: 30px;
    height: 30px;
}

/* Hover scale */
.zap-btn:hover {
    transform: scale(1.15);
}

/* Gold Glow Aura */
.zap-btn::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.4);
    animation: glowPulse 2.4s infinite ease-in-out;
}

/* Animations */
@keyframes zapPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.18);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Slide-in animation */
@keyframes zapSlideIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .zap-widget {
        bottom: 14px;
        right: 14px;
        gap: 6px;
    }

    .zap-btn {
        width: 48px;
        height: 48px;
    }

    .zap-btn img {
        width: 24px;
        height: 24px;
    }

    .zap-bubble {
        font-size: 12px;
        padding: 6px 10px;
    }
}
/* Visually hidden but SEO & screen-reader friendly */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* SEO COLLAPSIBLE CONTENT */
.seo-content-wrapper {
    max-width: 1200px;
    margin: 60px auto 20px;
    padding: 0 20px;
}

.seo-toggle {
    width: 100%;
    background: #111;
    color: gold;
    border: 1px solid #333;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seo-toggle:hover {
    background: #1a1a1a;
}

.seo-arrow {
    transition: transform 0.3s ease;
}

.seo-content {
    display: none;
    margin-top: 15px;
    background: #0c0c0c;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 20px;
    color: #ccc;
    line-height: 1.7;
}

.seo-content h2,
.seo-content h3 {
    color: #fff;
    margin-bottom: 10px;
}

.seo-content ul {
    padding-left: 20px;
}

.seo-content ul li {
    margin-bottom: 6px;
}
/* HERO SEO TITLE */
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 14px;
    margin-top: 0;
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.15rem;
    opacity: 0.85;
    line-height: 1.6;
}
/* SEO INTRO BLOCK */
.seo-intro {
    margin: 80px auto;
    padding: 30px 35px;
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
}

.seo-intro h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.seo-intro p {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.9;
    margin-bottom: 14px;
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
/* Floating Button */
/* =========================================
   STICKY LEFT CONTACT BUTTON
========================================= */

.contact-tab {
    position: fixed;
    left: 0;
    top: 50%;

    transform: translateY(-35%) rotate(-90deg);
    transform-origin: left top;

    padding: 12px 32px;
    border-radius: 0 0 18px 18px;

    cursor: pointer;
    z-index: 1001;

    /* Match Send Enquiry button look */
    background: linear-gradient(135deg, #b58500, #ffd700, #fff1b8, #b8860b);
    color: #000;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: none;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.45),
        0 0 0 rgba(212, 175, 55, 0);

    transition:
        box-shadow 0.35s ease,
        transform 0.25s ease;
}

/* Gold glow hover */
.contact-tab:hover {
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.55),
        0 0 22px rgba(212, 175, 55, 0.85),
        0 0 44px rgba(212, 175, 55, 0.55);
}


/* =========================================
   CONTACT MODAL OVERLAY
========================================= */

.contact-modal {
    display: none;              /* JS controls this */
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);

    z-index: 1000;
    align-items: center;
    justify-content: center;
}


/* =========================================
   MODAL BOX (PREMIUM DARK GLASS)
========================================= */

.contact-modal-box {
    position: relative;

    width: 92%;
    max-width: 540px;
    padding: 38px 36px;

    background: linear-gradient(
        145deg,
        rgba(24, 24, 24, 0.98),
        rgba(14, 14, 14, 0.98)
    );

    color: #f5f5f5;
    border-radius: 22px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.65),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);

    animation: modalFadeIn 0.35s ease;
}


/* =========================================
   MODAL TEXT
========================================= */

.contact-modal-box h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-modal-box p {
    font-size: 15px;
    color: #cfcfcf;
    margin-bottom: 24px;
    line-height: 1.5;
}


/* =========================================
   CLOSE BUTTON (ONLY CLOSE METHOD)
========================================= */

.close-modal {
    position: absolute;
    top: 18px;
    right: 22px;

    font-size: 26px;
    cursor: pointer;
    color: #bdbdbd;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.close-modal:hover {
    color: #ffffff;
    transform: scale(1.12);
}


/* =========================================
   FORM (SCOPED – DOES NOT BREAK SITE)
========================================= */

.contact-modal .contact-form input,
.contact-modal .contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;

    padding: 14px 15px;
    margin-bottom: 14px;

    font-size: 14px;
    outline: none;

    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-modal .contact-form input::placeholder,
.contact-modal .contact-form textarea::placeholder {
    color: #a9a9a9;
}

.contact-modal .contact-form input:focus,
.contact-modal .contact-form textarea:focus {
    border-color: var(--primary-color, #d4af37);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}


/* =========================================
   FORM ROW
========================================= */

.contact-modal .contact-form .row {
    display: flex;
    gap: 12px;
}

.contact-modal .contact-form .row input {
    flex: 1;
}


/* =========================================
   SUBMIT BUTTON
   (USES YOUR EXISTING .btn.btn-primary)
========================================= */

.contact-modal .contact-form .btn-primary {
    width: 100%;
    margin-top: 8px;
    border-radius: 14px;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =========================================
   MOBILE FIXES
========================================= */

@media (max-width: 600px) {
    .contact-modal-box {
        padding: 30px 24px;
    }

    .contact-modal .contact-form .row {
        flex-direction: column;
    }
}

/* CTA button home page */
/* =====================================
   HOME PAGE CTA BUTTONS
===================================== */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
}

/* Make both buttons equal size */
.cta-buttons .gold-btn {
    min-width: 260px;
    text-align: center;
}

/* Mobile: stack vertically */
@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .gold-btn {
        width: 100%;
        max-width: 320px;
    }
}
