/* ===================================
   CSS Reset & Variables
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #C9A961;
    --accent-hover: #A68B4F;
    /* --gold: #C9A961; */
    --gold:#E2B977;
    --gold-light: #e4c38e;
    /* --gold-light: #D4B76E; */
    --gold-dark: #A68B4F;
    --gold-glow: rgba(201, 169, 97, 0.6);
    --gold-border: rgba(201, 169, 97, 0.35);
    --gold-border-bright: rgba(212, 183, 110, 0.5);
    /* --gold-whitish: #E8D7AE; */
    --gold-whitish: #E2B977;
    --gold-whitish-glow: rgba(232, 215, 174, 0.8);
    --navbar-color: #0c0e12;
    --navbar-dark: #070a0e;
    --navbar-light: #1a1d24;
    --light-blue: #5b9dd9;
    --light-blue-dark: #3a7ab8;
    --text-dark: #1a1a1a;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-grey: #e5e7eb;
    --bg-dark: #0c0e12;
    --white: #ffffff;
    --black: #000000;
    --grey-dark: #374151;
    --grey-medium: #9ca3af;
    --grey-light: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

section {
    padding: 80px 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*background: var(--white);*/
    background: #ffffffa1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    height: 100px;
    border-bottom: none;
}

/* Shiny Deep Gold Bottom Border */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        180deg,
        #d4af37 0%,
        #c9a961 25%,
        #b8942f 50%,
        #c9a961 75%,
        #d4af37 100%
    );
    box-shadow:
        inset 0 1px 1px rgba(255, 223, 128, 0.6),
        inset 0 -1px 1px rgba(139, 101, 8, 0.4),
        0 2px 8px rgba(201, 169, 97, 0.5),
        0 0 15px rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

/* Navbar Bottom Border Comet Glow Effect */
.navbar::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        transparent,
        transparent 25%,
        rgba(255, 255, 255, 0.6) 45%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.6) 55%,
        transparent 75%,
        transparent
    );
    background-size: 400% 100%;
    animation: borderComet 20s linear infinite;
    filter: drop-shadow(0 0 15px var(--gold-whitish-glow))
            drop-shadow(0 0 25px rgba(201, 169, 97, 0.5));
    pointer-events: none;
    z-index: 1;
}

/* Left flag decoration */
.navbar-flag-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 25vw;
    background-image: url(../img/autoHaul.webp);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    height: 100%;
    position: relative;
    z-index: 10;
}

.nav-brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-left: 5%;
}

.nav-brand .logo {
    height: 300px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.3); /* Darken the logo for visibility */
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    margin-right: 0;
}

/* WordPress menu item styles */
.nav-menu li {
    list-style: none;
}

.nav-menu a,
.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-link:hover {
    color: #d4af37;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Button style for "Get Quote" */
.nav-menu li.btn-primary a,
.nav-menu .btn-primary > a,
.nav-link.btn-primary {
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
    color: var(--gold-whitish) !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    display: inline-block !important;
    border: 2px solid var(--gold) !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3), inset 0 0 20px rgba(226, 185, 119, 0.05) !important;
}

.nav-menu li.btn-primary a::after,
.nav-menu .btn-primary > a::after {
    display: none !important;
}

.nav-menu li.btn-primary a:hover,
.nav-menu .btn-primary > a:hover,
.nav-link.btn-primary:hover {
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    color: var(--gold-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 0 30px rgba(226, 185, 119, 0.5), 0 5px 20px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(226, 185, 119, 0.1) !important;
    border-color: var(--gold-light) !important;
}

/* Dropdown menu styles */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a2332;
    min-width: 200px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    list-style: none;
    border-radius: 8px;
    margin-top: 10px;
}

.nav-menu li:hover > .sub-menu {
    display: block;
}

.nav-menu .sub-menu li {
    width: 100%;
}

.nav-menu .sub-menu a {
    padding: 12px 20px;
    display: block;
}

.nav-menu .sub-menu a::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   Hero Section - Premium Gold Theme
   =================================== */
.hero-wrap {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #070a0e;
    padding-top: 120px;
    padding-bottom: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #070a0e;
    padding-top: 120px;
    padding-bottom: 0;
}

/* 1) Background image layer */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/BgHeroFinal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(1.05) contrast(1.08) brightness(0.95);
    transform: scale(1.02);
    z-index: 0;
}

/* 2) Dark vignette (dark edges + center clarity) */
.hero-vignette {
    position: absolute;
    inset: 0;
    /*background:*/
    /*    radial-gradient(circle at 40% 35%, rgba(0, 0, 0, 0.25) 0%, rgb(0 0 0 / 0%) 70%), */
    /*    linear-gradient(90deg, rgb(0 0 0 / 39%) 0%, rgb(0 0 0 / 0%) 45%, rgb(0 0 0 / 0%) 100%), */
    /*    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.60) 100%);*/
    pointer-events: none;
    z-index: 1;
}

/* 3) Subtle gold "dust" sparkle on right side */
.hero-dust {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 600px at 82% 45%, rgba(201, 169, 97, 0.15), transparent 62%),
        radial-gradient(700px 420px at 92% 30%, rgba(212, 183, 110, 0.08), transparent 60%),
        radial-gradient(600px 500px at 85% 80%, rgba(201, 169, 97, 0.06), transparent 65%);
    mix-blend-mode: screen;
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
}

/* 4) Premium grain texture */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.10;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    min-height: 8.4rem;
    display: flex;
    align-items: flex-start;
}

.hero-title .highlight {
    color: var(--gold-whitish);
    position: relative;
}

.hero-title .italy-green {
    color: var(--bg-light);
    position: relative;
    font-weight: 800;
}

.typing-text {
    display: inline-block;
    min-height: 8.4rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-features-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-features-image:hover {
    transform: scale(1.02);
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

.hero-stat-image {
    height: auto;
    max-height: 80px;
    width: 48%;
    transition: transform 0.3s ease;
}

.hero-stat-image:hover {
    transform: scale(1.05);
}

/* Auto Haul Video Container with Comet Border Effect */
.auto-haul-video-container {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 10, 14, 0.5);
    border-radius: 12px;
    overflow: visible;
    border: none;
    position: relative;
    box-shadow:
        0 8px 30px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(232, 215, 174, 0.1);
}

.auto-haul-video-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        transparent 30%,
        var(--gold-whitish) 50%,
        var(--gold-whitish-glow) 55%,
        transparent 70%,
        transparent
    );
    background-size: 400% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderComet 8s linear infinite;
    pointer-events: none;
    filter: drop-shadow(0 0 10px var(--gold-whitish-glow));
}

.auto-haul-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(232, 215, 174, 0.15);
    pointer-events: none;
}

.auto-haul-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    border-radius: 12px;
}

/* Video Loader */
.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

.video-loader p {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Quote Card - Large Version */
.quote-card-large {
    background: var(--white);
    padding: 40px 45px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    min-height: 600px;
    transition: all 0.5s ease;
}

/* Comet Border Animation */
@keyframes borderComet {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 400% 0%;
    }
}

@keyframes borderCometReverse {
    0% {
        background-position: 400% 0%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Dark Glassmorphic Theme with Comet Border Effect */
.quote-card-large.dark-theme {
    position: relative;
    border: none;
    border-radius: 18px;
    background: rgba(8, 10, 14, 0.72);
    backdrop-filter: blur(0px) saturate(110%);
    -webkit-backdrop-filter: blur(0px) saturate(110%);
    box-shadow:
        0 10px 50px rgba(0,0,0,0.7);
}

.quote-card-large.dark-theme::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    padding: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        transparent 30%,
        var(--gold-whitish) 50%,
        var(--gold-whitish-glow) 55%,
        transparent 70%,
        transparent
    );
    background-size: 400% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderComet 15s linear infinite;
    pointer-events: none;
    filter: drop-shadow(0 0 12px var(--gold-whitish-glow));
}

.quote-card-large.dark-theme::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(232, 215, 174, 0.2);
    pointer-events: none;
}

.quote-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.quote-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
    transition: var(--transition);
}

.quote-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0;
    transition: var(--transition);
}

/* Dark Theme Header with Gold Divider */
.quote-card-large.dark-theme .quote-header {
    border-bottom: 1px solid rgba(255, 200, 120, 0.25);
}

.quote-card-large.dark-theme .quote-header h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-card-large.dark-theme .quote-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* =============================
   MULTI-STEP FORM STYLES
============================= */

/* Step Progress Indicator */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(8, 10, 14, 0.6);
    border: 2px solid rgba(232, 215, 174, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: clamp(30px, 4vh, 50px);
    white-space: nowrap;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, var(--gold-whitish) 0%, var(--gold-whitish-glow) 100%);
    border-color: var(--gold-whitish);
    color: #070a0e;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
}

.step-item.active .step-label {
    color: var(--gold-whitish);
}

.step-item.completed .step-number {
    background: rgba(201, 169, 97, 0.2);
    border-color: var(--gold-whitish);
    color: transparent;
    font-size: 0;
}

.step-item.completed .step-label {
    color: rgba(255, 255, 255, 0.7);
}

.step-item.completed .step-number::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    color: var(--gold-whitish);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: rgba(232, 215, 174, 0.2);
    margin: 0 10px;
    position: relative;
    top: -18px;
}

.step-item.completed + .step-connector {
    background: linear-gradient(90deg, var(--gold-whitish) 0%, rgba(232, 215, 174, 0.2) 100%);
}

/* Multi-Step Form Container */
.multi-step-form {
    position: relative;
    min-height: 500px;
    overflow: visible;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
    position: relative;
    z-index: 1;
    padding-top: 10px;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-whitish);
    margin-top: 0;
    margin-bottom: 30px;
    padding-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(232, 215, 174, 0.2);
    position: relative;
    z-index: 10;
    clear: both;
}

.step-title i {
    margin-right: 10px;
    color: var(--gold-whitish-glow);
}

/* Form Navigation Buttons */
.form-navigation {
    display: flex !important;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(232, 215, 174, 0.2);
    position: relative;
    z-index: 10;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 14px 28px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

/* Button display states - allow inline styles to control visibility */
.btn-prev[style*="display: none"],
.btn-next[style*="display: none"],
.btn-submit[style*="display: none"] {
    display: none !important;
}

.btn-prev[style*="display: inline-flex"],
.btn-next[style*="display: inline-flex"],
.btn-submit[style*="display: inline-flex"] {
    display: inline-flex !important;
}

.btn-prev {
    flex: 0 0 auto !important;
    background: rgba(8, 10, 14, 0.6) !important;
    border: 1px solid rgba(232, 215, 174, 0.3) !important;
    color: var(--white) !important;
}

.btn-prev:hover {
    background: rgba(232, 215, 174, 0.1) !important;
    border-color: var(--gold-whitish) !important;
    color: var(--white) !important;
}

.btn-next,
.btn-submit {
    flex: 1 !important;
    background: linear-gradient(135deg, var(--gold-whitish) 0%, var(--gold-whitish-glow) 100%) !important;
    border: none !important;
    color: #070a0e !important;
    font-weight: 700 !important;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3) !important;
    color: #070a0e !important;
}

