:root {
    /* Light Theme Palette */
    --bg-light: #ffffff;
    --bg-light-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f5f5f5;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-cyan: #00a8cc;
    --accent-blue: #0066ff;
    --accent-gradient: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    --border-light: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.08);

    /* Premium / Luxury Palette */
    --premium-black: #0a0a0a;
    --premium-dark: #121212;
    --premium-gold: #d4af37;
    --premium-gold-gradient: linear-gradient(135deg, #d4af37, #f2d06b, #d4af37);
    --premium-silver: #e0e0e0;
    --premium-border: rgba(212, 175, 55, 0.3);
    --glass-dark: rgba(20, 20, 20, 0.8);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 242, 255, 0.1);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px var(--shadow-light);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--accent-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation Toggle - Modern Burger Icon */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 12px;
    cursor: pointer;
    background: var(--accent-cyan);
    border: none;
    border-radius: 12px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 168, 204, 0.3);
}

.nav-toggle:hover {
    background: var(--accent-blue);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
}

/* Hide the Font Awesome icon, use custom bars */
.nav-toggle i {
    display: none;
}

/* Custom hamburger bars */
.nav-toggle::before,
.nav-toggle::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    left: 13px;
}

.nav-toggle::before {
    top: 14px;
    box-shadow: 0 9px 0 white;
}

.nav-toggle::after {
    bottom: 14px;
}

/* Animated X when active */
.nav-toggle.active::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: none;
}

.nav-toggle.active::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav-toggle.active {
    background: #ff4757;
}

/* Mobile Menu Responsive Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: #ffffff !important;
        /* Force white background */
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 0;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 999;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: left;
        margin-bottom: 0;
        padding: 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        padding: 18px 30px;
        font-size: 1.05rem;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
        color: #1a1a1a !important;
        /* Force dark text */
        background: white;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: var(--accent-cyan);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        transform: scaleY(1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(90deg, rgba(0, 168, 204, 0.08), transparent);
        color: var(--accent-cyan) !important;
        padding-left: 35px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1503376763036-066120622c74?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero-content {
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-size: 5rem;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Features Grid */
.features {
    padding: 100px 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Services Section */
.services-preview {
    padding: 100px 0;
    background: #0f0f0f;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--accent-cyan);
}

.section-header p {
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

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

.service-image {
    height: 200px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #333;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--bg-card));
}

.service-content {
    padding: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.service-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 15px;
}

/* Tech Specs Section (New) */
.tech-specs {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-attachment: fixed;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.tech-item h3 {
    font-size: 3.5rem;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.tech-item p {
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    color: var(--accent-cyan);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #fff;
}

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

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.contact-info li {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
}

.contact-info li i {
    color: var(--accent-cyan);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
/* =========================================
   New Premium Styles (About, Services, Contact)
   ========================================= */

/* Text Utilities */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-light-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-cyan {
    color: var(--accent-cyan);
}

.bg-dark-2 {
    background-color: #0f0f0f;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: radial-gradient(circle at top center, #1a1a1a, #000);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: var(--accent-blue);
    filter: blur(150px);
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* About Page Styles */
.story-image-wrapper {
    position: relative;
    padding: 20px;
}

.glow-box {
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
    border: 1px solid var(--glass-border);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.vm-card .icon-box {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3px;
    /* For gradient border effect */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    background: var(--accent-gradient);
}

.card-inner {
    background: #111;
    height: 100%;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: background 0.3s;
}

.value-card:hover .card-inner {
    background: #0a0a0a;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

/* Services Page Styles */
.tech-list {
    list-style: none;
    margin-top: 30px;
}

.tech-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.layer-stack {
    position: relative;
    height: 300px;
    width: 100%;
    perspective: 1000px;
    margin-top: 50px;
}

.layer {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 242, 255, 0.1);
    border: 2px solid var(--accent-cyan);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    transition: 0.5s;
}

.layer:hover {
    background: rgba(0, 242, 255, 0.3);
}

.l1 {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg) translateZ(100px);
}

.l2 {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg) translateZ(50px);
}

.l3 {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg) translateZ(0px);
    background: rgba(0, 102, 255, 0.3);
    border-color: var(--accent-blue);
}

.l4 {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg) translateZ(-50px);
}

.l5 {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg) translateZ(-100px);
}

/* Opacity Cards */
.opacity-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.opacity-visual {
    height: 150px;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

.opacity-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    border-radius: 10px;
}

.opacity-card.dark .opacity-visual::after {
    opacity: 0.85;
}

.opacity-card.medium .opacity-visual::after {
    opacity: 0.5;
}

.opacity-card.light .opacity-visual::after {
    opacity: 0.2;
}

.vlt-badge {
    display: inline-block;
    background: var(--accent-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin: 10px 0;
    font-size: 0.9rem;
}

/* Pricing Tables */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.pricing-table th {
    background: transparent;
    color: var(--text-secondary);
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-table td {
    background: var(--bg-card);
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.pricing-table td:first-child {
    border-left: 1px solid var(--glass-border);
    border-radius: 10px 0 0 10px;
}

.pricing-table td:last-child {
    border-right: 1px solid var(--glass-border);
    border-radius: 0 10px 10px 0;
    font-weight: bold;
    color: var(--accent-cyan);
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-gradient);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.8rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 20px 0;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--accent-cyan);
    border: 2px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--glass-border);
    position: relative;
    top: -40px;
    z-index: 1;
    display: none;
    /* Hidden on mobile, shown on desktop via media query */
}

@media (min-width: 768px) {
    .step-line {
        display: block;
    }
}

/* Membership Cards */
.membership-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--accent-cyan);
    filter: blur(80px);
    opacity: 0.1;
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.benefits-list li::before {
    content: '•';
    color: var(--accent-cyan);
    position: absolute;
    left: 0;
}

/* Contact Page Styles */
.glass-card-large {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.contact-info-panel {
    padding: 60px;
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.contact-form-panel {
    padding: 60px;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 20px;
}

.form-control-custom {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    padding: 15px 0;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.form-control-custom:focus+label,
.form-control-custom:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--accent-cyan);
}

.form-floating-custom label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-secondary);
    pointer-events: none;
    transition: 0.3s;
}

.glow-btn {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

/* Before/After Slider Component */
.ba-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    cursor: col-resize;
}

.ba-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-before {
    width: 50%;
    /* Initial position */
    border-right: 3px solid #fff;
    z-index: 2;
}

.ba-after {
    z-index: 1;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    /* Let click pass through to slider */
}

.ba-handle i {
    color: #000;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 4;
}

.ba-label.before {
    left: 20px;
}

.ba-label.after {
    right: 20px;
}

/* Section Padding Utility */
.section-padding {
    padding: 100px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    /* Prevent layout overflow */
    * {
        max-width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* Typography - Better readability on mobile */
    body {
        font-size: 16px;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-title span {
        font-size: 2.5rem;
    }

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

    h1 {
        font-size: 2rem;
        word-wrap: break-word;
    }

    h2 {
        font-size: 1.6rem;
        word-wrap: break-word;
    }

    h3 {
        font-size: 1.3rem;
        word-wrap: break-word;
    }

    /* Container & Spacing */
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section-padding,
    .features,
    .services-preview,
    .tech-specs {
        padding: 60px 0;
    }

    /* Hero adjustments */
    .hero {
        padding-top: var(--header-height);
        min-height: 100vh;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    /* Buttons - Larger touch targets */
    .btn {
        padding: 15px 35px;
        font-size: 1rem;
        min-height: 44px;
        width: 100%;
        max-width: 300px;
    }

    /* Grid Layouts */
    .features-grid,
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .service-card,
    .value-card {
        padding: 30px 20px;
        margin: 0;
    }

    /* Contact & Forms */
    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 20px;
    }

    /* Tables */
    .pricing-table {
        display: block;
        overflow-x: auto;
        font-size: 0.9rem;
    }

    /* Process Steps */
    .process-steps {
        flex-direction: column;
    }

    .step {
        width: 100%;
        margin-bottom: 30px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

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

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.95rem;
    }

    /* Support Widget */
    .support-widget {
        bottom: 80px;
        right: 15px;
    }

    .support-toggle {
        width: 50px;
        height: 50px;
    }

    /* Navbar Mobile Fix */
    .navbar {
        padding: 0;
    }

    .nav-wrapper {
        padding: 0 15px;
        width: 100%;
    }

    /* Process Step Cards - Mobile Fix */
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .process-step-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left !important;
        padding: 25px 20px;
    }

    .step-number {
        position: relative;
        margin: 0 20px 0 0;
        flex-shrink: 0;
        order: 1;
    }

    .step-icon {
        position: absolute !important;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        margin: 0 !important;
        opacity: 0.15;
        font-size: 3rem !important;
    }

    .process-step-card h5,
    .process-step-card p {
        text-align: left;
        margin-left: 0;
    }

    .process-step-card h5 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .process-step-card p {
        font-size: 0.9rem;
    }

    /* Info Pills - Mobile Fix (Footer 2-column sections) */
    .info-pill-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .info-pill {
        padding: 15px 20px;
        text-align: left;
    }

    .info-pill h5 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .info-pill p {
        font-size: 0.85rem;
    }
}

/* =========================================
   Premium Promotional Banner (Gold Edition)
   ========================================= */
.promo-banner.premium-gold {
    background: #000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: none;
}

.promo-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1), transparent 50%),
        url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    /* Subtle texture */
    z-index: 0;
}

