:root {
    --bg-color: #FFFAEE;
    --heading-gradient: linear-gradient(97.98deg, #1E1E1E -8.35%, #CECECE 116.68%);
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'El Messiri', sans-serif;
    --text-color: #1E1E1E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: var(--body-font);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* prevents horizontal scrolling from full-width carousels */
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item svg {
    display: flex;
}

/* Hero Section Styles */
.hero-section {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 1360px;
    /* Slightly contained just in case */
    display: block;
    height: auto;
    border-radius: 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow to give depth */
}

/* Typography Utilities */
.heading-text {
    font-family: var(--heading-font);
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Features and Form Section Styles */
.features-section {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    /* Form slightly narrower than images */
    gap: 30px;
    align-items: stretch;
}

/* Form Styles */
.form-container {
    background-image: url('images/form-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-family: var(--heading-font);
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.shop-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input,
.input-group select {
    width: 100%;
    background-color: #06060633;
    /* Ultra-sheer dark base */
    backdrop-filter: blur(12px);
    /* Frosted Glass blur */
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 18px 24px;
    font-family: var(--body-font);
    color: #FFFFFF;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Custom dropdown arrow for select */
.input-group select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 24px top 50%;
    background-size: 12px auto;
    /* Do not override the glass background-color here! */
}

/* Options color fix */
.input-group select option {
    color: #FFFFFF;
    background-color: #1a1a1a;
}

.input-group input::placeholder,
.input-group select:invalid {
    color: rgba(255, 255, 255, 0.5);
}

.input-group input:focus,
.input-group select:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: #06060666;
    /* Deepens the glass opacity slightly upon focus without breaking the blur */
}

.submit-btn {
    margin-top: 15px;
    background-color: #06060633;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    /* Or center depending on design, left aligned works */
    margin: 10px auto 0 auto;
}

.submit-btn:hover {
    background-color: #06060666;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    /* Drop shadow similar to design */
}

.collection-section {
    width: 100%;
    max-width: 1360px;
    margin: 80px auto;
    padding: 0 40px;
}

.collection-header {
    text-align: center;
    margin-bottom: 50px;
}

.collection-badge {
    display: inline-block;
    border: 2px solid #1E1E1E;
    border-radius: 30px;
    padding: 10px 50px;
    font-size: 18px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: var(--body-font);
}

.collection-title {
    font-family: var(--heading-font);
    font-size: 54px;
    color: var(--text-color);
    line-height: 1.15;
    font-weight: 500;
}

.collection-title strong {
    font-weight: 700;
    color: #4A4A4A;
}

.collection-grid {
    display: flex;
    overflow: hidden;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
    /* Pad top/bottom to clear drop shadow */
    width: 100%;
}

/* Hide mobile arrows on desktop */
.mobile-arrow {
    display: none;
}

/* Hero banner image above carousel grid */
.collection-hero-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    margin-bottom: 32px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
}

/* Slide wrappers are now the flex children */
.collection-grid .collection-slide {
    flex: 0 0 calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.collection-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.collection-img:hover {
    transform: scale(1.02);
}

/* Enquire button attached to each slide */
.slide-enquire-btn {
    background-color: #b81111;
    color: #FFFFFF;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 15px;
    padding: 12px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.slide-enquire-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .collection-grid .collection-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Collection Actions */
.collection-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.visual-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.visual-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D3D3D3;
}

.visual-dots .dot.active {
    background-color: #1E1E1E;
}

.collection-enquire-btn {
    background-color: #1E1E1E;
    color: #FFFFFF;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    padding: 14px 42px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collection-enquire-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.collection-subtitle {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
    color: #4A4A4A;
    margin-top: 15px;
}

/* Why Choose Us Section */
.wcu-section {
    width: 100%;
    max-width: 1360px;
    margin: 60px auto 100px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wcu-enquire-btn {
    background-color: #1E1E1E;
    color: #FFFFFF;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    padding: 16px 42px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.wcu-enquire-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wcu-container {
    width: 100%;
    background-image: url('images/wcu-bd.png');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    padding: 80px 10%;
    color: #FFFFFF;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.wcu-header {
    text-align: center;
    margin-bottom: 60px;
}

.wcu-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 8px 30px;
    font-size: 13px;
    letter-spacing: 5px;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: var(--body-font);
    color: #EEEEEE;
}

.wcu-title {
    font-family: var(--heading-font);
    font-size: 56px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 20px;
}

.wcu-title strong {
    font-weight: 700;
}

.wcu-subtitle {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.wcu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wcu-card {
    position: relative;
    /* Anchor for absolute icon */
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 40px 30px 100px;
    /* Gently adjusted left padding to match icon shifting left */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 160px;
    text-align: left;
    transition: all 0.3s ease;
}

.wcu-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.wcu-text {
    flex: none;
    color: #EEEEEE;
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    font-style: italic;
    text-align: left;
    margin-bottom: 0;
}

.wcu-icon-wrapper {
    position: absolute;
    bottom: -20px;
    /* Moved upward to sit higher on the border */
    left: 0px;
    /* Shifted entirely to the left edge */
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: #0a0a0a;
    /* Very dark background to mimic the container's background image texture effortlessly */
}

.wcu-card:hover .wcu-icon-wrapper {
    border-color: rgba(255, 255, 255, 0.7);
}

.wcu-icon-inner {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wcu-card:hover .wcu-icon-inner {
    transform: scale(1.05);
}

.wcu-icon-inner svg {
    transform: scale(1.6);
    /* Visually blow up the native 16x16 SVG to match the new 76px container */
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .features-section {
        grid-template-columns: 1fr;
    }

    .features-grid {
        gap: 20px;
    }

    .play-btn-cutout {
        width: 50px !important;
        height: 50px !important;
        bottom: -3px !important;
        left: -3px !important;
    }

    .play-btn-ring {
        width: 36px !important;
        height: 36px !important;
    }

    .play-btn-inner {
        width: 24px !important;
        height: 24px !important;
    }

    .play-btn-inner svg {
        width: 10px !important;
        height: 10px !important;
        margin-left: 2px !important;
    }
}

@media (max-width: 768px) {

    /* === Layout Containers === */
    .container {
        padding: 0 16px;
    }

    /* === Header === */
    .header {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
    }

    .contact-info {
        align-items: center;
    }

    .logo img {
        height: 42px;
    }

    /* === Hero === */
    .hero-image {
        border-radius: 14px;
    }

    /* === Features Form Section === */
    .form-container {
        padding: 28px 16px;
    }

    .form-container h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* === Collection Sections === */
    .collection-section {
        margin: 30px auto !important;
        padding: 0 16px !important;
    }

    .collection-header {
        margin-bottom: 24px;
    }

    .collection-badge {
        font-size: 13px;
        letter-spacing: 4px;
        padding: 6px 36px;
        margin-bottom: 14px;
    }

    .collection-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .collection-subtitle {
        font-size: 13px;
    }

    .collection-hero-img {
        border-radius: 18px;
        max-height: 220px;
        margin-bottom: 20px;
    }

    .collection-grid {
        gap: 0;
    }

    .collection-grid .collection-slide {
        flex: 0 0 100%;
        max-width: 100%;
        gap: 12px;
    }

    /* === Mobile Carousel Navigation === */
    .grid-nav-wrapper {
        position: relative;
        width: 100%;
    }

    .mobile-arrow {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        background-color: rgba(26, 26, 26, 0.4);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .mobile-arrow:active {
        background-color: rgba(26, 26, 26, 0.7);
        transform: translateY(-50%) scale(0.95);
    }

    .mobile-prev {
        left: 5px;
    }

    .mobile-next {
        right: 5px;
    }

    .slide-enquire-btn {
        font-size: 13px;
        padding: 10px 26px;
    }

    .collection-action {
        margin-top: 20px;
    }

    /* === Why Choose Us === */
    .wcu-section {
        margin: 30px 0 !important;
    }

    .wcu-container {
        padding: 36px 16px 48px 16px;
        border-radius: 24px;
    }

    .wcu-header {
        margin-bottom: 32px;
    }

    .wcu-badge {
        font-size: 10px;
        letter-spacing: 3px;
        padding: 6px 18px;
        margin-bottom: 16px;
    }

    .wcu-title {
        font-size: 28px;
    }

    .wcu-subtitle {
        font-size: 13px;
    }

    /* 2 columns on mobile instead of 1 */
    .wcu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .wcu-card {
        padding: 16px 12px 44px 12px;
        /* Uniform padding, extra bottom for icon to hang below */
        min-height: 110px;
        align-items: center;
        /* Center text horizontally */
    }

    .wcu-text {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        /* Center text on small cards */
    }

    .wcu-icon-wrapper {
        width: 48px;
        height: 48px;
        bottom: -14px;
        left: 50%;
        /* Center horizontally */
        transform: translateX(-50%);
    }

    .wcu-icon-inner svg {
        transform: scale(1.0);
    }

    /* === Video Section === */
    .video-section {
        margin: 30px 0 !important;
    }

    .video-wrapper {
        border-radius: 20px !important;
        margin-bottom: 20px;
    }

    /* === Tell Us / Footer Form Sections === */
    .tu-section,
    .ff-section {
        margin: 30px 0 !important;
    }

    .ff-container,
    .tu-container {
        padding: 30px 16px !important;
        border-radius: 20px !important;
    }

    .tu-title {
        font-size: 24px;
    }

    .tu-subtitle {
        font-size: 13px;
    }

    .ff-input-row {
        flex-direction: column;
        gap: 12px;
    }

    .ff-full-select {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }

    /* === Popup === */
    .popup-box {
        padding: 28px 16px;
        width: 95%;
        border-radius: 20px;
    }

    .popup-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .popup-badge {
        font-size: 9px;
        margin-bottom: 16px;
    }

    /* === Global border radii & misc === */
    .collection-img,
    .hero-image {
        border-radius: 14px !important;
    }

    /* === Top hero form area === */
    .features-section {
        gap: 16px;
        margin-bottom: 30px;
    }

    /* Compact form inputs on mobile */
    .input-group input,
    .input-group select {
        padding: 13px 18px;
        font-size: 13px;
    }

    .shop-form {
        gap: 12px;
    }

    .submit-btn {
        padding: 13px 28px;
        font-size: 13px;
    }

    /* === Footer Form Section === */
    .ff-section {
        margin: 20px 0 !important;
    }

    .ff-container {
        padding: 28px 16px !important;
        border-radius: 18px !important;
    }

    .ff-title {
        font-size: 20px !important;
        margin-bottom: 20px;
        text-align: center;
    }

    /* On mobile, ff-form behaves exactly like shop-form — single column, same gap */
    .ff-form {
        gap: 12px;
    }

    /* Each ff-input-row collapses to single column with same gap as shop-form */
    .ff-input-row {
        flex-direction: column;
        gap: 12px;
        /* Matches shop-form gap exactly */
    }

    .ff-submit {
        padding: 13px 32px;
        font-size: 13px;
        margin-top: 0;
        /* Remove extra gap, ff-form gap handles spacing */
    }

    /* Make the centered full-width select fill properly */
    .ff-full-select {
        max-width: 100% !important;
        width: 100% !important;
    }

    /* === Experience Banner === */
    .exp-section {
        margin: 24px 0;
    }

    .exp-card {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .exp-headline {
        font-size: 28px;
    }

    .exp-subline {
        font-size: 15px;
    }
}

/* Experience Banner Section */
.exp-section {
    width: 100%;
    margin: 50px 0;
}

.exp-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}

.exp-headline {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 700;
    color: #A50000;
    margin: 0 0 12px 0;
    line-height: 1.1;
}

.exp-subline {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Video Section */

.video-section {
    width: 100%;
    margin: 80px 0;
}

.video-wrapper {
    position: relative;
    border-radius: 40px;
    background-color: #E0E0E0;
    /* Fallback for video loading */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    /* Soft premium shadow */
    margin-bottom: 40px;
}

.showcase-video {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
    pointer-events: none;
    /* Just autoplay background visually */
}

/* The illusion cutout button */
.play-btn-cutout {
    position: absolute;
    bottom: -15px;
    /* Sink it into the page background slightly */
    left: -15px;
    /* Sink it into the left page explicitly */
    width: 180px;
    height: 180px;
    background-color: var(--bg-color);
    /* PERFECTLY matches page background to block video! */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.play-btn-ring {
    width: 130px;
    height: 130px;
    border: 1px solid #1E1E1E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn-cutout:hover .play-btn-ring {
    border-color: rgba(30, 30, 30, 1);
    transform: scale(1.02);
}

.play-btn-inner {
    width: 94px;
    height: 94px;
    background-color: #1E1E1E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.play-btn-cutout:hover .play-btn-inner {
    transform: scale(1.05);
    background-color: #333333;
}

.play-btn-inner svg {
    margin-left: 6px;
    /* Balance the optical center of play triangle natively */
}

/* Tell Us Section */
.tu-section {
    width: 100%;
    margin: 80px 0;
}

.tu-container {
    background-image: url('images/tu.png');
    background-size: cover;
    background-position: center;
    border-radius: 36px;
    padding: 80px 40px;
    text-align: center;
    color: #FFFFFF;
}

.tu-title {
    font-family: var(--heading-font);
    font-size: 52px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 20px;
}

.tu-title strong {
    font-weight: 700;
}

.tu-subtitle {
    font-family: var(--body-font);
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #DDDDDD;
}

/* Footer Form Section */
.ff-section {
    width: 100%;
    margin: 80px 0;
}

.ff-container {
    background-image: url('images/ff.png');
    background-size: cover;
    background-position: center;
    border-radius: 36px;
    padding: 80px 5%;
    text-align: center;
}

.ff-title {
    font-family: var(--heading-font);
    font-size: 34px;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 50px;
}

.ff-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.ff-input-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

.ff-input-row .input-group {
    flex: 1;
}

.ff-submit {
    align-self: center;
    padding: 18px 48px;
    margin-top: 10px;
}

/* Centered row for single-field rows in footer form */
.ff-input-row--center {
    justify-content: center;
}

.ff-full-select {
    width: 100%;
    max-width: calc(50% - 12px);
}

/* Footer */
.site-footer {
    width: 100%;
    padding: 30px 0 50px 0;
    text-align: center;
    font-family: var(--body-font);
    font-size: 15px;
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.3px;
}

/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background-image: url('images/form-bg.png');
    background-size: cover;
    background-position: center;
    background-color: #1E1E1E;
    /* Fallback */
    width: 90%;
    max-width: 550px;
    border-radius: 30px;
    padding: 50px 50px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.popup-overlay.active .popup-box {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    color: #FFFFFF;
}

.popup-inner {
    text-align: center;
}

.popup-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--body-font);
    margin-bottom: 24px;
}

.popup-title {
    font-family: var(--heading-font);
    font-size: 32px;
    color: #FFFFFF;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 30px;
}

.popup-title strong {
    font-weight: 600;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-submit {
    width: 100%;
    /* Make button full width in modal */
    margin-top: 10px !important;
}

/* ===== IMAGE LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-box {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.88);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-overlay.active .lightbox-box {
    transform: scale(1);
}

.lightbox-box img {
    max-width: 90vw;
    max-height: 86vh;
    height: auto;
    width: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ===== MOBILE STICKY OFFER BUTTON ===== */

/* Hidden on desktop by default */
.sticky-offer-btn {
    display: none;
}

@media (max-width: 768px) {
    .sticky-offer-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        position: fixed;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        white-space: nowrap;
        z-index: 1500;
        background-color: #A50000;
        color: #FFFFFF;
        font-family: var(--body-font);
        font-size: 13px;
        font-weight: 600;
        padding: 10px 22px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        letter-spacing: 0.3px;
        box-shadow: 0 6px 24px rgba(165, 0, 0, 0.45);
        transition: all 0.2s ease;
    }

    .sticky-offer-btn:active {
        background-color: #880000;
        transform: translateX(-50%) scale(0.96);
    }

    body {
        padding-bottom: 70px;
    }
}