.btn-full-width {
    width: 100%;
    margin-top: 20px;
}

/* Step 3: Embedded OTP Section */
.embedded-otp-section {
    margin-top: 30px;
    padding-top: 25px;
}

.otp-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 215, 174, 0.3), transparent);
    margin-bottom: 25px;
}

.otp-embedded-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-whitish);
    margin-bottom: 8px;
}

.otp-embedded-title i {
    margin-right: 8px;
    color: var(--gold-whitish-glow);
}

.otp-embedded-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.otp-actions {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.otp-actions .btn {
    flex: 1;
}

/* Step 4: Review Section */
.review-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.review-card {
    background: rgba(8, 10, 14, 0.4);
    border: 1px solid rgba(232, 215, 174, 0.2);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.review-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-whitish);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(232, 215, 174, 0.15);
}

.review-card h4 i {
    margin-right: 8px;
    color: var(--gold-whitish-glow);
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
}

.review-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.review-value {
    color: var(--white);
    font-weight: 600;
    text-align: right;
}

.review-vehicles {
    margin-top: 10px;
}

.review-vehicles .review-item {
    border-top: 1px solid rgba(232, 215, 174, 0.1);
}

.verification-status {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(232, 215, 174, 0.1);
    color: #4ade80;
    font-weight: 600;
    justify-content: center;
}

.verification-status i {
    margin-right: 6px;
}

/* Tier Selection in Review */
.tier-selection-review {
    margin-bottom: 25px;
}

.tier-selection-review h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-whitish);
    margin-bottom: 15px;
}

.tier-selection-review h4 i {
    margin-right: 8px;
    color: var(--gold-whitish-glow);
}

.tier-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tier-card-review {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    background: rgba(8, 10, 14, 0.4);
    border: 2px solid rgba(232, 215, 174, 0.2);
    padding: 15px;
    transition: all 0.3s ease;
}

.tier-card-review:hover {
    border-color: var(--gold-whitish);
    background: rgba(232, 215, 174, 0.05);
    transform: translateY(-2px);
}

.tier-card-review input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.tier-card-review input[type="radio"]:checked + .tier-card-content {
    color: var(--gold-whitish);
}

.tier-card-review input[type="radio"]:checked ~ * {
    border-color: var(--gold-whitish);
}

.tier-card-review input[type="radio"]:checked + .tier-card-content::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--gold-whitish);
    font-size: 1.2rem;
}

.tier-card-content {
    position: relative;
    text-align: center;
}

.tier-card-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.tier-card-window {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.tier-card-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-whitish);
}

/* Final Price Display */
.final-price-display {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(212, 183, 110, 0.1) 100%);
    border: 2px solid var(--gold-whitish);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.2);
}

.final-price-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 8px;
}

.final-price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-whitish);
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .step-label {
        margin-top: clamp(25px, 3.5vh, 40px);
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .step-progress {
        padding: 0 10px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .step-label {
        font-size: 0.75rem;
        margin-top: clamp(20px, 3vh, 35px);
    }

    .step-connector {
        margin: 0 5px;
    }

    .tier-options-grid {
        grid-template-columns: 1fr;
    }

    .multi-step-form {
        min-height: 450px;
    }

    .final-price-amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .step-progress {
        padding: 0 5px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.7rem;
        margin-top: clamp(18px, 2.5vh, 30px);
    }

    .step-connector {
        margin: 0 3px;
    }
}

/* Theme Toggle Wrapper */
.theme-toggle-wrapper {
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
    align-items: center;
}

/* Toggle Switch */
.theme-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.theme-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--grey-medium), var(--grey-dark));
    border-radius: 34px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.light-icon,
.dark-icon {
    font-size: 0.8rem;
    transition: 0.4s;
    z-index: 1;
}

.light-icon {
    color: rgba(255, 255, 255, 0.9);
}

.dark-icon {
    color: rgba(255, 255, 255, 0.5);
}