.promo-glass-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Gold border */
    border-radius: 30px;
    padding: 50px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.promo-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.promo-label span {
    color: #d4af37;
    /* Gold color */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.text-gold {
    color: #d4af37;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #d4af37, #f9e394, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.promo-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-desc {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 90%;
}

.promo-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
}

/* Right Side - Discount Circle */
.discount-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b48e18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.discount-circle::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

.discount-circle .off-text {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}

.discount-circle .percent {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.discount-circle .note {
    font-size: 0.8rem;
    color: #000;
    font-weight: 600;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.countdown-wrapper p {
    color: #aaa;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-timer .timer-item {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.gold-timer .timer-item span {
    color: #d4af37;
    margin-bottom: 5px;
    display: block;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #f9e394);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 25px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f9e394, #d4af37);
}

.pulse-gold {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* =========================================
   Floating Support Widget
   ========================================= */
.support-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.support-toggle {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.4);
    position: relative;
    transition: transform 0.3s ease;
}

.support-toggle i {
    font-size: 1.8rem;
    color: #000;
}

.support-toggle:hover {
    transform: scale(1.1);
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
    animation: ring-pulse 2s infinite;
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.support-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.support-widget:hover .support-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.support-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    gap: 15px;
}

.support-item span {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.support-item:hover span {
    opacity: 1;
    transform: translateX(0);
}

.support-item i,
.support-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background-size: cover;
}

.support-item img {
    object-fit: cover;
    padding: 0;
}

.support-item:hover i,
.support-item:hover img {
    transform: scale(1.1);
}

.support-item.zalo img {
    background: #fff;
}

/* Zalo icon is usually blue on white or transparent */
.support-item.facebook i {
    background: #1877F2;
}

.support-item.tiktok i {
    background: #000;
    border: 1px solid #333;
}

.support-item.whatsapp i {
    background: #25D366;
}

.support-item.phone i {
    background: #ff4757;
}

@media (max-width: 768px) {
    .promo-content-left {
        text-align: center;
        margin-bottom: 40px;
    }

    .promo-features {
        justify-content: center;
    }

    .support-menu {
        right: 10px;
    }
}

/* Navigation Toggle Fix */
.nav-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease;
    }

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

/* =========================================
   New Homepage Redesign Styles
   ========================================= */

/* Modern Hero Section */
.hero-modern {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1503376763036-066120622c74?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.hero-title-modern {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--accent-cyan);
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-subtitle-modern {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-features-compact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.feature-compact i {
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

/* Features Grid Compact */
.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card-compact {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card-compact:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.feature-card-compact i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.feature-card-compact h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-card-compact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Technical Specs Detailed */
.tech-specs-detailed {
    background: var(--bg-dark);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.spec-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.spec-card.featured {
    border-color: var(--accent-cyan);
    background: linear-gradient(145deg, rgba(0, 242, 255, 0.05), transparent);
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.spec-card .spec-icon i {
    color: var(--accent-cyan);
}

.spec-card h4 {
    color: var(--accent-cyan);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.spec-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    font-size: 0.95rem;
}

.spec-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Pricing Table Wrapper */
.pricing-table-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin-bottom: 50px;
}

.pricing-table-wrapper h3 {
    color: #fff;
    margin-bottom: 30px;
}

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

.pricing-table th {
    background: rgba(0, 242, 255, 0.1);
    padding: 15px;
    text-align: left;
    color: var(--accent-cyan);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-cyan);
}

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

.pricing-table tr.highlight-row {
    background: rgba(0, 242, 255, 0.05);
}

.pricing-table tr.highlight-row td {
    font-weight: 600;
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.features-list {
    list-style: none;
    margin: 25px 0;
}

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

.features-list li i {
    color: var(--accent-cyan);
}

/* Application Boxes */
.application-box {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.application-box:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.application-box i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.application-box p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Opacity Cards Grid */
.opacity-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.price-range {
    font-weight: bold;
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 1.1rem;
}

.process-step .step-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin: 20px 0 15px;
}

.process-step h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Aftercare Box */
.aftercare-box {
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--accent-cyan);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
}

.aftercare-box h4 {
    color: var(--accent-cyan);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aftercare-box ul {
    list-style: none;
    margin: 0;
}

.aftercare-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.aftercare-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Warranty Features */
.warranty-features {
    margin-top: 30px;
}

.warranty-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 242, 255, 0.03);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.warranty-feature:hover {
    background: rgba(0, 242, 255, 0.08);
}

.warranty-feature i {
    font-size: 2rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.warranty-feature h5 {
    margin-bottom: 5px;
    color: #fff;
}

.warranty-feature p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* QR Mockup */
.qr-mockup {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

/* Membership Grid */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.membership-card.featured {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.membership-card h3 {
    color: var(--accent-cyan);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li.sub-item {
    padding-left: 20px;
    color: #999;
    font-size: 0.9rem;
}

.benefits-list li i {
    color: var(--accent-cyan);
    margin-right: 10px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 25px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 1.1rem;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-avatar i {
    font-size: 1.8rem;
    color: var(--accent-cyan);
}

.review-header h5 {
    margin: 0 0 5px 0;
    color: #fff;
}

.customer-type {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.review-stars {
    color: gold;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* Map Section - Old Styles (kept for backward compatibility) */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-info h4 {
    color: #fff;
    margin-bottom: 25px;
}

.map-benefits {
    list-style: none;
}

.map-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-secondary);
}

.map-benefits li i {
    color: var(--accent-cyan);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Map Section - Redesigned Styles */
.map-section-redesigned {
    background: #f8f9fa;
    padding: 80px 0;
}

.map-info-content {
    padding: 20px 0;
}

.map-info-content h2 {
    color: var(--navy-primary);
    font-size: 2rem;
    line-height: 1.3;
}

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

.map-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.map-benefits-list li:last-child {
    border-bottom: none;
}

.map-benefits-list li:hover {
    padding-left: 10px;
    color: var(--navy-primary);
}

.map-benefits-list li i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.map-benefits-list li span {
    flex: 1;
}

.map-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.map-action-buttons .btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.map-action-buttons .btn i {
    font-size: 1rem;
}

.map-container-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.map-container-modern:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive adjustments for map section */
@media (max-width: 991px) {
    .map-section-redesigned {
        padding: 60px 0;
    }

    .map-info-content h2 {
        font-size: 1.75rem;
    }

    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .map-section-redesigned {
        padding: 40px 0;
    }

    .map-info-content h2 {
        font-size: 1.5rem;
    }

    .map-benefits-list li {
        font-size: 0.95rem;
        padding: 12px 0;
    }

    .map-action-buttons {
        flex-direction: column;
    }

    .map-action-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .map-wrapper {
        height: 350px;
    }
}

/* Contact Section */
.contact-info-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.contact-info-box h3 {
    color: #fff;
    margin-bottom: 30px;
}

.contact-info-box .info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-box .info-item i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-info-box .info-item h5 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 1rem;
}

.contact-info-box .info-item p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-info-box .info-item a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.contact-info-box .info-item a:hover {
    text-decoration: underline;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-zalo {
    background: #0068ff;
    color: #fff;
}

.btn-zalo:hover {
    background: #0052cc;
}

.btn-call {
    background: #ff4757;
    color: #fff;
}

.btn-call:hover {
    background: #e63946;
}

/* Contact Form Box */
.contact-form-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.contact-form-box h3 {
    color: #fff;
    margin-bottom: 25px;
}

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

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: #777;
}

select.form-control {
    cursor: pointer;
}

.btn-block {
    width: 100%;
    padding: 15px;
}

/* Summary Banner */
.summary-banner {
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--accent-cyan);
    border-radius: 15px;
    padding: 25px;
    margin-top: 50px;
    text-align: center;
}

.summary-banner p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.summary-banner strong {
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-subtitle-modern {
        font-size: 1.1rem;
    }

    .hero-features-compact {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-table-wrapper {
        overflow-x: auto;
        padding: 20px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

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

    .membership-grid,
    .specs-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Light Theme Components
   ========================================= */

/* Page Headers */
.page-header {
    padding: 100px 0 50px;
    margin-top: var(--header-height);
}

.bg-light-section {
    background-color: var(--bg-light-secondary);
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Hero for Homepage */
.hero-home {
    padding-top: calc(var(--header-height) + 40px);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Feature Boxes */
.feature-box {
    background: white;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
    border-color: var(--accent-cyan);
}

/* Service Cards for Homepage */
.service-card-home {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.service-card-home:hover {
    box-shadow: 0 10px 30px var(--shadow-light);
    transform: translateY(-5px);
}

/* Spec Cards for Light Theme */
.spec-card-light {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.spec-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

.spec-card-light.featured {
    border-color: var(--accent-cyan);
    background: linear-gradient(145deg, rgba(0, 168, 204, 0.05), white);
}

/* Layer Visualization for Light Theme */
.layer-stack-light {
    position: relative;
    height: 300px;
    width: 100%;
    perspective: 1000px;
}

.layer-light {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(0, 168, 204, 0.1);
    border: 2px solid var(--accent-cyan);
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 168, 204, 0.2);
    transition: 0.5s;
}

.layer-light:hover {
    background: rgba(0, 168, 204, 0.2);
}

.layer-light.l1 {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg) translateZ(100px);
}

.layer-light.l2 {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg) translateZ(50px);
}

.layer-light.l3 {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg) translateZ(0px);
    background: rgba(0, 102, 255, 0.2);
    border-color: var(--accent-blue);
}

.layer-light.l4 {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg) translateZ(-50px);
}

.layer-light.l5 {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg) translateZ(-100px);
}

/* Process Cards for Light Theme */
.process-card-light {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    position: relative;
    transition: var(--transition-smooth);
}

.process-card-light:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px var(--shadow-light);
}

/* Application Cards for Light Theme */
.application-card-light {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.application-card-light:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

/* Warranty Items for Light Theme */
.warranty-item-light {
    padding: 20px;
    background: var(--bg-light-secondary);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.warranty-item-light:hover {
    background: rgba(0, 168, 204, 0.08);
}

/* Ribbon for Popular Items */
.ribbon-popular {
    position: absolute;
    top: 20px;
    right: -32px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: white;
    padding: 5px 35px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Price Display */
.price-display {
    padding: 15px 0;
}

/* CTA Section Styling */
.cta-home {
    background: linear-gradient(135deg, #00a8cc, #0066ff) !important;
}

/* =========================================
   Clean Homepage Design - Reference Match
   ========================================= */

/* Navy Blue Theme Colors */
:root {
    --navy-primary: #2d4a7c;
    --navy-dark: #1e3354;
    --purple-accent: #8b5cf6;
}

.text-navy {
    color: var(--navy-primary) !important;
}

.text-purple {
    color: var(--purple-accent) !important;
}

/* Hero Clean Section */
.hero-clean {
    background: #ffffff;
    padding: 140px 20px 80px;
    margin-top: var(--header-height);
}

.info-bar-top {
    background: var(--navy-primary);
    color: white;
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 0 auto 40px;
    max-width: fit-content;
    font-weight: 600;
    font-size: 1.05rem;
}

.hero-title-clean {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle-clean {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.hero-desc-clean {
    text-align: center;
    color: #666;
    font-size: 1rem;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* VLT Car Demonstration - Full Width */
.vlt-car-demo-fullwidth {
    width: 100%;
    margin: 50px 0;
    background: #ffffff;
    padding: 60px 20px;
    overflow: hidden;
}

.vlt-car-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.vlt-car-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Old VLT Car Demo (kept for backward compatibility) */
.vlt-car-demo {
    margin: 50px auto;
    max-width: 900px;
    background: linear-gradient(180deg, #f5f5f5, #e0e0e0);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.car-silhouette-wrapper {
    position: relative;
}

.car-svg {
    width: 100%;
    height: auto;
    display: block;
}

.window-segment {
    opacity: 0.9;
}

/* CTA Buttons Clean */
.cta-buttons-clean {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-navy {
    background: var(--navy-primary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(45, 74, 124, 0.3);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 74, 124, 0.4);
    color: white;
}

.btn-purple {
    background: var(--purple-accent);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.btn-purple:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    color: white;
}

/* Features Clean */
.features-clean {
    background: white;
}

.feature-box-clean {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--navy-primary);
}

.feature-box-clean h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-box-clean p {
    color: #666;
    margin: 0;
}

/* Services Clean */
.services-clean {
    background: #f8f9fa;
}

.service-box-clean {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-box-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-box-clean h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-box-clean p {
    color: #666;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 25px 0;
}

.service-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
}

.service-list i {
    font-size: 1.1rem;
}

/* Stats Info Bar */
.stats-info-bar {
    padding: 15px 0;
}

.stat-item {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.stat-separator {
    color: #ccc;
    margin: 0 15px;
}

/* Combo Cards */
.combo-card {
    background: white;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-left: 5px solid #2d4a7c;
}

.combo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.combo-card.featured {
    border-left-color: #667eea;
}

.featured-badge {
    display: none;
}

.combo-header {
    text-align: left;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.combo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d4a7c;
    margin-bottom: 16px;
    line-height: 1.3;
}

.combo-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #dc3545;
}

.combo-price span {
    font-size: 1rem;
    font-weight: 600;
    color: #dc3545;
}

.combo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.combo-features li {
    padding: 12px 0;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.combo-features li i {
    color: #dc3545;
    font-size: 1rem;
}

.combo-card .btn-primary {
    background: #2d4a7c;
    border: none;
    padding: 14px 24px;
    font-weight: 600;
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.combo-card .btn-primary:hover {
    background: #1e3354;
    transform: translateY(-2px);
}

/* Pricing Combo Section Layout */
.pricing-combo-section .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing-combo-section .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

/* Process Step Cards */
.process-section-home .row {
    display: flex;
    flex-wrap: wrap;
}

.process-section-home .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.process-step-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 50px 24px 30px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
}

.process-step-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    position: static;
    transform: none;
    width: 56px;
    height: 56px;
    background: #2d4a7c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.4rem;
    margin: 0 auto 20px;
}

.step-icon {
    display: none;
}

.process-step-card h5 {
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Aftercare Box */
.aftercare-box {
    background: #2d4a7c;
    border-radius: 20px;
    padding: 36px 40px;
    color: white;
}

.aftercare-box h4 {
    color: white !important;
    margin-bottom: 20px;
}

.aftercare-box ul li {
    color: white !important;
    font-size: 1rem;
    line-height: 1.8;
}

.aftercare-box .fas.fa-heart {
    color: #ff6b6b !important;
}

.aftercare-box .fas.fa-check {
    color: #4ade80 !important;
}

.aftercare-box ul li {
    padding: 8px 0;
    color: #444;
}

/* Warranty Features List */
.warranty-simple-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.warranty-simple-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
}

.warranty-simple-list li:last-child {
    border-bottom: none;
}

.warranty-simple-list li i {
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
    color: #2d3748;
}

.warranty-simple-list li strong {
    display: block;
    color: #2d3748;
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: 600;
}

.warranty-simple-list li p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-navy-custom {
    background: #2d4a7c;
    color: white;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-navy-custom:hover {
    background: #1e3354;
    color: white;
    transform: translateY(-2px);
}

/* Warranty Section */
.warranty-section-home {
    background: #f8f9fa;
}

.warranty-section-home .text-center {
    max-width: 900px;
    margin: 0 auto 50px;
}

.warranty-section-home h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
}

.warranty-section-home .text-center p {
    font-size: 1rem;
    color: #6c757d;
}

/* Warranty Phone */
.warranty-phone-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.warranty-phone-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
}

/* CTA Section Home */
.cta-section-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section-home::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-modern-box {
    position: relative;
    z-index: 1;
}

.cta-content-center {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: #667eea;
    border: none;
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    background: #f8f9fa;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-info-footer {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-info-item i {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.6rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
        align-items: stretch;
        max-width: 350px;
        margin: 0 auto 40px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }

    .cta-info-footer {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-clean {
        font-size: 1.8rem;
    }

    .info-bar-top {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .cta-buttons-clean {
        flex-direction: column;
    }

    .btn-navy,
    .btn-purple {
        width: 100%;
        text-align: center;
    }

    .vlt-car-demo {
        padding: 20px 10px;
    }

    .vlt-car-demo-fullwidth {
        padding: 40px 15px;
        margin: 30px 0;
    }

    .stats-info-bar {
        flex-direction: column;
        gap: 10px;
    }

    .stat-separator {
        display: none;
    }

    .info-section-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-section-copy,
    .info-section-cards {
        max-width: 100%;
    }

    .info-pill-grid {
        grid-template-columns: 1fr;
    }

    .transparency-copy {
        text-align: center;
        margin-bottom: 15px;
    }

    .pricing-combo-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .combo-card {
        padding: 25px 20px;
    }

    .combo-price {
        font-size: 1.6rem;
    }

    .process-section-home .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .process-step-card {
        padding: 25px 15px;
    }

    .warranty-features-list li {
        flex-direction: column;
        gap: 10px;
    }

    .info-pill-grid {
        grid-template-columns: 1fr;
    }

    .tech-image-wrapper {
        padding: 20px;
    }

    .tech-benefit-list,
    .tech-spec-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tech-benefit-list p {
        font-size: 0.95rem;
        padding: 16px 16px 16px 36px;
    }

    .tech-spec-columns div {
        padding: 20px 22px;
    }

    .tech-spec-columns h5 {
        font-size: 1.05rem;
    }

    .tech-spec-columns p {
        font-size: 0.95rem;
    }

    .tech-table-simple {
        padding: 24px 20px;
    }

    .tech-table-simple table td {
        font-size: 0.95rem;
    }

    .pricing-tabs {
        gap: 10px;
    }

    .pricing-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .car-visual-wrapper {
        padding: 16px;
        height: auto;
    }

    .car-visual-wrapper img {
        max-height: 280px;
    }

    .pricing-table-modern {
        padding: 24px 20px;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-value {
        font-size: 1.1rem;
    }
}


/* Color Palette for Luxury */
:root {
    --gold-light: #f6d365;
    --gold-dark: #fda085;
    --purple-primary: #667eea;
    --purple-dark: #764ba2;
}

/* Hero Luxury Section */
.hero-luxury {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-luxury {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* VLT Demonstration Visual */
.hero-visual-demo {
    padding: 20px;
}

.vlt-demo-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vlt-segment {
    display: inline-block;
    height: 200px;
    position: relative;
    background: linear-gradient(180deg, #f5f5f5 0%, #e0e0e0 100%);
    vertical-align: top;
}

.vlt-segment:first-child {
    border-radius: 15px 0 0 15px;
}

.vlt-segment:last-child {
    border-radius: 0 15px 15px 0;
}

.vlt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vlt-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.demo-car-icon {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
}

/* Stats Bar - Dark Luxury */
.stats-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.stat-modern {
    transition: var(--transition-smooth);
}

.stat-modern:hover {
    transform: scale(1.1);
}

/* Luxury Feature Cards */
.luxury-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.luxury-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-light);
}

.luxury-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(246, 211, 101, 0.4);
    transition: var(--transition-smooth);
}

.luxury-icon i {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.luxury-feature-card:hover .luxury-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(246, 211, 101, 0.6);
}

/* Background Luxury */
.bg-light-luxury {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Luxury Service Cards */
.luxury-service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid transparent;
}

.luxury-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--gold-light);
}

.luxury-service-badge {
    margin-bottom: 20px;
}

.luxury-service-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
    position: relative;
}

.luxury-service-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(246, 211, 101, 0.3), rgba(253, 160, 133, 0.3));
    filter: blur(10px);
}

.luxury-service-icon i {
    color: white;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.car-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.home-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.luxury-service-card:hover .luxury-service-icon {
    transform: rotateY(180deg);
}

.luxury-checklist {
    list-style: none;
    padding: 0;
    text-align: left;
}

.luxury-checklist li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.luxury-checklist i {
    color: var(--gold-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Buttons Luxury */
.btn-luxury {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.btn-luxury:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    transform: translateY(-3px);
    color: white;
}

.btn-outline-luxury {
    background: transparent;
    color: #667eea;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid #667eea;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-luxury:hover {
    background: #667eea;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 8px 25px rgba(246, 211, 101, 0.5);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    box-shadow: 0 12px 35px rgba(246, 211, 101, 0.7);
    transform: translateY(-3px);
    color: #000;
}

.btn-gold-lg {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(246, 211, 101, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-gold-lg:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    box-shadow: 0 15px 40px rgba(246, 211, 101, 0.8);
    transform: translateY(-3px);
    color: #000;
}

.bg-gradient-luxury {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)) !important;
    color: #1a1a1a !important;
    font-weight: 600;
}

/* CTA Luxury Banner */
.cta-luxury {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulse-pattern 20s ease-in-out infinite;
}

@keyframes pulse-pattern {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive Luxury */
@media (max-width: 991px) {
    .hero-luxury {
        min-height: 75vh;
    }

    .vlt-segment {
        height: 150px;
    }

    .luxury-service-icon {
        width: 110px;
        height: 110px;
    }

    .luxury-service-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .vlt-segment {
        height: 100px;
    }

    .vlt-label {
        font-size: 0.9rem;
    }
}

/* Transparency Section */
.transparency-section {
    background: #f4f6fb;
}

.info-section-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.info-section-copy {
    max-width: 560px;
}

.info-section-cards {
    display: flex;
    justify-content: flex-start;
}

.info-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px;
}

.info-pill {
    background: #fff;
    border-radius: 16px;
    padding: 18px 24px;
    min-height: 90px;
    border: 1px solid rgba(13, 46, 89, 0.08);
    box-shadow: 0 10px 25px rgba(15, 46, 89, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 46, 89, 0.12);
}

.info-pill h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 6px;
}

.info-pill p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.technology-section {
    background: #f8f9ff;
}

.tech-image-wrapper {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(12, 61, 143, 0.08);
    box-shadow: 0 12px 30px rgba(12, 61, 143, 0.12);
}

.tech-structure-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.tech-benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.tech-benefit-list p {
    position: relative;
    padding: 20px 20px 20px 42px;
    margin: 0;
    font-size: 1.05rem;
    color: #233252;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(12, 61, 143, 0.12);
    box-shadow: 0 10px 30px rgba(12, 61, 143, 0.12);
    font-weight: 600;
    line-height: 1.6;
}

.tech-benefit-list p span {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b6b;
    box-shadow: 0 0 0 8px rgba(255, 107, 107, 0.2);
}

.tech-spec-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.tech-spec-columns div {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(12, 61, 143, 0.12);
    padding: 24px 26px;
    box-shadow: 0 12px 30px rgba(12, 61, 143, 0.12);
}

.tech-spec-columns h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0c3d8f;
    margin-bottom: 10px;
}

.tech-spec-columns p {
    margin: 0;
    color: #4f5a76;
    font-size: 1rem;
    line-height: 1.6;
}

.tech-table-simple {
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    border: 2px solid rgba(12, 61, 143, 0.15);
    box-shadow: 0 20px 60px rgba(12, 61, 143, 0.15);
    margin-top: 40px;
}

.tech-table-simple h6 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0c3d8f;
}

.tech-table-simple table td {
    padding: 14px 0;
    color: #2d3748;
    border-top: 1px solid rgba(12, 61, 143, 0.08);
    font-size: 1.05rem;
}

.tech-table-simple table tr:first-child td {
    border-top: none;
}

.tech-table-simple table td:first-child {
    font-weight: 700;
    color: #0c3d8f;
    width: 90px;
}

/* Glass Position Pricing Section */
.glass-pricing-section {
    background: #f8f9fa;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 12px 28px;
    background: #e9ecef;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab:hover {
    background: #dee2e6;
}

.pricing-tab.active {
    background: #2c3e50;
    color: #fff;
}

.car-visual-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.car-visual-wrapper img {
    border-radius: 12px;
    min-height: 450px;
    max-height: 550px;
    object-fit: cover;
    width: 100%;
}

.pricing-table-modern {
    background: #fff;
    padding: 36px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-table-modern h5 {
    color: #0c3d8f;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 16px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.price-row:hover {
    background: #f8f9fa;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 8px;
}

.price-row.featured-row {
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    border-left: 4px solid #dc3545;
    padding-left: 16px;
    margin: 8px 0;
    border-radius: 8px;
}

.price-label strong {
    font-size: 1.05rem;
    color: #2c3e50;
}

.price-label small {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 4px;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0c3d8f;
}

.pricing-content-wrapper {
    animation: fadeIn 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Warranty Template Styles (Clean & Professional)
   ========================================= */

.warranty-hero-image {
    background-image: url('https://images.unsplash.com/photo-1617788138017-80ad40651399?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-white-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #f0f9ff;
    color: #0ea5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.shadow-sm-hover {
    transition: all 0.3s ease;
}

.shadow-sm-hover:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    transform: translateY(-2px);
}

.qr-code-card {
    transition: transform 0.3s ease;
}

.qr-code-card:hover {
    transform: translateY(-5px);
}

.registration-card {
    background: #fff;
}

.form-floating>.form-control {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating>label {
    padding: 1rem 0.75rem;
}

.hover-lift {
    transition: transform 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

.accordion-item {
    border: none;
    background: transparent;
}

.accordion-button {
    background-color: #f8f9fa;
    border-radius: 10px !important;
    box-shadow: none !important;
    color: #1f2937;
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: #e0f2fe;
    color: #0284c7;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 1.5rem;
    background: #fff;
    border-radius: 0 0 10px 10px;
    border: 1px solid #f3f4f6;
    border-top: none;
    margin-bottom: 1rem;
}

.accordion-collapse.show .accordion-body {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* =========================================
   Warranty Template Styles (Enhanced)
   ========================================= */

.warranty-hero {
    background: linear-gradient(135deg, #1a2b49 0%, #0f1c33 100%);
    border-bottom: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bg-white-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-watermark {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    font-size: 400px;
    color: rgba(0, 0, 0, 0.02);
    z-index: 1;
    pointer-events: none;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #0ea5e9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f9ff;
}

.warranty-feature-item {
    transition: all 0.3s ease;
}

.warranty-feature-item:hover {
    transform: translateX(10px);
}

.hover-bg-light:hover {
    background-color: #f8f9fa;
}

.warranty-feature-item:hover .feature-icon-wrapper {
    background-color: #0ea5e9;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3) !important;
}

.qr-code-card {
    background: #fff;
    border-color: #f3f4f6 !important;
    transition: all 0.4s ease;
}

.qr-code-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-10px);
}

.qr-wrapper img {
    border: 1px solid #e5e7eb;
    padding: 10px;
    border-radius: 12px;
    background: #fff;
}

/* QR Scanner Animation */
.qr-scanner-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ef4444;
    box-shadow: 0 0 4px #ef4444;
    top: 10px;
    left: 0;
    animation: scan 2s infinite linear;
    z-index: 2;
    opacity: 0.8;
}

@keyframes scan {
    0% {
        top: 10px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: calc(100% - 10px);
        opacity: 0;
    }
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: shimmer 4s infinite;
}

/* Entrance Animations */
.anim-fade-right {
    animation: fadeRight 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.anim-zoom-in {
    animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================================
   Warranty Template Styles (Enhanced)
   ========================================= */

.warranty-hero {
    background: linear-gradient(135deg, #1a2b49 0%, #0f1c33 100%);
    border-bottom: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bg-white-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-watermark {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    font-size: 400px;
    color: rgba(0, 0, 0, 0.02);
    z-index: 1;
    pointer-events: none;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #0ea5e9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f9ff;
}

.warranty-feature-item {
    transition: all 0.3s ease;
}

.warranty-feature-item:hover {
    transform: translateX(10px);
}

.hover-bg-light:hover {
    background-color: #f8f9fa;
}

.warranty-feature-item:hover .feature-icon-wrapper {
    background-color: #0ea5e9;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3) !important;
}

.qr-code-card {
    background: #fff;
    border-color: #f3f4f6 !important;
    transition: all 0.4s ease;
}

.qr-code-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-10px);
}

.qr-wrapper img {
    border: 1px solid #e5e7eb;
    padding: 10px;
    border-radius: 12px;
    background: #fff;
}

/* QR Scanner Animation */
.qr-scanner-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ef4444;
    box-shadow: 0 0 4px #ef4444;
    top: 10px;
    left: 0;
    animation: scan 2s infinite linear;
    z-index: 2;
    opacity: 0.8;
}

@keyframes scan {
    0% {
        top: 10px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: calc(100% - 10px);
        opacity: 0;
    }
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: shimmer 4s infinite;
}

/* Entrance Animations */
.anim-fade-right {
    animation: fadeRight 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.anim-zoom-in {
    animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================================
   Membership Template Styles (Enhanced)
   ========================================= */

.membership-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.transform-hover:hover {
    transform: translateY(-15px);
}

.card-top-accent {
    height: 6px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.membership-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.05);
}

.membership-title {
    color: #1a2b49;
    font-weight: 800;
    font-size: 1.4rem;
}

.membership-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.membership-list li {
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.membership-list li.sub-item {
    padding-left: 28px;
    font-size: 0.9rem;
    color: #777;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ef4444;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Buttons */
.btn-gradient-primary {
    background: linear-gradient(135deg, #1a2b49, #0f1c33);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    background: linear-gradient(135deg, #2c4269, #1a2b49);
    color: #fff;
    box-shadow: 0 5px 15px rgba(26, 43, 73, 0.4);
    transform: translateY(-2px);
}

.btn-gradient-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
}

.btn-gradient-warning:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.btn-outline-info {
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
    background: transparent;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
}

.btn-outline-info:hover {
    background: #0ea5e9;
    color: #fff;
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
    transform: translateY(-2px);
}

/* Technology Section */
.technology-section {
    background: #f8f9fa;
}

/* Layer Visualization CSS */
.layer-visual {
    position: relative;
    height: 350px;
    width: 100%;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layer-plate {
    position: absolute;
    width: 220px;
    height: 140px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #a0a0a0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.layer-plate span {
    transform: rotateX(0deg);
    /* Flatten text for readability */
}

.layer-plate.l1 {
    transform: translateY(-80px) translateZ(-80px) rotateX(60deg) rotateZ(-45deg);
    background: rgba(200, 230, 255, 0.95);
    border-color: #8ab;
    z-index: 5;
}

.layer-plate.l2 {
    transform: translateY(-40px) translateZ(-40px) rotateX(60deg) rotateZ(-45deg);
    background: rgba(100, 180, 255, 0.95);
    border-color: #48c;
    color: white;
    z-index: 4;
}

.layer-plate.l3 {
    transform: translateY(0px) translateZ(0px) rotateX(60deg) rotateZ(-45deg);
    background: rgba(240, 240, 240, 0.95);
    z-index: 3;
}

.layer-plate.l4 {
    transform: translateY(40px) translateZ(40px) rotateX(60deg) rotateZ(-45deg);
    background: rgba(220, 220, 220, 0.95);
    z-index: 2;
}

.layer-plate.l5 {
    transform: translateY(80px) translateZ(80px) rotateX(60deg) rotateZ(-45deg);
    background: rgba(200, 200, 200, 0.95);
    z-index: 1;
}

.layer-visual:hover .layer-plate {
    margin-top: -10px;
    /* Subtle expansion */
}

.layer-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-weight: bold;
    color: var(--navy-primary);
}

/* Comparison Table */
.comparison-table th {
    background-color: #f1f5f9;
    color: var(--navy-primary);
}

.comparison-table td {
    vertical-align: middle;
}

/* =========================================
   Beautiful Luxury Professional Services - Best Care
   ========================================= */

.beautiful-luxury-services {
    position: relative;
    overflow: hidden;
}

/* Full Width Hero Image Section */
.full-width-hero-image {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.full-width-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 50%, rgba(15, 52, 96, 0.85) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 20px;
}

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

/* Header Badge */
.header-badge {
    display: inline-block;
    margin-bottom: 25px;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.5);
    padding: 12px 30px;
    border-radius: 50px;
    color: #d4af37;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.beautiful-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin: 25px 0 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #d4af37, #f9e394, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.beautiful-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
}

/* Beautiful Services Grid */
.beautiful-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Beautiful Service Cards */
.beautiful-service-card {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    padding: 0;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.beautiful-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.beautiful-service-card.featured-card .card-decoration {
    background: linear-gradient(135deg, #d4af37 0%, #f9e394 100%);
}

.beautiful-service-card:hover .card-decoration {
    height: 220px;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 50px 35px 40px;
    background: #ffffff;
    margin-top: 120px;
    border-radius: 30px 30px 0 0;
}

.service-icon-wrapper {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    z-index: 3;
}

.icon-bg {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.service-icon-wrapper i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #667eea;
    z-index: 4;
}

.beautiful-service-card.featured-card .service-icon-wrapper i {
    color: #d4af37;
}

.beautiful-service-card:hover .service-icon-wrapper {
    transform: translateX(-50%) scale(1.1) rotate(5deg);
}

.service-info {
    text-align: center;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0;
}

.service-features-list li {
    padding: 12px 0;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-features-list li:hover {
    color: #667eea;
    padding-left: 5px;
}

.beautiful-service-card.featured-card .service-features-list li:hover {
    color: #d4af37;
}

.service-features-list li i {
    color: #667eea;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.beautiful-service-card.featured-card .service-features-list li i {
    color: #d4af37;
}

.featured-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #d4af37, #f9e394);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.luxury-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.luxury-service-card:hover::before {
    opacity: 1;
}

.luxury-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.luxury-service-card.featured {
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
}

.luxury-service-card.featured::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

.luxury-badge-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37, #f9e394);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.luxury-service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.luxury-service-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.luxury-service-card:hover .luxury-service-icon::before {
    opacity: 1;
}

.luxury-service-icon i {
    font-size: 2.5rem;
    color: #d4af37;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.luxury-service-card:hover .luxury-service-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.luxury-service-card:hover .luxury-service-icon i {
    transform: scale(1.1);
}

.luxury-service-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.luxury-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.luxury-service-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.luxury-service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0;
}

.luxury-service-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.luxury-service-features li:hover {
    color: #d4af37;
    padding-left: 5px;
}

.luxury-service-features li i {
    color: #d4af37;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Beautiful Care Section */
.beautiful-care-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.care-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.care-left {
    text-align: center;
}

.care-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.care-icon-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.care-icon-circle i {
    font-size: 4rem;
    color: #ffffff;
}

.care-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.care-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.care-sub-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 20px;
}

.care-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 450px;
    margin: 0 auto;
}

.care-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.care-feature-box {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.care-feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.feature-icon-box i {
    font-size: 1.8rem;
    color: #ffffff;
}

.feature-text-box h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-text-box p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Full Width Bottom Image */
.full-width-bottom-image {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bottom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.75) 100%);
    z-index: 1;
}

.bottom-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 20px;
}

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

.bottom-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.bottom-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
}

.care-visual {
    text-align: center;
}

.care-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.care-icon-large::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.care-icon-large i {
    font-size: 3rem;
    color: #d4af37;
    position: relative;
    z-index: 2;
}

.care-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.care-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.care-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.care-feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.care-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.care-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.care-feature-icon i {
    font-size: 1.5rem;
    color: #d4af37;
}

.care-feature-content h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.care-feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .beautiful-main-title {
        font-size: 2.5rem;
    }

    .beautiful-subtitle {
        font-size: 1.1rem;
    }

    .beautiful-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 20px;
    }

    .care-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .full-width-hero-image {
        height: 500px;
    }

    .full-width-bottom-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .full-width-hero-image {
        height: 450px;
        background-attachment: scroll;
    }

    .full-width-bottom-image {
        height: 350px;
        background-attachment: scroll;
    }

    .beautiful-main-title {
        font-size: 2rem;
    }

    .beautiful-subtitle {
        font-size: 1rem;
    }

    .beautiful-services-grid {
        padding: 40px 15px;
    }

    .card-content {
        padding: 40px 25px 30px;
        margin-top: 100px;
    }

    .service-icon-wrapper {
        width: 100px;
        height: 100px;
        top: -50px;
    }

    .service-icon-wrapper i {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .care-icon-circle {
        width: 120px;
        height: 120px;
    }

    .care-icon-circle i {
        font-size: 3rem;
    }

    .care-main-title {
        font-size: 2rem;
    }

    .care-sub-title {
        font-size: 1.1rem;
    }

    .care-feature-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .feature-icon-box {
        margin: 0 auto;
    }

    .bottom-title {
        font-size: 2rem;
    }

    .bottom-description {
        font-size: 1rem;
    }
}

/* =========================================
   Luxury Services Page Styles (White/Blue Theme)
   ========================================= */

/* Premium Hero */
.premium-hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1562141961-b5d1855d7f30?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: -80px;
    /* Offset header */
    padding-top: 80px;
}

.premium-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.premium-title-hero {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.premium-subtitle-hero {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* General Premium Title (for body sections) */
.premium-title {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Utilities */
:root {
    --premium-sky: #00a8cc;
    --premium-sky-gradient: linear-gradient(135deg, #00a8cc, #0066ff);
}

.text-sky {
    color: var(--premium-sky);
    background: var(--premium-sky-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-sky {
    background: var(--premium-sky-gradient);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 168, 204, 0.3);
    transition: all 0.3s ease;
}

.btn-sky:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.5);
    color: #fff;
}

/* Premium Services Grid */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.premium-service-card {
    background: #fff;
    border: 1px solid rgba(0, 168, 204, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--premium-sky);
    box-shadow: 0 20px 50px rgba(0, 168, 204, 0.2);
}

.premium-service-card:hover .service-icon-premium {
    transform: scale(1.1) rotate(5deg);
    background: var(--premium-sky-gradient);
    color: #fff;
    border-color: transparent;
}

.service-icon-premium {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(0, 168, 204, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--premium-sky);
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    background: #fff;
}

.service-title-premium {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-desc-premium {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.premium-list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.premium-list li {
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-list li i {
    color: var(--premium-sky);
}

/* Process Timeline */
.premium-process {
    padding: 100px 0;
    position: relative;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 168, 204, 0.2);
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .process-timeline::before {
        display: block;
    }
}

.process-node {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.node-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid rgba(0, 168, 204, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--premium-sky);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-node:hover .node-icon {
    background: var(--premium-sky-gradient);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.3);
    border-color: transparent;
}

.node-title {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.node-desc {
    color: #666;
    font-size: 0.9rem;
}

/* Black Card Section */
.black-card-section {
    padding: 100px 0;
    overflow: hidden;
}

.black-card-container {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.the-black-card {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #001f3f, #003366);
    /* Dark Blue for SkyCool */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.4);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    animation: float-card 6s ease-in-out infinite;
}

.the-black-card:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0) rotateY(0);
    }

    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.card-chip {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #00a8cc, #0066ff);
    border-radius: 5px;
}

.card-logo-premium {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #fff;
    font-size: 1.2rem;
    text-align: right;
}

.card-logo-premium span {
    display: block;
    font-size: 0.6rem;
    color: var(--premium-sky);
    letter-spacing: 2px;
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 4px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.card-holder {
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .premium-title-hero {
        font-size: 2.5rem;
    }

    .the-black-card {
        width: 100%;
        height: 220px;
    }

    .card-number {
        font-size: 1.2rem;
    }
}

/* =========================================
   Warranty Reference Styles (Nanox Match)
   ========================================= */

.warranty-ref-container {
    max-width: 800px;
    width: 100%;
}

.ref-input {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 10px 0;
    background: transparent;
    box-shadow: none !important;
    font-size: 1rem;
    color: #374151;
}

.ref-input:focus {
    border-bottom-color: #0ea5e9;
    background: transparent;
}

.ref-input::placeholder {
    color: #9ca3af;
    font-weight: 300;
}

.ref-btn {
    border-radius: 50px;
    background: #e5e7eb;
    color: #1f2937;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 30px;
    border: 1px solid #d1d5db;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.ref-btn:hover {
    background: #d1d5db;
    color: #000;
}

/* =========================================
   Technology Page Styles (Professional)
   ========================================= */

/* Tech Hero */
.tech-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
}

.tech-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.tech-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.tech-hero-line {
    width: 80px;
    height: 4px;
    background: var(--premium-sky-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* Tech Features List */
.tech-features-list {
    margin-top: 30px;
}

.tech-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 168, 204, 0.1);
    border-color: rgba(0, 168, 204, 0.2);
}

.tf-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-sky);
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.tf-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.tf-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Professional Layer Stack */
.layer-stack-pro-container {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.layer-stack-pro {
    position: relative;
    width: 250px;
    height: 250px;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(45deg);
    transition: transform 0.5s ease;
}

.layer-stack-pro:hover {
    transform: rotateX(55deg) rotateZ(40deg) scale(1.05);
}

.layer-pro {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    font-size: 1rem;
    text-align: center;
    padding: 10px;
    backface-visibility: hidden;
    /* Improve rendering */
}

.layer-pro span {
    transform: rotateZ(-45deg);
    display: block;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.layer-pro.l1 {
    transform: translateZ(120px);
    background: rgba(0, 168, 204, 0.15);
    border: 2px solid var(--premium-sky);
    color: var(--premium-sky);
    text-shadow: none;
}

.layer-pro.l2 {
    transform: translateZ(90px);
    background: rgba(255, 255, 255, 0.95);
}

.layer-pro.l3 {
    transform: translateZ(60px);
    background: rgba(255, 255, 255, 0.95);
}

.layer-pro.l4 {
    transform: translateZ(30px);
    background: rgba(255, 255, 255, 0.95);
}

.layer-pro.l5 {
    transform: translateZ(0px);
    background: #f8f9fa;
    color: #666;
}

/* Tech Spec Cards */
.tech-spec-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 168, 204, 0.15);
    border-color: rgba(0, 168, 204, 0.3);
}

.spec-ring {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

.circular-chart.blue .circle {
    stroke: var(--premium-sky);
}

.percentage {
    fill: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.5em;
    text-anchor: middle;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.spec-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.spec-subtitle {
    color: var(--premium-sky);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Benefit Visual */
.benefit-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.temp-badge {
    position: absolute;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.temp-badge span {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

.temp-badge strong {
    font-size: 1.5rem;
    font-weight: 800;
}

.temp-badge.cold {
    bottom: 30px;
    left: 30px;
    border-left: 4px solid var(--premium-sky);
}

.temp-badge.cold strong {
    color: var(--premium-sky);
}

.temp-badge.hot {
    top: 30px;
    right: 30px;
    border-left: 4px solid #ff4d4d;
}

.temp-badge.hot strong {
    color: #ff4d4d;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: left;
}

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

.benefit-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .tech-hero-title {
        font-size: 2.5rem;
    }

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

    .layer-stack-pro-container {
        height: 300px;
    }

    .layer-stack-pro {
        width: 200px;
        height: 200px;
    }
}

/* =========================================
   Car Film Page Styles (Professional)
   ========================================= */

/* Car Hero */
.car-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1550355291-bbee04a92027?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
}

.car-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.car-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.car-hero-line {
    width: 80px;
    height: 4px;
    background: var(--premium-sky);
    margin: 0 auto;
    border-radius: 2px;
}

/* Premium Table */
.premium-table-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-table {
    margin-bottom: 0;
    background: #fff;
}

.premium-table thead th {
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
}

.premium-table tbody td {
    padding: 20px;
    vertical-align: middle;
    border-color: rgba(0, 0, 0, 0.05);
    color: #444;
}

.premium-table tbody tr:hover {
    background: rgba(0, 168, 204, 0.02);
}

.premium-table .highlight-row {
    background: rgba(0, 168, 204, 0.05);
}

.premium-table .highlight-row:hover {
    background: rgba(0, 168, 204, 0.1);
}

/* Pricing Card Pro */
.pricing-card-pro {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 168, 204, 0.15);
    border-color: rgba(0, 168, 204, 0.2);
}

.pricing-card-pro.popular {
    border: 2px solid var(--premium-sky);
    background: linear-gradient(to bottom, #fff, rgba(0, 168, 204, 0.02));
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--premium-sky);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card-header-pro h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.card-header-pro p {
    color: var(--premium-sky);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.card-price-pro {
    margin: 30px 0;
    color: #1a1a1a;
}

.card-price-pro .currency {
    font-size: 1rem;
    vertical-align: top;
    font-weight: 600;
    color: #999;
}

.card-price-pro .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.card-price-pro .unit {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.card-features-pro {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.card-features-pro li {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features-pro li i {
    color: var(--premium-sky);
}

.btn-sky {
    background: var(--premium-sky);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-sky:hover {
    background: #008fb3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 204, 0.3);
}

.btn-sky-outline {
    background: transparent;
    color: var(--premium-sky);
    border: 2px solid var(--premium-sky);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sky-outline:hover {
    background: var(--premium-sky);
    color: #fff;
}

/* Process Timeline Pro */
.process-timeline-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    position: relative;
}

.timeline-step {
    text-align: center;
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.1);
    border-color: rgba(0, 168, 204, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--premium-sky);
    font-size: 1.5rem;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .car-hero-title {
        font-size: 2.5rem;
    }

    .process-timeline-pro {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   Car Film Template Styles
   ========================================= */

/* Template Tabs */
.template-tabs .nav-link {
    color: #666;
    background: #e9ecef;
    margin: 0 5px;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.template-tabs .nav-link.active {
    background: #1a2b49;
    /* Dark Navy */
    color: #fff;
    box-shadow: 0 5px 15px rgba(26, 43, 73, 0.3);
}

.template-tabs .nav-link:hover:not(.active) {
    background: #dee2e6;
}

/* Pricing List Template */
.pricing-list-template {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-item-template {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    border-left: 5px solid #ef4444;
    /* Red accent */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.pricing-item-template:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pricing-item-template.highlight {
    background: #fffafa;
    /* Slight tint for full sets */
    border-left-color: #dc2626;
}

.pricing-item-template .item-name {
    font-weight: 800;
    color: #1a2b49;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.pricing-item-template .item-desc {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.pricing-item-template .item-price {
    font-weight: 800;
    color: #1a2b49;
    font-size: 1.1rem;
}

.pricing-item-template.highlight .item-price {
    color: #dc2626;
    font-size: 1.2rem;
}

.btn-template-red {
    background: #ef4444;
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.btn-template-red:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-2px);
}

/* Combo Card Template */
.combo-card-template {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.combo-card-template:hover {
    border-color: #1a2b49;
    box-shadow: 0 10px 30px rgba(26, 43, 73, 0.1);
    transform: translateY(-5px);
}

.combo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 15px;
}

.combo-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ef4444;
    /* Red price */
    margin-bottom: 20px;
}

.combo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.combo-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.95rem;
}

.combo-list li::before {
    content: "•";
    color: #ef4444;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.btn-template-navy {
    background: #1a2b49;
    color: #fff;
    border-radius: 50px;
    padding: 12px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

/* =========================================
   Home Film Template Styles
   ========================================= */

.home-film-title {
    color: #1a2b49;
    font-size: 2rem;
    line-height: 1.3;
}

.app-list {
    list-style: none;
    padding: 0;
}

.app-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #4b5563;
    font-size: 1rem;
}

.app-list li::before {
    content: "•";
    color: #ef4444;
    /* Red dot */
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: -3px;
}

.product-card-home {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
}

.product-card-home:hover {
    background: #fff;
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.price-text {
    font-size: 1rem;
}

.btn-purple-gradient {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-purple-gradient:hover {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.4);
}

/* =========================================
   Home Film Hero & New Styles
   ========================================= */

.home-film-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background-color: #333;
    /* Fallback */
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.pricing-card-pro {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: #00a8cc;
    /* Premium Sky */
}

.transform-scale {
    transform: scale(1.05);
    z-index: 10;
    border: 2px solid #00a8cc;
    /* Premium Sky */
}

.transform-scale:hover {
    transform: scale(1.08);
}

.popular-badge {
    border-bottom-left-radius: 10px;
}

/* Animations */
.hero-title-anim {
    animation: fadeInUp 1s ease-out;
}

.hero-desc-anim {
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-btn-anim {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.bg-light-section {
    background: #f8f9fa;
}

/* Contact Wrapper */
.contact-wrapper {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

/* Glass Card Large */
.glass-card-large {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Contact Info Panel */
.contact-info-panel {
    padding: 60px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    height: 100%;
    position: relative;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.contact-info-panel h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info-panel .text-light-80 {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Info Items */
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 1.5rem;
    color: white;
}

.info-item:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.info-text h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.info-text a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* Social Connect */
.social-connect {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.social-connect h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-btn:hover {
    background: white;
    color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Form Panel */
.contact-form-panel {
    padding: 60px 50px;
    background: white;
}

.contact-form-panel h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Modern Form */
.modern-form {
    width: 100%;
}

/* Form Floating Custom */
.form-floating-custom {
    position: relative;
    margin-bottom: 25px;
}

.form-control-custom {
    width: 100%;
    padding: 18px 20px;
    font-size: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    background: #f8f9fa;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.form-control-custom:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-control-custom:focus+label,
.form-control-custom:not(:placeholder-shown)+label {
    top: -10px;
    left: 15px;
    font-size: 0.85rem;
    color: #667eea;
    background: white;
    padding: 0 8px;
}

.form-floating-custom label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
}

.form-floating-custom select.form-control-custom {
    cursor: pointer;
    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='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-color: #f8f9fa;
    padding-right: 45px;
}

.form-floating-custom select.form-control-custom:focus {
    background-color: white;
}

.form-floating-custom select.form-control-custom+label {
    top: -10px;
    left: 15px;
    font-size: 0.85rem;
    color: #667eea;
    background: white;
    padding: 0 8px;
}

.form-floating-custom textarea.form-control-custom {
    min-height: 120px;
    resize: vertical;
}

/* Glow Button */
.glow-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.glow-btn:active {
    transform: translateY(-1px);
}

/* Map Section Redesigned */
.map-section-redesigned {
    padding: 80px 0;
}

.map-info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.text-navy {
    color: #1a237e;
}

.text-secondary {
    color: #666;
}

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

.map-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
}

.map-benefits-list li i {
    font-size: 1.3rem;
    margin-top: 2px;
}

.map-action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-navy {
    background: #1a237e;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-navy:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
    color: white;
}

.btn-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.map-container-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {

    .contact-info-panel,
    .contact-form-panel {
        padding: 40px 30px;
    }

    .glass-card-large {
        border-radius: 20px;
    }

    .contact-info-panel h2,
    .contact-form-panel h2 {
        font-size: 1.7rem;
    }

    .map-info-content h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 25px;
    }

    .contact-info-panel h2,
    .contact-form-panel h2 {
        font-size: 1.5rem;
    }

    .info-item {
        margin-bottom: 25px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle i {
        font-size: 1.2rem;
    }

    .info-text h3 {
        font-size: 1.1rem;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .glow-btn {
        font-size: 1rem;
        padding: 15px 30px;
    }

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

    .map-wrapper {
        height: 350px;
    }

    .btn-navy,
    .btn-purple {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .glass-card-large {
        border-radius: 15px;
        margin: 0 -10px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 25px 20px;
    }

    .form-control-custom {
        padding: 15px 18px;
        font-size: 0.95rem;
    }

    .form-floating-custom label {
        top: 15px;
        left: 18px;
        font-size: 0.95rem;
    }

    .page-hero {
        padding: 100px 0 40px;
    }

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

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