.theme-toggle input:checked + .toggle-slider {
    background: linear-gradient(135deg, #475569, #334155);
}

.theme-toggle input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.theme-toggle input:checked + .toggle-slider .light-icon {
    color: rgba(255, 255, 255, 0.5);
}

.theme-toggle input:checked + .toggle-slider .dark-icon {
    color: rgba(255, 255, 255, 0.9);
}

/* Large Form Styling */
.quote-form-large {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Inline Row for Radio Buttons */
.form-row-inline {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group-inline {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-inline label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.form-group-inline label i {
    color: var(--accent-color);
    margin-right: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

/* Dark Theme for Inline Groups */
.quote-card-large.dark-theme .form-group-inline label {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.quote-card-large.dark-theme .form-group-inline label i {
    color: var(--accent-color);
}

/* Button Row */
.form-row-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
}

/* Price Display Inline */
.price-display-inline {
    background: linear-gradient(135deg, var(--grey-light) 0%, var(--white) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 25px;
    text-align: center;
    transition: var(--transition);
    margin: 10px 0;
}

.price-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1.2;
    margin: 5px 0;
}

.price-details {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
    line-height: 1.4;
}

/* Dark Theme Price Display */
.quote-card-large.dark-theme .price-display-inline {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(55, 65, 81, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.quote-card-large.dark-theme .price-label {
    color: rgba(255, 255, 255, 0.8);
}

.quote-card-large.dark-theme .price-amount {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.quote-card-large.dark-theme .price-details {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-large {
    display: flex;
    flex-direction: column;
    
}

.position-relative {
    position: relative;
}

.form-group-large label {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.form-group-large label i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 1.1rem;
    transition: var(--transition);
}

/* Dark Theme Labels */
.quote-card-large.dark-theme .form-group-large label {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.quote-card-large.dark-theme .form-group-large label i {
    color: var(--accent-color);
}

.form-group-large input,
.form-group-large select {
    width:100%;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
}

.form-group-large input:focus,
.form-group-large select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.form-group-large input::placeholder {
    color: #999;
    font-size: 1rem;
}

/* Date input styling */
.form-group-large input[type="date"],
.form-group-inline input[type="date"] {
    color: var(--text-dark);
    cursor: pointer;
}

.form-group-large input[type="date"]::-webkit-calendar-picker-indicator,
.form-group-inline input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
}

.quote-card-large.dark-theme input[type="date"] {
    color: var(--white);
    color-scheme: dark;
}

/* Custom date picker styling for dark theme */
.quote-card-large.dark-theme input[type="date"]::-webkit-datetime-edit {
    padding: 0;
}

.quote-card-large.dark-theme input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

.quote-card-large.dark-theme input[type="date"]::-webkit-datetime-edit-text {
    color: rgba(255, 255, 255, 0.6);
    padding: 0 3px;
}

.quote-card-large.dark-theme input[type="date"]::-webkit-datetime-edit-month-field,
.quote-card-large.dark-theme input[type="date"]::-webkit-datetime-edit-day-field,
.quote-card-large.dark-theme input[type="date"]::-webkit-datetime-edit-year-field {
    color: var(--white);
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.quote-card-large.dark-theme input[type="date"]::-webkit-datetime-edit-month-field:focus,
.quote-card-large.dark-theme input[type="date"]::-webkit-datetime-edit-day-field:focus,
.quote-card-large.dark-theme input[type="date"]::-webkit-datetime-edit-year-field:focus {
    background: rgba(91, 157, 217, 0.2);
    outline: none;
}

/* Dark Theme Inputs */
.quote-card-large.dark-theme .form-group-large input,
.quote-card-large.dark-theme .form-group-large select {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-card-large.dark-theme .form-group-large input:focus,
.quote-card-large.dark-theme .form-group-large select:focus {
    background: rgba(25, 25, 30, 0.7);
    border-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-card-large.dark-theme .form-group-large input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quote-card-large.dark-theme .form-group-large select {
    color: var(--white);
}

.quote-card-large.dark-theme .form-group-large select option {
    background: var(--secondary-color);
    color: var(--white);
}

.form-row-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.transport-type-radios,
.vehicle-input-radios {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.form-check-inline {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--grey-dark);
    color: var(--grey-dark);
    padding: 14px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-outline-primary:hover {
    background: var(--grey-dark);
    color: var(--white);
    border-color: var(--grey-dark);
}

.btn-large-form {
    flex: 1;
}

/* Dark theme radio buttons */
.quote-card-large.dark-theme .form-check-label {
    color: var(--white);
}

.quote-card-large.dark-theme .btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.quote-card-large.dark-theme .btn-outline-primary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

/* Vehicle Entry Inline Styles */
.vehicle-entry-inline {
    display: grid;
    grid-template-columns: auto 1fr 1fr auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.quote-card-large.dark-theme .vehicle-entry-inline {
    background: rgba(20, 20, 25, 0.4);
}

.vehicle-badge {
    background: var(--accent-color);
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.vehicle-entry-inline .form-control,
.vehicle-entry-inline .form-select {
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

/* Row 1: Badge, Type, Year, Checkbox, Remove button */
.vehicle-badge {
    grid-column: 1;
    grid-row: 1 / 3;
}

.vehicle-entry-inline select.vehicle-type {
    grid-column: 2;
    grid-row: 1;
}

.vehicle-entry-inline select.vehicle-year {
    grid-column: 3;
    grid-row: 1;
}

.vehicle-inoperable-check {
    grid-column: 4;
    grid-row: 1;
}

.vehicle-entry-inline .btn-remove {
    grid-column: 5;
    grid-row: 1 / 3;
}

/* Row 2: Make, Model */
.vehicle-entry-inline .vehicle-make {
    grid-column: 2;
    grid-row: 2;
}

.vehicle-entry-inline .vehicle-model {
    grid-column: 3 / 5;
    grid-row: 2;
}

.vehicle-inoperable-check {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.vehicle-inoperable-check .form-check-input {
    margin: 0;
    cursor: pointer;
}

.vehicle-inoperable-check .form-check-label {
    margin: 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.btn-decode,
.btn-remove {
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-decode {
    background: var(--grey-dark);
    color: var(--white);
}

.btn-decode:hover {
    background: var(--accent-color);
}

.btn-remove {
    background: #374151;
    color: var(--white);
}

.btn-remove:hover {
    background: #1a1a1a;
}

.vehicle-decoded-info {
    width: 100%;
    padding: 8px;
    background: #d4edda;
    color: #155724;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Location Autocomplete */
.location-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
}

.location-autocomplete.active {
    display: block;
}

.location-autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: var(--transition);
}

.location-autocomplete-item:hover {
    background: var(--bg-light);
}

.zip-code {
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.city-name {
    flex: 1;
    color: var(--text-dark);
}

.state-code {
    color: var(--text-light);
    font-size: 0.9rem;
}

.location-autocomplete-loading,
.location-autocomplete-empty {
    padding: 15px;
    text-align: center;
    color: var(--text-light);
}

/* Dark theme autocomplete */
.quote-card-large.dark-theme .location-autocomplete {
    background: var(--secondary-color);
    border-color: var(--accent-color);
}

.quote-card-large.dark-theme .location-autocomplete-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.quote-card-large.dark-theme .zip-code {
    color: var(--accent-color);
}

.quote-card-large.dark-theme .city-name {
    color: var(--white);
}

.quote-card-large.dark-theme .state-code {
    color: rgba(255, 255, 255, 0.7);
}

.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 0 0 25px rgba(255, 190, 105, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5), 0 0 35px rgba(255, 190, 105, 0.2);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-large-form {
    padding: 22px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    margin-top: 10px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.form-footer i {
    color: var(--accent-color);
    transition: var(--transition);
}

/* Dark Theme Footer */
.quote-card-large.dark-theme .form-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.quote-card-large.dark-theme .form-footer i {
    color: var(--accent-color);
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.badge-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 20px;
    background: linear-gradient(135deg, var(--grey-medium), var(--grey-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   About Us - The Dardini Difference Section
   =================================== */
.about-us {
    background: #f9fafb url('../img/dardinidifference.png') center center/cover no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 250, 251, 0.85);
    z-index: 0;
}

.about-us .container {
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg,
        rgba(107, 114, 128, 0.08) 0%,
        rgba(156, 163, 175, 0.05) 50%,
        rgba(107, 114, 128, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(0, 0, 0, 0.46);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.about-content p {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content p strong {
    font-style: normal;
    font-weight: 700;
    color: #1f2937;
}

/* ===================================
   Founder Section
   =================================== */
.founder {
    background: #ffffff;
    padding: 80px 0;
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.founder-content-card {
    background: linear-gradient(135deg,
        rgba(107, 114, 128, 0.08) 0%,
        rgba(156, 163, 175, 0.05) 50%,
        rgba(107, 114, 128, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 114, 128, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.founder-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.founder-intro p {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 30px;
}

.founder-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.founder-accordion-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(107, 114, 128, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.founder-accordion-item:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

.founder-accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.4);
}

.founder-accordion-question:hover {
    background: rgba(0, 0, 0, 0.05);
}

.founder-accordion-question h4 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.founder-accordion-question i {
    font-size: 1rem;
    color: #000000;
    transition: transform 0.3s ease;
}

.founder-accordion-item.active .founder-accordion-question i {
    transform: rotate(180deg);
}

.founder-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.founder-accordion-item.active .founder-accordion-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.founder-accordion-answer p {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
}

.founder-accordion-answer p:last-child {
    margin-bottom: 0;
}

.founder-accordion-answer p strong {
    font-weight: 700;
    color: #1f2937;
}

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    max-height: 500px;
}

.founder-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.founder-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    display: block;
    object-fit: cover;
}

/* Responsive Design for Founder Section */
@media (max-width: 992px) {
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .founder-content-card {
        padding: 30px 25px;
    }

    .founder-accordion-question {
        padding: 15px 20px;
    }

    .founder-accordion-question h4 {
        font-size: 1rem;
    }
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card.featured {
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

.service-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--grey-medium), var(--grey-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card:hover .service-icon,
.service-card-link:hover .service-icon {
    background: linear-gradient(135deg, var(--light-blue), var(--light-blue-dark));
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--accent-color);
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    background: var(--bg-light);
}

.pricing-info {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-text {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.pricing-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.pricing-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: var(--secondary-color);
    color: var(--white);
}

.pricing-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(8, 10, 14, 0.6);
    border: 2px solid rgba(226, 185, 119, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(226, 185, 119, 0.2);
    background: rgba(8, 10, 14, 0.7);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--gold-whitish);
    font-weight: 600;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    text-align: left;
}

.faq-answer p strong,
.faq-answer p b {
    font-weight: 600;
    color: var(--gold-light);
    display: inline;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: linear-gradient(135deg, var(--secondary-color), var(--grey-dark));
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    opacity: 0.9;
    margin: 0;
}

.contact-cta {
    text-align: center;
}

.contact-cta .btn {
    background: var(--white);
    color: var(--text-dark);
}

.contact-cta .btn:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 30px 0;
        transform: none;
        gap: 15px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-brand {
        margin-left: 150px;
    }

    .nav-brand .logo {
        height: 200px;
        width: auto;
    }

    .navbar {
        height: 110px;
    }

    .navbar-flag-left {
        width: 250px;
    }

    /* Mobile dropdown styles */
    .nav-menu .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding: 10px 0 0 0;
        margin-top: 10px;
        background: rgba(0, 0, 0, 0.2);
    }

    .nav-menu li.menu-item-has-children.active > .sub-menu {
        display: block;
    }

    .container {
        padding: 0 15px;
    }

    .container-full {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* Reorder elements on mobile: hero-text first, quote form second, tier selection third */
    .hero-text {
        order: 1;
    }

    .quote-card-large {
        order: 2;
        padding: 35px 25px;
        min-height: auto;
    }

    .tier-selection-left {
        order: 3;
    }

    .hero-title {
        font-size: 2.5rem;
        min-height: 5.5rem;
    }

    .typing-text {
        min-height: 5.5rem;
    }

    .hero-features {
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-stat-image {
        max-height: 60px;
    }

    .quote-header h2 {
        font-size: 1.8rem;
    }

    .theme-toggle-wrapper {
        position: static;
        margin-bottom: 15px;
        justify-content: center;
    }

    .form-row-inline {
        flex-direction: column;
        gap: 15px;
    }

    .form-group-inline {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .radio-option {
        min-width: 100%;
        padding: 14px 16px !important;
        justify-content: flex-start;
    }

    .form-row-large {
        grid-template-columns: 1fr;
    }

    .form-row-buttons {
        flex-direction: column;
    }

    .btn-outline-primary,
    .btn-large-form {
        width: 100%;
    }

    .vehicle-entry-inline {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .vehicle-badge {
        align-self: flex-start;
        margin-bottom: 5px;
    }

    .vehicle-entry-inline .form-control,
    .vehicle-entry-inline .form-select {
        width: 100% !important;
        min-width: 0;
        padding: 14px 16px !important;
        font-size: 1rem !important;
        box-sizing: border-box;
    }

    .vehicle-entry-inline select.vehicle-type,
    .vehicle-entry-inline select.vehicle-year,
    .vehicle-entry-inline .vehicle-make,
    .vehicle-entry-inline .vehicle-model,
    .vehicle-entry-inline .vehicle-vin {
        grid-column: unset;
        grid-row: unset;
        width: 100%;
    }

    .vehicle-inoperable-check {
        grid-column: unset;
        grid-row: unset;
        justify-content: flex-start;
        width: 100%;
        padding: 10px 0;
        font-size: 0.95rem;
    }

    .vehicle-entry-inline .btn-remove {
        grid-column: unset;
        grid-row: unset;
        width: 100%;
        margin-top: 5px;
        padding: 12px !important;
    }

    /* Decode button and VIN input responsive */
    .vin-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .vin-decode-btn {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 14px !important;
    }

    /* Navigation buttons full width on mobile */
    .form-navigation {
        gap: 12px;
    }

    .btn-prev,
    .btn-next,
    .btn-submit {
        flex: 1;
        min-width: 0;
    }

    .steps-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-brand {
        margin-left: 120px;
    }

    .nav-brand .logo {
        height: 180px;
        width: auto;
    }

    .navbar {
        height: 100px;
    }

    .navbar-flag-left {
        width: 250px;
    }
}

@media (max-width: 576px) {
    .nav-brand {
        margin-left: 80px;
    }

    .nav-brand .logo {
        height: 150px;
        width: auto;
    }

    .navbar {
        height: 90px;
    }

    .nav-menu {
        top: 90px;
        max-height: calc(100vh - 90px);
    }

    .navbar-flag-left {
        width: 180px;
    }

    .container {
        padding: 0 10px;
    }

    .container-full {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-content {
        gap: 30px;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 2rem;
        min-height: 4.4rem;
    }

    .typing-text {
        min-height: 4.4rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-features {
        margin-bottom: 25px;
    }

    .hero-stats {
        gap: 15px;
        justify-content: center;
        margin-top: 25px;
    }

    .hero-stat-image {
        max-height: 50px;
    }

    .auto-haul-video-container {
        max-width: 400px;
        height: 100px;
    }

    .quote-card-large {
        padding: 25px 15px;
    }

    .quote-header {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .quote-header h2 {
        font-size: 1.5rem;
    }

    .quote-header p {
        font-size: 0.95rem;
    }

    .form-group-large label,
    .form-group-inline label {
        font-size: 0.95rem;
    }

    .form-group-large input,
    .form-group-large select {
        padding: 15px 16px;
        font-size: 1rem;
    }

    /* Ensure vehicle entries maintain proper spacing on mobile */
    .vehicle-entry-inline {
        margin-bottom: 20px;
    }

    /* Add Another Vehicle button full width on mobile */
    .add-vehicle-btn {
        width: 100% !important;
        padding: 14px !important;
        justify-content: center;
    }

    .price-amount {
        font-size: 2rem;
    }

    .form-row-buttons {
        gap: 10px;
    }

    .btn-large-form {
        padding: 18px 30px;
        font-size: 1.05rem;
    }

    .vehicle-entry-inline {
        flex-direction: column;
        padding: 12px;
    }

    .vehicle-entry-inline .form-control,
    .vehicle-entry-inline .form-select {
        width: 100%;
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .pricing-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table table {
        min-width: 600px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .contact-text h2 {
        font-size: 2rem;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===================================
   Scroll Timeline Section
   =================================== */
.scroll-timeline {
    padding: 100px 0;
    background: linear-gradient(46deg, rgba(0, 0, 0, 0.7) 0%, rgb(53 53 60) 50%, rgba(0, 0, 0, 0.75) 100%);
    overflow: hidden;
    margin-top: 0;
}

.scroll-timeline .section-header h2 {
    color: var(--white);
}

.scroll-timeline .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.timeline-wrapper {
    position: relative;
    padding: 60px 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Timeline Center Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #374151, #1a1a1a);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: height 0.3s ease;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Dot */
.timeline-dot {
    position: relative;
    width: 20px;
    height: 20px;
    background: var(--bg-primary);
    border: 4px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-item.active .timeline-dot {
    border-color: #000000;
    background: #000000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    transform: scale(1.3);
}

/* Timeline Content */
.timeline-content {
    min-height: 200px;
}

.timeline-content.left {
    text-align: right;
    padding-right: 0;
}

.timeline-content.right {
    text-align: left;
    padding-left: 0;
}

/* Step Card (Left Side - How It Works) */
.step-card {
    background: linear-gradient(135deg, #6b7280 0%, rgba(249, 250, 251, 0.98) 50%, #6b72805c 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 30px 20px 20px 10px;
    max-width: 380px;
    margin-left: auto;
    margin-top: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000, #1a1a1a);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 16px 16px 0 0;
}

.timeline-item.active .step-card::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.3);
}

.step-card-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 140px;
}

.step-card-right {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
    position: absolute;
    top: -25px;
    left: 10px;
    z-index: 3;
}

.step-icon {
    font-size: 1.8rem;
    color: #4b5563;
    flex-shrink: 0;
    margin-left: 60px;
}

.step-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.step-card p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Experience Card (Right Side - Dardini Experience) */
.experience-card {
    background: linear-gradient(135deg,
        rgba(17, 24, 39, 0.95) 0%,
        rgba(31, 41, 55, 0.98) 50%,
        rgba(17, 24, 39, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    margin-right: auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.experience-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* .timeline-item.active .experience-card::before {
    opacity: 1;
} */

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.4);
}

.experience-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.experience-card p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: #d1d5db;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .timeline-item.active .timeline-dot {
        transform: translate(-50%, -50%) scale(1.3);
    }
    
    .timeline-content.left,
    .timeline-content.right {
        text-align: left;
        padding-left: 80px;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .scroll-timeline {
        padding: 60px 0;
    }
    
    .timeline-wrapper {
        padding: 40px 0;
    }
    
    .timeline-item {
        margin-bottom: 50px;
    }
    
    .step-card,
    .experience-card {
        padding: 25px;
    }
    
    .step-card h3,
    .experience-card h3 {
        font-size: 1.2rem;
    }
    
    .step-card p,
    .experience-card p {
        font-size: 0.95rem;
    }
}

/* ===================================
   Simplified How It Works Section
   =================================== */
.how-it-works-simple {
    background: var(--bg-light);
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}

.step-card-simple {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-icon-simple {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--grey-medium), var(--grey-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-icon-simple i {
    font-size: 2.5rem;
    color: var(--white);
}

.step-card-simple:hover .step-icon-simple {
    background: linear-gradient(135deg, var(--light-blue), var(--light-blue-dark));
    transform: scale(1.1);
}

.step-card-simple h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-card-simple p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   Services Section - Clickable Cards
   =================================== */
.services {
    padding: 80px 0;
    background: var(--white);
}

.service-card-link {
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.service-card {
    position: relative;
    cursor: pointer;
}

.service-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: var(--accent-color);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.service-card-link:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-card-link:hover .service-card {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

/* ===================================
   Why Dardini / Trust Layer
   =================================== */
.why-dardini {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Video Background */
.why-dardini-video {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

/* Video Overlay */
.why-dardini-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(92, 95, 103, 0.69) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

/* Ensure content is above video and overlay */
.why-dardini .container {
    position: relative;
    z-index: 2;
}

.why-dardini .section-header h2 {
    color: var(--white);
}

.why-dardini .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--grey-medium), var(--grey-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.trust-icon i {
    font-size: 2rem;
    color: var(--white);
}

.trust-item:hover .trust-icon {
    background: linear-gradient(135deg, var(--light-blue), var(--light-blue-dark));
    transform: scale(1.1);
}

.trust-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.trust-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-card-simple,
    .trust-item {
        padding: 30px 20px;
    }
}

/* ===================================
   Services Page Styling
   =================================== */
.service-preview {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px;
    position: relative;
}

.service-detail-image {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-preview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-preview-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-preview-header .service-icon-large {
    margin: 0;
}

.service-preview-content h2 {
    margin: 0;
}

.service-preview-content .service-intro {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
    align-self: flex-start;
}

.service-learn-more:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.service-learn-more i {
    transition: var(--transition);
}

.service-learn-more.active i {
    transform: rotate(90deg);
}

.service-detail-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background: rgba(8, 10, 14, 0.5);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(226, 185, 119, 0.2);
}

.service-detail-content.active {
    max-height: 3000px;
}

.service-detail-inner {
    padding: 50px;
    background: transparent;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 0 30px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.service-icon-large i {
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.9);
}

.badge-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.service-detail h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-light);
    margin: 40px 0 20px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-benefits li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: flex-start;
    line-height: 1.7;
}

.service-benefits li i {
    color: var(--gold);
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.service-steps {
    display: grid;
    gap: 25px;
    margin: 30px 0 40px;
}

.service-step {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(226, 185, 119, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.service-detail.alternate .service-step {
    background: rgba(226, 185, 119, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-step h4 {
    font-size: 1.2rem;
    color: var(--gold-whitish);
    margin-bottom: 5px;
}

.service-step p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

.service-info-box {
    background: rgba(226, 185, 119, 0.1);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    margin: 30px 0;
}

.service-detail.alternate .service-info-box {
    background: rgba(226, 185, 119, 0.1);
}

.service-info-box h4 {
    font-size: 1.2rem;
    color: var(--gold-whitish);
    margin-bottom: 10px;
}

.service-info-box h4 i {
    color: var(--gold);
    margin-right: 10px;
}

.service-info-box p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-list li {
    padding: 10px 15px;
    background: rgba(226, 185, 119, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.service-detail.alternate .service-list li {
    background: rgba(226, 185, 119, 0.05);
}

.service-list li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    margin-right: 10px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 20px;
}

.service-comparison {
    padding: 80px 0;
    background: transparent;
}

.service-comparison .section-header h2 {
    color: var(--gold-whitish);
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.service-comparison .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(8, 10, 14, 0.6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(226, 185, 119, 0.2);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.comparison-table th {
    padding: 20px 15px;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(226, 185, 119, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(226, 185, 119, 0.1);
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table .fa-star {
    color: #fbbf24;
    margin: 0 2px;
}

.cta-section {
    padding: 100px 0;
    background: rgba(8, 10, 14, 0.95);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 50%,
        transparent 100%
    );
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-whitish);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Responsive Design for Services Page */
@media (max-width: 968px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p {
        font-size: 1.1rem;
    }

    .service-detail h2 {
        font-size: 2rem;
    }

    .service-preview {
        flex-direction: column;
        padding: 40px 30px;
    }

    .service-detail-image {
        width: 100%;
        height: 250px;
    }

    .service-detail-inner {
        padding: 40px 30px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 120px 0 80px;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .service-detail h2 {
        font-size: 1.8rem;
    }

    .service-detail h3 {
        font-size: 1.5rem;
    }

    .service-preview {
        padding: 30px 20px;
    }

    .service-detail-image {
        height: 200px;
    }

    .service-detail-inner {
        padding: 30px 20px;
    }

    .service-preview-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ===================================
   How It Works Page Styling
   =================================== */
.how-intro {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0) 0%, rgba(8, 10, 14, 0.5) 100%);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 400;
}

.process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(8, 10, 14, 0.5) 100%);
}

.process-grid {
    display: grid;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.process-card {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.process-card-content {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-card-image {
    width: 400px;
    height: 100%;
    overflow: hidden;
}

.process-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--grey-dark), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-icon i {
    font-size: 3rem;
    color: var(--white);
}

.process-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.process-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    line-height: 1.7;
}

.process-list li i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 5px;
    font-size: 1rem;
}

/* How It Works Page Wrapper with Full Background Image */
.how-it-works-page-wrapper {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/BgHeroFinal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.how-it-works-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* How It Works Hero Section */
.how-it-works-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: transparent;
}

.how-it-works-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content-overlay {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-whitish);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(226, 185, 119, 0.5), 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-content-overlay p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* New Hero Section with Overlay Cards */
.how-it-works-hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(8, 10, 14, 0.5) 100%);
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/HowItWorksHero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.how-it-works-hero-new .container {
    position: relative;
    z-index: 2;
}

.hero-header-content {
    text-align: center;
    margin-bottom: 100px;
    grid-column: 1 / -1;
}

.hero-header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-whitish);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(226, 185, 119, 0.5), 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-header-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Three Step Cards Container */
.hero-steps-container {
    display: contents;
}

.how-it-works-hero-new .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hero-step-card {
    background: rgba(0, 0, 0, 0.85);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(226, 185, 119, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    justify-items: center;
}

.hero-step-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
}

.hero-step-card.active {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.4);
}

.hero-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}
.how-it-works-icon,.services-icon{
    background:none !important;
    box-shadow:none !important;
    border:2px solid var(--gold);
}

.hero-step-icon i {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.9);
}

.hero-step-card h3 {
    font-size: 1.5rem;
    color: var(--gold-whitish);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-step-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 80px;
}

.hero-learn-more {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-learn-more:hover {
    background: var(--gold);
    color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.5);
}

.hero-learn-more i {
    transition: transform 0.3s ease;
}

.hero-learn-more:hover i {
    transform: translateX(5px);
}

/* Accordion Content */
.hero-accordion-content {
    grid-column: 1 / -1;
    background: rgba(8, 10, 14, 0.95);
    border: 2px solid var(--gold);
    border-radius: 15px;
    margin-top: 0px;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.hero-accordion-content.active {
    max-height: 1000px;
    opacity: 1;
    padding: 40px;
}

.accordion-inner {
    max-width: 900px;
    margin: 0 auto;
}
.services-accordion-inner{
    max-width:100% !important;
}
.services-accordion-left-section {
    width: 50%;
    display: inline-grid;
    float: left;
}
.services-accordion-right-section {
    width: 50%;
    display: inline-grid;
    padding-left:30px;
}
.service-image{
    max-width:100%;
    height:auto
}
.accordion-inner h3 {
    font-size: 1.8rem;
    color: var(--gold-whitish);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.accordion-list li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.accordion-list li i {
    color: var(--gold);
    margin-top: 5px;
    flex-shrink: 0;
}

.accordion-info-box {
    background: rgba(226, 185, 119, 0.1);
    border: 1px solid rgba(226, 185, 119, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.accordion-info-box h4 {
    color: var(--gold-whitish);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-info-box h4 i {
    color: var(--gold);
}

.accordion-info-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Hero Section */
@media (max-width: 968px) {
    .how-it-works-hero-new {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .how-it-works-hero-new .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .hero-header-content {
        margin-bottom: 40px;
    }

    .hero-header-content h1 {
        font-size: 2rem;
    }

    .hero-header-content p {
        font-size: 1.1rem;
    }

    .hero-step-card {
        padding: 30px 25px;
    }

    .hero-step-card p {
        min-height: auto;
        font-size: 0.95rem;
    }

    .hero-step-card h3 {
        font-size: 1.3rem;
    }

    .hero-step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .hero-step-icon i {
        font-size: 1.8rem;
    }

    .hero-learn-more {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .hero-accordion-content.active {
        padding: 30px 20px;
    }

    .accordion-inner h3 {
        font-size: 1.5rem;
    }

    .accordion-list li {
        font-size: 1rem;
    }

    .accordion-info-box {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .how-it-works-hero-new {
        padding: 80px 0 40px;
    }

    .hero-header-content h1 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .hero-header-content p {
        font-size: 1rem;
    }

    .hero-header-content {
        margin-bottom: 30px;
    }

    .hero-step-card {
        padding: 25px 20px;
    }

    .hero-step-card h3 {
        font-size: 1.2rem;
    }

    .hero-step-icon {
        width: 60px;
        height: 60px;
    }

    .hero-step-icon i {
        font-size: 1.5rem;
    }

    .accordion-inner h3 {
        font-size: 1.3rem;
    }

    .accordion-list li {
        font-size: 0.95rem;
    }
}

/* Services Page Wrapper with Full Background Image */
.services-page-wrapper {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/BgHeroFinal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.services-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.services-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: transparent;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

/* New Services Hero Section with Overlay Cards (4 columns) */
.services-hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.services-hero-new .hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/HowItWorksHero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.services-hero-new .hero-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.services-hero-new .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.services-hero-new .hero-header-content {
    text-align: center;
    margin-bottom: 100px;
    grid-column: 1 / -1;
}

.services-hero-new .hero-header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-whitish);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(226, 185, 119, 0.5), 0 4px 8px rgba(0, 0, 0, 0.5);
}

.services-hero-new .hero-header-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive for Services - Tablet */
@media (max-width: 968px) {
    .services-hero-new {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .services-hero-new .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .services-hero-new .hero-header-content {
        margin-bottom: 40px;
    }

    .services-hero-new .hero-header-content h1 {
        font-size: 2rem;
    }

    .services-hero-new .hero-header-content p {
        font-size: 1.1rem;
    }
}

/* Responsive for Services - Mobile */
@media (max-width: 576px) {
    .services-hero-new {
        padding: 80px 0 40px;
    }

    .services-hero-new .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-hero-new .hero-header-content h1 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .services-hero-new .hero-header-content p {
        font-size: 1rem;
    }

    .services-hero-new .hero-header-content {
        margin-bottom: 30px;
    }
}

/* About Page Wrapper with Full Background Image */
.about-page-wrapper {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/BgHeroFinal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.about-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: transparent;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

/* FAQ Page Wrapper with Full Background Image */
.faq-page-wrapper {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/BgHeroFinal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.faq-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.faq-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: transparent;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

/* Founder Page Wrapper with Full Background Image */
.founder-page-wrapper {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/BgHeroFinal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.founder-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.founder-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: transparent;
}

.founder-hero .container {
    position: relative;
    z-index: 2;
}

/* Team Page Wrapper with Full Background Image */
.team-page-wrapper {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/BgHeroFinal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.team-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.team-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: transparent;
}

.team-hero .container {
    position: relative;
    z-index: 2;
}

/* Contact Page Wrapper with Full Background Image */
.contact-page-wrapper {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/BgHeroFinal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.contact-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: transparent;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

/* Transparent Glassmorphic Cards for Service Details */
.service-detail {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0) 0%, rgba(8, 10, 14, 0.5) 100%);
}

.service-detail.alternate {
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(8, 10, 14, 0) 100%);
}

.service-detail-grid {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    border: none;
    border-radius: 20px;
    background: rgba(8, 10, 14, 0.75);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(226, 185, 119, 0.15);
    overflow: hidden;
}

.service-detail-grid::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold-whitish) 35%,
        var(--gold-whitish-glow) 45%,
        var(--gold-whitish) 50%,
        var(--gold-whitish-glow) 55%,
        transparent 100%
    );
    background-size: 400% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    filter: drop-shadow(0 0 12px var(--gold-whitish-glow));
    animation: borderComet 4s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.service-preview-content h2,
.service-detail h2 {
    color: var(--gold-whitish);
}

.service-preview-content .service-intro,
.service-detail-inner p {
    color: rgba(255, 255, 255, 0.9);
}

.service-detail-inner h3,
.service-detail-inner h4 {
    color: var(--gold-light);
}

.service-detail-inner {
    background: transparent;
}

.service-benefits li {
    color: rgba(255, 255, 255, 0.9);
}

.service-benefits li i {
    color: var(--gold);
}

.service-info-box {
    background: rgba(226, 185, 119, 0.1);
    border-left: 4px solid var(--gold);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.service-info-box h4 {
    color: var(--gold-whitish);
    margin-bottom: 10px;
}

.service-info-box p {
    color: rgba(255, 255, 255, 0.85);
}

.service-learn-more {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold-whitish);
    transition: all 0.3s ease;
}

.service-learn-more:hover {
    background: rgba(226, 185, 119, 0.2);
    border-color: var(--gold-light);
    color: var(--gold-light);
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

/* Process Section with Gold Theme */
.process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.85) 0%, rgba(8, 10, 14, 0.95) 100%);
}

.process-section .section-header h2 {
    color: var(--gold-whitish);
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.what-is-section {
    padding: 80px 0;
     background: linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(8, 10, 14, 0.5) 100%);
}

.what-is-featured-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.what-is-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.what-is-content {
    max-width: 1000px;
    margin: 0 auto;
}

.what-is-content h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.what-is-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(8, 10, 14, 0.6);
    border: 2px solid rgba(226, 185, 119, 0.2);
    border-radius: 12px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(226, 185, 119, 0.3);
    border-color: var(--gold);
    background: rgba(8, 10, 14, 0.7);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: var(--gold-whitish);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.industry-section {
    padding: 80px 0;
     background: linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(8, 10, 14, 0.5) 100%);
}

.industry-section .section-header h2 {
    color: var(--gold-whitish);
}

.industry-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.industry-featured-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.industry-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.industry-card {
    padding: 45px;
    background: rgba(8, 10, 14, 0.6);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(226, 185, 119, 0.2);
    backdrop-filter: blur(5px);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
    border-color: var(--gold);
    background: rgba(8, 10, 14, 0.7);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.industry-icon i {
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.9);
}

.industry-card h3 {
    font-size: 1.5rem;
    color: var(--gold-whitish);
    margin-bottom: 15px;
}

.industry-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.why-choose-section {
    padding: 80px 0;
     background: linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(8, 10, 14, 0.5) 100%);
}

.why-choose-content h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.why-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 50px;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-feature {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(8, 10, 14, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(226, 185, 119, 0.2);
    transition: var(--transition);
}

.why-feature:hover {
    background: rgba(8, 10, 14, 0.7);
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(226, 185, 119, 0.3);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(226, 185, 119, 0.3);
}

.why-icon i {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.9);
}

.why-text h4 {
    font-size: 1.2rem;
    color: var(--gold-whitish);
    margin-bottom: 8px;
}

.why-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.faq-detailed {
    padding: 80px 0;
     background: linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(8, 10, 14, 0.5) 100%);
}

.faq-detailed .section-header h2 {
    color: var(--gold-whitish);
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.faq-detailed .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Page Styling */
.faq-page {
    padding: 80px 0;
    background: transparent;
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-intro p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.faq-intro a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.faq-intro a:hover {
    text-decoration: underline;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.pricing-list li {
    padding: 8px 25px;
    color: var(--gold-light);
    line-height: 1.7;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--accent-color);
}

/* Learn More Link */
.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 12px 25px;
    background: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.learn-more-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateX(5px);
}

.learn-more-link i {
    transition: var(--transition);
}

.learn-more-link:hover i {
    transform: translateX(3px);
}

/* Responsive Design for How It Works Page */
@media (max-width: 968px) {
    .process-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-card-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .process-card-image {
        width: 100%;
        height: 300px;
    }

    .process-icon {
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .intro-text {
        font-size: 1.1rem;
    }

    .process-content h3 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===================================
   Contact Page Styling
   =================================== */
.contact-section {
    padding: 80px 0;
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    color: var(--gold-whitish);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.contact-form-container > p,
.contact-info-container > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form {
    background: rgba(8, 10, 14, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(226, 185, 119, 0.2);
    backdrop-filter: blur(5px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gold-whitish);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(226, 185, 119, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-container {
    background: rgba(8, 10, 14, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(226, 185, 119, 0.2);
    backdrop-filter: blur(5px);
}

.contact-info-items {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(226, 185, 119, 0.2);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.9);
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--gold-whitish);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.contact-details a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-details a:hover {
    text-decoration: underline;
    color: var(--gold-whitish);
}

.availability {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-style: italic;
}

.social-section {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(226, 185, 119, 0.2);
}

.social-section h4 {
    font-size: 1.1rem;
    color: var(--gold-whitish);
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.social-links-large a:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.quick-links-section {
    padding: 80px 0;
    background: transparent;
}

.quick-links-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold-whitish);
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-link-card {
    background: rgba(8, 10, 14, 0.6);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(226, 185, 119, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
    border-color: var(--gold);
    background: rgba(8, 10, 14, 0.7);
}

.quick-link-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.quick-link-card h3 {
    font-size: 1.3rem;
    color: var(--gold-whitish);
    margin-bottom: 10px;
}

.quick-link-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-form,
    .contact-info-container {
        padding: 25px;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* The Dardini Experience Section */
.dardini-experience {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0) 0%, rgba(8, 10, 14, 0.5) 100%);
    overflow: visible;
    height: auto;
}

.dardini-experience .container {
    overflow: visible;
    height: auto;
    max-height: none;
}

.dardini-experience .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.dardini-experience .section-header h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.dardini-experience .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.experience-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.experience-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.experience-card {
    background: rgba(8, 10, 14, 0.6);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    border: 2px solid rgba(226, 185, 119, 0.2);
    backdrop-filter: blur(5px);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
    border-color: var(--gold);
    background: rgba(8, 10, 14, 0.7);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.experience-icon i {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.9);
}

.experience-card h3 {
    font-size: 1.4rem;
    color: var(--gold-whitish);
    margin-bottom: 15px;
}

.experience-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* About Difference Section */
.about-difference {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(8, 10, 14, 0) 100%);
}

.about-difference .difference-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.about-difference h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.difference-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.difference-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.difference-content p strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0) 0%, rgba(8, 10, 14, 0.5) 100%);
}

.values-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.values-section .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: rgba(8, 10, 14, 0.6);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-left: 5px solid var(--gold);
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(226, 185, 119, 0.2);
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
    border-color: var(--gold);
    background: rgba(8, 10, 14, 0.7);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--gold-whitish);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Why Started Section */
.why-started-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(8, 10, 14, 0) 100%);
}

.why-started-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--gold);
}

.why-started-content h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.why-started-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gold);
    margin-bottom: 25px;
}

.why-started-content p strong {
    color: var(--gold-whitish);
    font-weight: 600;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.cta-inline .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Team Preview Section */
.team-preview-section {
    padding: 80px 0;
    background: #ffffffbf;
}

.team-preview-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-preview-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.team-preview-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-preview-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.team-preview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.team-preview-content p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===================================
   FOUNDER PAGE STYLES
   =================================== */

/* Founder Intro Section */
.founder-intro-section {
    padding: 80px 0;
    background: transparent;
}

.founder-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.founder-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image-box {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    background: rgba(8, 10, 14, 0.6);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(226, 185, 119, 0.3);
    backdrop-filter: blur(5px);
}

.founder-image-box i {
    font-size: 6rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.founder-image-box p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-whitish);
    margin: 0;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.founder-intro-content h2 {
    font-size: 2.8rem;
    color: var(--gold-whitish);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.founder-title {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 25px;
}

.founder-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.founder-intro-text strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Racing Background Section */
.racing-background-section {
    padding: 80px 0;
    background: transparent;
}

.racing-background-section h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.racing-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.racing-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

/* Why Started Detailed Section */
.why-started-detailed-section {
    padding: 80px 0;
    background: transparent;
}

.why-started-detailed-section h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.why-started-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.why-started-card {
    background: rgba(8, 10, 14, 0.6);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(226, 185, 119, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.why-started-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
    border-color: var(--gold);
    background: rgba(8, 10, 14, 0.7);
}

.why-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.why-icon-large i {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.9);
}

.why-started-card h3 {
    font-size: 1.4rem;
    color: var(--gold-whitish);
    margin-bottom: 15px;
}

.why-started-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.solution-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.solution-content h3 {
    font-size: 1.6rem;
    color: var(--gold-whitish);
    margin-bottom: 20px;
    line-height: 1.4;
}

.solution-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gold-whitish);
}

/* Founder Difference Section */
.founder-difference-section {
    padding: 80px 0;
    background: transparent;
}

.founder-difference-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-difference-content h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.difference-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
}

.difference-principles {
    display: grid;
    gap: 35px;
    margin-bottom: 60px;
}

.principle-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: start;
    padding: 30px;
    background: rgba(8, 10, 14, 0.6);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(226, 185, 119, 0.2);
    border-left: 5px solid var(--gold);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.principle-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
    border-color: var(--gold);
    background: rgba(8, 10, 14, 0.7);
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.principle-icon i {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.9);
}

.principle-text h4 {
    font-size: 1.5rem;
    color: var(--gold-whitish);
    margin-bottom: 12px;
}

.principle-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.founder-quote {
    background: rgba(8, 10, 14, 0.7);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
    border: 2px solid var(--gold);
    text-align: center;
    position: relative;
    backdrop-filter: blur(5px);
}

.founder-quote blockquote {
    margin: 0;
    position: relative;
}

.founder-quote .fa-quote-left {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.founder-quote p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--gold-whitish);
    font-style: italic;
    margin-bottom: 20px;
}

.founder-quote footer {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

/* ===================================
   TEAM PAGE STYLES
   =================================== */

/* Team Intro Section */
.team-intro-section {
    padding: 80px 0;
    background: transparent;
}

.team-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.team-intro-content h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.team-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.team-mission {
    font-size: 1.3rem !important;
    color: var(--gold-light) !important;
    font-weight: 600;
    margin: 30px 0 !important;
}

/* Team Values Section */
.team-values-section {
    padding: 80px 0;
    background: transparent;
}

.team-values-section h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.team-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-value-card {
    background: rgba(8, 10, 14, 0.6);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    border: 2px solid rgba(226, 185, 119, 0.2);
    backdrop-filter: blur(5px);
}

.team-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
    border-color: var(--gold);
    background: rgba(8, 10, 14, 0.7);
}

.team-value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.team-value-icon i {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.9);
}

.team-value-card h3 {
    font-size: 1.3rem;
    color: var(--gold-whitish);
    margin-bottom: 15px;
}

.team-value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Team Members Section */
.team-members-section {
    padding: 80px 0;
    background: transparent;
}

.team-members-section h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.team-members-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-member-card {
    background: rgba(8, 10, 14, 0.6);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(226, 185, 119, 0.2);
    transition: var(--transition);
    display: flex;
    gap: 30px;
    align-items: start;
    backdrop-filter: blur(5px);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
    border-color: var(--gold);
    background: rgba(8, 10, 14, 0.7);
}

.team-member-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(8, 10, 14, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(226, 185, 119, 0.3);
}

.team-member-placeholder i {
    font-size: 3rem;
    color: var(--gold);
}

.team-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Shift Jason's photo down slightly */
.jason-photo {
    object-position: center 10%;
}

.team-member-info h3 {
    font-size: 1.5rem;
    color: var(--gold-whitish);
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Team Approach Section */
.team-approach-section {
    padding: 80px 0;
    background: transparent;
}

.team-approach-section h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.approach-content > p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
}

.approach-principles {
    display: grid;
    gap: 30px;
}

.approach-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: start;
    padding: 35px;
    background: rgba(8, 10, 14, 0.6);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(226, 185, 119, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.approach-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3);
    border-color: var(--gold);
    background: rgba(8, 10, 14, 0.7);
}

.approach-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.approach-text h4 {
    font-size: 1.4rem;
    color: var(--gold-whitish);
    margin-bottom: 12px;
}

.approach-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Join Team Section */
.join-team-section {
    padding: 80px 0;
    background: transparent;
}

.join-team-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.join-team-content h2 {
    font-size: 2.5rem;
    color: var(--gold-whitish);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.join-team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.join-team-content .btn {
    margin-top: 20px;
}

/* Responsive Design for About/Founder/Team Pages */
@media (max-width: 968px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .founder-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image-box {
        max-width: 250px;
    }

    .founder-image-box i {
        font-size: 4rem;
    }

    .why-started-grid {
        grid-template-columns: 1fr;
    }

    .difference-principles {
        gap: 25px;
    }

    .principle-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .principle-icon {
        margin: 0 auto;
    }

    .team-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-members-grid {
        grid-template-columns: 1fr;
    }

    .team-member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .approach-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .approach-number {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .experience-grid,
    .team-values-grid {
        grid-template-columns: 1fr;
    }

    .founder-intro-content h2 {
        font-size: 2rem;
    }

    .founder-quote {
        padding: 40px 25px;
    }

    .founder-quote p {
        font-size: 1.2rem;
    }

    .team-member-placeholder {
        width: 100px;
        height: 100px;
    }

    .team-member-placeholder i {
        font-size: 2.5rem;
    }
}

/* ===================================
   WordPress Navigation Button Fix
   =================================== */
/* Force pill-shaped button for Get Quote */
#navMenu li#menu-item-34 a,
#navMenu .btn-primary a,
.navbar .nav-menu li.btn-primary a {
    border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    border-top-left-radius: 50px !important;
    border-top-right-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
}

/* ===================================
   OTP Verification Modal
   =================================== */
.otp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.otp-modal.active {
    display: flex;
    opacity: 1;
}

.otp-modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.otp-modal.active .otp-modal-content {
    transform: scale(1);
}

.otp-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.otp-modal-header h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.otp-modal-header p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.otp-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otp-close:hover {
    color: var(--secondary-color);
}

.otp-section {
    margin-bottom: 25px;
}

#otpSection {
    display: none;
}

.otp-input-group {
    margin-bottom: 20px;
}

.otp-input-group label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.otp-input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.otp-input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

#otpInput {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-weight: 600;
}

.otp-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.otp-btn:hover:not(:disabled) {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.otp-timer {
    text-align: center;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.otp-resend {
    text-align: center;
    margin-top: 20px;
}

.otp-resend button {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition);
}

.otp-resend button:hover:not(:disabled) {
    color: var(--primary-color);
}

.otp-resend button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.otp-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: none;
}

.otp-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.otp-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive OTP Modal */
@media (max-width: 576px) {
    .otp-modal-content {
        padding: 30px 20px;
    }

    .otp-modal-header h2 {
        font-size: 1.5rem;
    }

    #otpInput {
        font-size: 1.2rem;
        letter-spacing: 0.3rem;
    }
}

/* ===================================
   Custom Alert Modal
   =================================== */
.custom-alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-alert-modal.active {
    opacity: 1;
    visibility: visible;
}

.custom-alert-content {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(45, 45, 45, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(232, 215, 174, 0.2),
        inset 0 1px 0 rgba(232, 215, 174, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: center;
}

.custom-alert-modal.active .custom-alert-content {
    transform: scale(1);
}

.alert-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(232, 215, 174, 0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.alert-close:hover {
    background: rgba(232, 215, 174, 0.2);
    color: var(--gold-whitish);
    transform: rotate(90deg);
}

.alert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.alert-icon.success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(25, 135, 84, 0.1) 100%);
    color: #28a745;
    border: 2px solid rgba(40, 167, 69, 0.3);
}

.alert-icon.error {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(200, 35, 51, 0.1) 100%);
    color: #dc3545;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.alert-icon.warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(232, 175, 0, 0.1) 100%);
    color: #ffc107;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.alert-icon.info {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(232, 215, 174, 0.1) 100%);
    color: var(--gold-whitish);
    border: 2px solid rgba(232, 215, 174, 0.3);
}

.alert-body {
    margin-bottom: 30px;
}

.alert-body h3 {
    color: var(--gold-whitish);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.alert-body p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.alert-ok-btn {
    width: 100%;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold-whitish) 0%, var(--gold-whitish-glow) 100%);
    border: none;
    border-radius: 12px;
    color: #070a0e;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.alert-ok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.alert-ok-btn:active {
    transform: translateY(0);
}

/* Responsive Alert Modal */
@media (max-width: 576px) {
    .custom-alert-content {
        padding: 30px 20px;
    }

    .alert-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .alert-body h3 {
        font-size: 1.5rem;
    }

    .alert-body p {
        font-size: 0.95rem;
    }

    .alert-ok-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ===================================
   Signature Tier Selection
   =================================== */
.tier-selection {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.tier-selection h3 {
    color: #333;
    font-weight: 600;
}

.tier-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.tier-option {
    position: relative;
    cursor: pointer;
    display: block;
}

.tier-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.tier-option .tier-content {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.tier-option:hover .tier-content {
    border-color: #2d8659;
    box-shadow: 0 4px 12px rgba(45, 134, 89, 0.15);
}

.tier-option input[type="radio"]:checked + .tier-content {
    border-color: #2d8659;
    background: linear-gradient(135deg, #f0fff4 0%, #e6f7ed 100%);
    box-shadow: 0 4px 12px rgba(45, 134, 89, 0.2);
}

.tier-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.tier-window {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.tier-price {
    font-size: 20px;
    font-weight: bold;
    color: #2d8659;
}

.tier-option input[type="radio"]:checked + .tier-content .tier-name {
    color: #2d8659;
}

/* Responsive */
@media (max-width: 768px) {
    .tier-options {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .tier-options {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Tier Selection Left (Below Video)
   =================================== */
.tier-selection-left {
    margin-top: 30px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(128, 128, 135, 0.6) 0%, rgba(59, 59, 66, 0.5) 50%, rgba(100, 100, 108, 0.6) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tier-selection-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tier-options-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.tier-card {
    position: relative;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

.tier-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tier-card-content {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tier-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #333, #666);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tier-card:hover .tier-card-content {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 1);
}

.tier-card:hover .tier-card-content::before {
    transform: scaleX(1);
}

.tier-card input[type="radio"]:checked + .tier-card-content {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.tier-card input[type="radio"]:checked + .tier-card-content::before {
    transform: scaleX(1);
}

.tier-card-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.tier-card-window {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}

.tier-card-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.tier-card input[type="radio"]:checked + .tier-card-content .tier-card-name {
    color: #000;
}

/* Proceed to Checkout Button */
.btn-proceed-checkout {
    width: 100%;
    padding: 16px 32px;
    background: #000;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-proceed-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #1a252f, #2c3e50);
}

.btn-proceed-checkout:active {
    transform: translateY(0);
}

.btn-proceed-checkout i {
    font-size: 1.2rem;
}

/* Responsive for tier cards */
@media (max-width: 968px) {
    .tier-options-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tier-selection-left {
        padding: 20px;
    }

    .tier-options-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tier-selection-title {
        font-size: 1.25rem;
    }

    .btn-proceed-checkout {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* ===================================
   WooCommerce Checkout Styling
   =================================== */

/* Main checkout page background */
body.woocommerce-checkout,
body.woocommerce-cart {
    background: #0a0a0a url('../img/BgHeroFinal.webp') no-repeat center center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    position: relative;
}

body.woocommerce-checkout::before,
body.woocommerce-cart::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

/* Container styling */
.woocommerce-checkout .container,
.woocommerce-cart .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Entry content needs to be full width */
.woocommerce-checkout .entry-content {
    width: 100% !important;
    max-width: 100% !important;
}

/* Main checkout form - Use flexbox for simpler layout */
form.checkout.woocommerce-checkout {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    align-items: flex-start !important;
}

/* Two column wrapper - left side (58% width) */
.col2-set {
    flex: 0 0 calc(58% - 15px) !important;
    width: calc(58% - 15px) !important;
    display: block !important;
}

/* Customer details */
#customer_details {
    display: block !important;
    width: 100% !important;
}

.col2-set .col-1,
.col2-set .col-2 {
    width: 100% !important;
    display: block !important;
    margin-bottom: 0 !important;
}

/* Order review heading - hide and add as ::before */
#order_review_heading {
    display: none !important;
}

/* Order review section - right column with heading */
#order_review {
    flex: 0 0 calc(40% - 15px) !important;
    width: calc(40% - 15px) !important;
    position: sticky !important;
    top: 160px !important;
    align-self: flex-start !important;
}

/* Add "Your order" heading before order review */
#order_review::before {
    content: "Your order" !important;
    display: block !important;
    color: var(--white) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
}

/* Entry content wrapper */
.woocommerce-checkout .entry-content,
.woocommerce-cart .entry-content {
    background: transparent !important;
}

/* Container */
.woocommerce-checkout .container,
.woocommerce-cart .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Page title */
.woocommerce-checkout .entry-title,
.woocommerce-cart .entry-title {
    color: var(--white) !important;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Checkout container */
.woocommerce .woocommerce-checkout-payment,
.woocommerce form.checkout,
.woocommerce-page form.checkout {
    background: transparent;
}

/* Main form sections with glassmorphic design */
.woocommerce-billing-fields,
.woocommerce-additional-fields,
#order_review,
.col-1,
.col-2 {
    background: rgba(8, 10, 14, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    border: 2px solid rgba(226, 185, 119, 0.3) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.woocommerce-billing-fields:hover,
.woocommerce-additional-fields:hover,
#order_review:hover,
.col-1:hover,
.col-2:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3) !important;
}

/* Section headings - Gold accents */
.woocommerce h3,
.woocommerce-checkout h3 {
    color: var(--gold-whitish);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

/* Form labels - Match address-details styling */
.woocommerce form .form-row label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

/* Form inputs - Match address-details form styling */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    background: rgba(20, 20, 25, 0.7) !important;
    border: 2px solid rgba(226, 185, 119, 0.3) !important;
    border-radius: 12px !important;
    color: var(--white) !important;
    padding: 14px 18px !important;
    font-size: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
    background: rgba(20, 20, 25, 0.85) !important;
    border-color: var(--gold) !important;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2),
                0 0 0 3px rgba(226, 185, 119, 0.15),
                0 0 20px rgba(226, 185, 119, 0.3) !important;
    outline: none !important;
}

.woocommerce form .form-row input.input-text:hover,
.woocommerce form .form-row select:hover,
.woocommerce form .form-row textarea:hover {
    border-color: var(--gold) !important;
    background: rgba(20, 20, 25, 0.8) !important;
}

.woocommerce form .form-row input::placeholder,
.woocommerce form .form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* Select dropdowns */
.woocommerce form .form-row select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.woocommerce form .form-row select option {
    background: var(--secondary-color);
    color: var(--white);
}

/* Order review table */
.woocommerce table.shop_table {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 2px solid rgba(226, 185, 119, 0.2);
    overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(226, 185, 119, 0.2);
    padding: 15px;
}

.woocommerce table.shop_table thead th {
    background: rgba(0, 0, 0, 0.5);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--gold-whitish);
}

.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
    border-top: 2px solid var(--gold);
    font-weight: 600;
}

.woocommerce table.shop_table .order-total th,
.woocommerce table.shop_table .order-total td {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

/* Product name and meta */
.woocommerce-checkout-review-order-table .product-name {
    font-weight: 600;
}

.woocommerce-checkout-review-order-table .product-name .variation,
.woocommerce-checkout-review-order-table .product-name dl {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
}

.woocommerce-checkout-review-order-table .product-name dl dt {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.woocommerce-checkout-review-order-table .product-name dl dd {
    margin-left: 0;
    padding-left: 10px;
    color: var(--white);
}

/* Payment methods */
.woocommerce-checkout #payment {
    background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: none;
    background: transparent;
    padding: 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(226, 185, 119, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
    transition: all 0.3s ease;
}

.woocommerce-checkout #payment ul.payment_methods li:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.woocommerce-checkout #payment ul.payment_methods li.payment_method_selected {
    background: rgba(226, 185, 119, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3);
}

.woocommerce-checkout #payment ul.payment_methods li label {
    color: var(--gold-whitish);
    font-weight: 600;
    font-size: 1.1rem;
}

.woocommerce-checkout #payment div.payment_box {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(226, 185, 119, 0.2);
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: rgba(0, 0, 0, 0.5);
}

/* Place order button */
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(226, 185, 119, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-whitish));
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(226, 185, 119, 0.7);
}

.woocommerce #payment #place_order:active {
    transform: translateY(0);
}

/* Terms and conditions */
.woocommerce-terms-and-conditions-wrapper {
    margin: 20px 0;
}

.woocommerce-privacy-policy-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.woocommerce form.checkout .form-row.terms {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.woocommerce form.checkout .form-row.terms label {
    color: rgba(255, 255, 255, 0.9);
}

/* Checkboxes and radio buttons */
.woocommerce input[type="checkbox"],
.woocommerce input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

/* Required field asterisk */
.woocommerce form .form-row .required {
    color: #ff6b6b;
    font-weight: 700;
}

/* Inline validation errors */
.woocommerce form .form-row.woocommerce-invalid label {
    color: #ff6b6b !important;
}

.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
    border-color: #ff6b6b !important;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
    border-color: #ff6b6b !important;
}

/* Validation error message */
.woocommerce form .form-row .woocommerce-invalid-required-field {
    color: #ff6b6b !important;
    font-size: 0.9rem !important;
    margin-top: 5px !important;
}

/* Error messages */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
    background: rgba(8, 10, 14, 0.9) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    margin-bottom: 20px !important;
    border: 2px solid !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

.woocommerce .woocommerce-error {
    border-color: #ff6b6b !important;
    background: rgba(139, 0, 0, 0.2) !important;
}

.woocommerce .woocommerce-error a {
    color: var(--gold) !important;
    text-decoration: underline !important;
}

.woocommerce .woocommerce-info {
    border-color: var(--gold) !important;
    background: rgba(226, 185, 119, 0.1) !important;
}

.woocommerce .woocommerce-message {
    border-color: #4caf50 !important;
    background: rgba(76, 175, 80, 0.2) !important;
}

/* Cart totals in sidebar */
.woocommerce-checkout .cart-collaterals {
    width: 100%;
}

/* Form field wrapper */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
    display: block !important;
    width: 100% !important;
}

/* Form rows */
.woocommerce form .form-row {
    width: 100% !important;
    margin-bottom: 20px !important;
    display: block !important;
}

/* Half-width form rows */
.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
    width: 48% !important;
    display: inline-block !important;
    vertical-align: top !important;
}

.woocommerce form .form-row-first {
    margin-right: 4% !important;
}

/* Wide form rows */
.woocommerce form .form-row-wide {
    width: 100% !important;
    display: block !important;
    clear: both !important;
}

/* Mobile: Stack everything */
@media (max-width: 767px) {
    form.checkout.woocommerce-checkout {
        display: block !important;
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "customer"
            "order-heading"
            "order-review" !important;
    }

    #order_review {
        position: relative !important;
        top: auto !important;
    }

    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last {
        width: 100% !important;
        margin-right: 0 !important;
    }
}

/* Mobile responsive */
@media (max-width: 767px) {
    .woocommerce-billing-fields,
    .woocommerce-additional-fields,
    .woocommerce-checkout-review-order {
        padding: 20px;
    }

    .woocommerce h3,
    .woocommerce-checkout h3 {
        font-size: 1.2rem;
    }

    .woocommerce #payment #place_order,
    .woocommerce-page #payment #place_order {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Loading state */
.woocommerce .blockUI.blockOverlay {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(5px);
}

.woocommerce .blockUI.blockOverlay::before {
    color: white !important;
}

/* Coupon form */
.woocommerce-form-coupon-toggle,
.woocommerce-form-login-toggle {
    background: transparent !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
}

.woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-form-login-toggle .woocommerce-info {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-form-coupon-toggle .woocommerce-info a,
.woocommerce-form-login-toggle .woocommerce-info a {
    color: var(--gold) !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

.woocommerce-form-coupon-toggle .woocommerce-info a:hover,
.woocommerce-form-login-toggle .woocommerce-info a:hover {
    color: var(--gold-whitish) !important;
}

.woocommerce form.checkout_coupon {
    background: rgba(8, 10, 14, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    border: 2px solid rgba(226, 185, 119, 0.3) !important;
}

.woocommerce form.checkout_coupon input[type="text"] {
    background: rgba(20, 20, 25, 0.7) !important;
    border: 2px solid rgba(226, 185, 119, 0.3) !important;
    color: var(--white) !important;
    padding: 12px 15px !important;
    border-radius: 12px !important;
}

.woocommerce form.checkout_coupon input[type="text"]:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3) !important;
}

.woocommerce form.checkout_coupon button {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    color: rgba(0, 0, 0, 0.9) !important;
    border: 2px solid var(--gold) !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3) !important;
}

.woocommerce form.checkout_coupon button:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-whitish)) !important;
    box-shadow: 0 0 30px rgba(226, 185, 119, 0.5) !important;
}

/* Order received / Thank you page */
.woocommerce-order-received .woocommerce-order {
    background: linear-gradient(135deg, rgba(108, 108, 111, 0.7) 0%, rgba(39, 39, 46, 0.65) 50%, rgba(80, 80, 88, 0.7) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.woocommerce-order-received .woocommerce-notice {
    background: rgba(76, 175, 80, 0.2);
    border-left-color: #4caf50;
    color: var(--white);
}

.woocommerce-order-received .woocommerce-order-overview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.woocommerce-order-received .woocommerce-order-overview li {
    color: var(--white);
    border-right-color: rgba(255, 255, 255, 0.2);
}

/* ===================================
   WooCommerce Blocks Checkout Styling
   =================================== */

/* Force dark background on entire page - matches other pages */
body.woocommerce-checkout,
body.woocommerce-checkout .site,
body.woocommerce-checkout .site-content,
body.woocommerce-checkout .content-area,
body.woocommerce-checkout main,
body.woocommerce-checkout article,
body.woocommerce-checkout .entry-content {
    background: #0a0a0a url('../img/BgHeroFinal.webp') no-repeat center center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
}

/* Block checkout container */
.wp-block-woocommerce-checkout {
    background: transparent !important;
    padding: 40px 20px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

/* Blocks: Billing, Additional, Order Summary */
.wp-block-woocommerce-checkout-billing-block,
.wp-block-woocommerce-checkout-contact-information-block,
.wp-block-woocommerce-checkout-shipping-address-block,
.wp-block-woocommerce-checkout-additional-information-block,
.wp-block-woocommerce-checkout-order-summary-block {
    background: rgba(8, 10, 14, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    border: 2px solid rgba(226, 185, 119, 0.3) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.wp-block-woocommerce-checkout-billing-block:hover,
.wp-block-woocommerce-checkout-contact-information-block:hover,
.wp-block-woocommerce-checkout-shipping-address-block:hover,
.wp-block-woocommerce-checkout-additional-information-block:hover,
.wp-block-woocommerce-checkout-order-summary-block:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 8px 30px rgba(226, 185, 119, 0.3) !important;
}

/* Block headings */
.wp-block-woocommerce-checkout h2,
.wp-block-woocommerce-checkout h3,
.wc-block-components-checkout-step__title {
    color: var(--gold-whitish) !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid var(--gold) !important;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3) !important;
}

/* Block form fields */
.wc-block-components-text-input,
.wc-block-components-select,
.wc-block-components-textarea,
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-textarea textarea {
    background: rgba(20, 20, 25, 0.6) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
    padding: 12px 15px !important;
    border-radius: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.wc-block-components-text-input:focus,
.wc-block-components-select:focus,
.wc-block-components-textarea:focus,
.wc-block-components-text-input input:focus,
.wc-block-components-select select:focus,
.wc-block-components-textarea textarea:focus {
    background: rgba(25, 25, 30, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.8) !important;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    outline: none !important;
}

/* Block labels */
.wc-block-components-text-input label,
.wc-block-components-select label,
.wc-block-components-textarea label,
.wc-block-checkout__label,
.wc-block-checkout-form label,
.wc-block-components-checkbox label {
    color: var(--white) !important;
    font-weight: 500 !important;
}

/* All text elements in blocks */
.wp-block-woocommerce-checkout p,
.wp-block-woocommerce-checkout span,
.wp-block-woocommerce-checkout div,
.wc-block-components-panel__content {
    color: var(--white) !important;
}

/* Input field wrappers */
.wc-block-components-text-input-wrapper,
.wc-block-components-combobox-wrapper,
.wc-block-components-select-wrapper {
    background: transparent !important;
}

/* All input fields */
.wp-block-woocommerce-checkout input[type="text"],
.wp-block-woocommerce-checkout input[type="email"],
.wp-block-woocommerce-checkout input[type="tel"],
.wp-block-woocommerce-checkout input[type="number"],
.wp-block-woocommerce-checkout select,
.wp-block-woocommerce-checkout textarea {
    background: rgba(20, 20, 25, 0.7) !important;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(226, 185, 119, 0.3) !important;
    color: var(--white) !important;
    padding: 12px 15px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.wp-block-woocommerce-checkout input[type="text"]:focus,
.wp-block-woocommerce-checkout input[type="email"]:focus,
.wp-block-woocommerce-checkout input[type="tel"]:focus,
.wp-block-woocommerce-checkout input[type="number"]:focus,
.wp-block-woocommerce-checkout select:focus,
.wp-block-woocommerce-checkout textarea:focus {
    background: rgba(20, 20, 25, 0.85) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(226, 185, 119, 0.15), 0 0 20px rgba(226, 185, 119, 0.3) !important;
    outline: none !important;
}

/* Placeholder text */
.wp-block-woocommerce-checkout input::placeholder,
.wp-block-woocommerce-checkout textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Validation errors for blocks */
.wc-block-components-validation-error,
.wc-block-components-text-input.has-error .wc-block-components-text-input__error,
.wc-block-components-combobox.has-error .wc-block-components-validation-error {
    color: #ff6b6b !important;
    font-size: 0.9rem !important;
    margin-top: 5px !important;
}

.wc-block-components-text-input.has-error input,
.wc-block-components-select.has-error select,
.wc-block-components-textarea.has-error textarea,
.has-error input,
.has-error select,
.has-error textarea {
    border-color: #ff6b6b !important;
}

/* Coupon toggle */
.wc-block-components-totals-coupon {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
}

.wc-block-components-totals-coupon button,
.wc-block-components-button {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    color: rgba(0, 0, 0, 0.9) !important;
    border: 2px solid var(--gold) !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3) !important;
}

.wc-block-components-totals-coupon button:hover,
.wc-block-components-button:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-whitish)) !important;
    box-shadow: 0 0 30px rgba(226, 185, 119, 0.5) !important;
}

/* Order summary table */
.wc-block-components-order-summary,
.wc-block-components-order-summary-item {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(226, 185, 119, 0.2) !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.wc-block-components-order-summary-item__quantity,
.wc-block-components-order-summary-item__total-price,
.wc-block-components-product-name {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Totals */
.wc-block-components-totals-item {
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(226, 185, 119, 0.2) !important;
}

.wc-block-components-totals-footer-item {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: var(--gold) !important;
    text-shadow: 0 0 20px rgba(226, 185, 119, 0.3) !important;
}

/* Payment methods */
.wc-block-components-radio-control__option {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(226, 185, 119, 0.2) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-radio-control__option:hover {
    border-color: var(--gold) !important;
    background: rgba(0, 0, 0, 0.4) !important;
}

.wc-block-components-radio-control__option.is-selected {
    background: rgba(226, 185, 119, 0.15) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 20px rgba(226, 185, 119, 0.3) !important;
}

.wc-block-components-radio-control__label {
    color: var(--gold-whitish) !important;
}

/* Place order button */
.wc-block-components-checkout-place-order-button,
.wc-block-components-button.contained {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    color: rgba(0, 0, 0, 0.9) !important;
    border: 2px solid var(--gold) !important;
    border-radius: 50px !important;
    padding: 18px 40px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 0 30px rgba(226, 185, 119, 0.5) !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button.contained:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-whitish)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

/* Notice/Alert boxes */
.wc-block-components-notice-banner {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    margin-bottom: 20px !important;
}

.wc-block-components-notice-banner.is-error {
    border-left: 4px solid #f44336 !important;
    background: rgba(255, 235, 238, 0.95) !important;
}

.wc-block-components-notice-banner.is-info {
    border-left: 4px solid #2196f3 !important;
    background: rgba(227, 242, 253, 0.95) !important;
}

/* Loading spinner */
.wc-block-components-spinner {
    color: var(--white) !important;
}

/* Responsive grid for blocks */
@media (min-width: 768px) {
    .wp-block-woocommerce-checkout {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    .wp-block-woocommerce-checkout-order-summary-block {
        grid-column: 2 !important;
        grid-row: 1 / 4 !important;
        position: sticky !important;
        top: 160px !important;
    }
}

/* Additional comprehensive styling for all blocks elements */
.wc-block-checkout__form,
.wc-block-checkout__contact-fields,
.wc-block-checkout__shipping-fields,
.wc-block-checkout__billing-fields,
.wc-block-checkout__additional-fields,
.wc-block-components-checkout-step,
.wc-block-components-panel,
.wc-block-components-panel__content {
    color: var(--white) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Form field containers */
.wc-block-components-text-input,
.wc-block-components-select,
.wc-block-components-textarea,
.wc-block-components-combobox {
    width: 100% !important;
    display: block !important;
    margin-bottom: 20px !important;
}

/* Input wrappers need full width */
.wc-block-components-text-input__wrapper,
.wc-block-components-select__wrapper {
    width: 100% !important;
    display: block !important;
}

/* Step headers and titles */
.wc-block-components-checkout-step__heading,
.wc-block-components-checkout-step__title,
.wc-block-components-panel__title {
    color: var(--white) !important;
    font-weight: 700 !important;
}

/* Form rows */
.wc-block-components-address-form,
.wc-block-components-address-form__address_1,
.wc-block-components-address-form__address_2,
.wc-block-components-address-form__city,
.wc-block-components-address-form__state,
.wc-block-components-address-form__postcode,
.wc-block-components-address-form__country {
    background: transparent !important;
    width: 100% !important;
}

/* Address form container */
.wc-block-components-address-form {
    display: block !important;
    width: 100% !important;
}

/* Form field row */
.wc-block-components-address-form .wc-block-components-form-row {
    width: 100% !important;
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
}

.wc-block-components-form-row {
    width: 100% !important;
    margin-bottom: 20px !important;
}

/* Half width fields in same row */
.wc-block-components-address-form .wc-block-components-form-row > div {
    flex: 1 !important;
    min-width: 0 !important;
}

/* Checkbox styling */
.wc-block-components-checkbox input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px !important;
    cursor: pointer !important;
    accent-color: #2c3e50 !important;
}

/* Required asterisk */
.wc-block-components-text-input .required,
.wc-block-components-required-field-notice {
    color: #ff6b6b !important;
}

/* Select dropdown arrow */
.wc-block-components-select select {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 35px !important;
}

/* Express payment buttons container */
.wc-block-components-express-payment,
.wc-block-components-express-payment__content {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
}

/* Cart line items */
.wc-block-components-order-summary-item__image,
.wc-block-components-order-summary-item__description {
    background: transparent !important;
}

.wc-block-components-order-summary-item__description .wc-block-components-product-name,
.wc-block-components-order-summary-item__quantity {
    color: var(--white) !important;
}

/* Shipping options */
.wc-block-components-radio-control-accordion-option {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin-bottom: 10px !important;
}

/* Validation errors */
.wc-block-components-validation-error {
    color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.1) !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    margin-top: 8px !important;
}

/* Country/State combobox */
.wc-block-components-combobox {
    background: rgba(20, 20, 25, 0.6) !important;
}

.wc-block-components-combobox input {
    background: transparent !important;
    color: var(--white) !important;
}

.wc-block-components-combobox-control__listbox {
    background: rgba(20, 20, 25, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) !important;
}

.wc-block-components-combobox-control__option {
    color: var(--white) !important;
    padding: 10px !important;
}

.wc-block-components-combobox-control__option:hover,
.wc-block-components-combobox-control__option.is-selected {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Privacy policy */
.wc-block-checkout__privacy-policy {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
}

.wc-block-checkout__privacy-policy a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: underline !important;
}

/* Terms and conditions */
.wc-block-checkout__terms {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
}

.wc-block-checkout__terms .wc-block-components-checkbox__label {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Payment method icons */
.wc-block-components-payment-method-icon {
    filter: brightness(0.9) !important;
}

/* Additional fields textarea */
.wc-block-components-textarea textarea {
    min-height: 100px !important;
    resize: vertical !important;
}

/* Coupon input */
.wc-block-components-totals-coupon__input input {
    background: rgba(20, 20, 25, 0.6) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Applied coupon */
.wc-block-components-chip {
    background: rgba(76, 175, 80, 0.2) !important;
    color: var(--white) !important;
    border: 1px solid rgba(76, 175, 80, 0.3) !important;
}

/* Sidebar */
.wp-block-woocommerce-checkout-order-summary-cart-items-block,
.wp-block-woocommerce-checkout-order-summary-coupon-form-block,
.wp-block-woocommerce-checkout-order-summary-subtotal-block,
.wp-block-woocommerce-checkout-order-summary-fee-block,
.wp-block-woocommerce-checkout-order-summary-discount-block,
.wp-block-woocommerce-checkout-order-summary-shipping-block,
.wp-block-woocommerce-checkout-order-summary-taxes-block {
    color: var(--white) !important;
}

/* Make all block text white by default */
.wp-block-woocommerce-checkout * {
    color: var(--white) !important;
}

/* Override for buttons to keep their gradient */
.wc-block-components-button * {
    color: white !important;
}
