:root {
    /* Colors */
    --primary-color: #4F46E5; /* Indigo 600 */
    --primary-dark: #3730A3; /* Indigo 800 */
    --primary-light: #818CF8; /* Indigo 400 */
    --secondary-color: #10B981; /* Emerald 500 */
    --accent-color: #F59E0B; /* Amber 500 */
    --danger-color: #EF4444; /* Red 500 */

    --text-main: #111827; /* Gray 900 */
    --text-muted: #6B7280; /* Gray 500 */
    --text-light: #F9FAFB; /* Gray 50 */

    --bg-body: #F9FAFB; /* Gray 50 */
    --bg-surface: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.7);

    --border-color: #E5E7EB; /* Gray 200 */

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5rem 0;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.2);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: var(--section-padding);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(79, 70, 229, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-text {
    background: none;
    color: var(--text-main);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255 255 255);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 197px;
    margin-top: -14px;
}

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

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Language Switcher */
.lang-switcher-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
    transition: var(--transition-fast);
    text-decoration: none;
}

.lang-switcher:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.lang-switcher.active {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    cursor: default;
}

.lang-switcher.active:hover {
    transform: none;
    background: var(--primary-color);
}

.flag-icon {
    font-size: 1rem;
    line-height: 1;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #F9FAFB 0%, #EEF2FF 100%);
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #EEF2FF;
    color: var(--primary-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #111827, #4F46E5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Registration Form */
.reg-check-form {
    margin-bottom: 2rem;
    max-width: 600px;
}

.input-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.reg-plate {
    flex: 2;
    min-width: 280px;
    position: relative;
    background: #FFD700; /* UK Plate Yellow */
    border-radius: var(--radius-md);
    padding: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    height: 64px; /* Fixed height for plate look */
}

.euro-band {
    background-color: #003399;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    font-weight: 700;
    font-size: 0.9rem;
    padding-bottom: 8px;
    position: absolute;
    padding: 7px 11px;
    left: 0;
    top: 0;
    height: 100%;
}

/* Union Jack / Flag simulation */
.euro-band::before {
    content: "🇩🇪"; /* Flag Emoji as fallback/modern */
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-80%);
}

.reg-plate input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Oswald', 'Impact', sans-serif; /* Condensed bold font */
    font-size: 29PX;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 2px;
    font-weight: 700;
    color: #111827;
    padding: 0 14px 0 58px;
    outline: none;
    line-height: 64px;
}

.reg-plate input::placeholder {
    color: rgba(17, 24, 39, 0.2);
    font-weight: 600;
}

/* Button Styling Update */
.input-group .btn {
    flex: 1;
    min-width: 180px;
    height: 64px;
    background: linear-gradient(135deg, #4F46E5 0%, #3730A3 100%);
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.input-group .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(79, 70, 229, 0.23);
}

.form-note {
    font-size: 0.95rem;
    color: #4B5563;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.form-note i {
    color: #059669; /* Success Green */
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: space-between;
    padding-top: 0;
    margin-top: 0;
    max-width: 600px;
    gap: 1.5rem;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-icon {
    font-size: 1.5rem;
    color: #1D4ED8; /* Reference Blue */
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.40rem;
    font-weight: 800;
    color: #111827; /* Dark text */
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: #111827;
    font-weight: 500;
    margin-top: 0;
}

/* Responsive adjustments for stats */
@media (max-width: 480px) {
    .hero-stats-row {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* Hero Visual (Glassmorphism) */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-radius: var(--radius-xl);
}

.car-card {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(16, 185, 129, 0.1);
    display: inline-flex;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.green {
    background-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.car-mockup {
    font-size: 8rem;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stats-grid .stat {
    display: flex;
    flex-direction: column;
}

.stats-grid .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stats-grid .value {
    font-weight: 700;
    font-size: 1.125rem;
}

.alert-card {
    position: absolute;
    bottom: 80px;
    left: -30px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    background: #FFFFFF;
}

.alert-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.alert-text {
    display: flex;
    flex-direction: column;
}

.alert-text strong {
    font-size: 0.95rem;
}

.alert-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out infinite 2s;
}

/* Stats Section */
.stats-bar {
    background: linear-gradient(135deg, #4F46E5 0%, #3730A3 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #9591de;
    font-weight: 500;
}

/* Features Section */
.features {
    background: var(--bg-body);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

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

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

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

.feature-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.icon-box {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.icon-box.blue { background: #EEF2FF; color: var(--primary-color); }
.icon-box.purple { background: #F3E8FF; color: #9333EA; }
.icon-box.green { background: #ECFDF5; color: #10B981; }
.icon-box.orange { background: #FFF7ED; color: #F97316; }
.icon-box.red { background: #FEF2F2; color: #EF4444; }
.icon-box.teal { background: #F0FDFA; color: #14B8A6; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* Excellence Section */
.excellence {
    background: #FFFFFF;
    overflow: hidden;
    padding: 6rem 0;
}

.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.excellence-visual {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.excellence-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: -40px; /* Overlap effect */
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.excellence-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transform: scale(1.02); /* Slight zoom for better crop */
}

.excellence-stats {
    background: #F3F4F6;
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem 1.5rem; /* Top padding accounts for overlap */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 0;
}

.ex-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
}

.ex-stat strong {
    font-size: 1.75rem;
    color: #111827;
    font-weight: 800;
    line-height: 1.2;
}

.ex-stat span {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
    margin-top: 0.25rem;
}

.excellence-trust-banner {
    background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    transform: translateY(-50%);
    margin-top: 1rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.excellence-trust-banner i {
    font-size: 1.25rem;
    opacity: 0.9;
}

.excellence-content {
    padding-left: 1rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #EEF2FF;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.excellence-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.excellence-content .description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.excellence-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ex-feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: white;
    transition: all 0.3s ease;
}

.ex-feature-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.ex-feature-item .ex-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific icon colors */
.ex-feature-item:nth-child(1) .ex-icon i {color: #4f46e5;} /* Blue */
.ex-feature-item:nth-child(2) .ex-icon i { color: #4F46E5; } /* Indigo */
.ex-feature-item:nth-child(3) .ex-icon i {color: #4f46e5;} /* Sky */

.ex-feature-item .ex-icon i {
    font-size: 2.25rem;
}

.ex-feature-item .ex-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.ex-feature-item .ex-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive Excellence */
@media (max-width: 992px) {
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .excellence-visual {
        max-width: 100%;
        margin: 0 auto;
    }

    .excellence-content {
        padding-left: 0;
        text-align: left; /* Keep left aligned for readability */
    }

    .badge-pill {
        margin-bottom: 1.5rem;
    }

    .excellence-stats {
        padding: 3rem 1.5rem 1.5rem;
    }

    .excellence-trust-banner {
        width: 100%;
        transform: translateY(0);
        margin-top: -1rem;
    }
}

/* Trusted Partner Section */
.trusted-partner {
    background: white;
    overflow: hidden;
}

.trusted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trusted-visual {
    position: relative;
    padding-bottom: 4rem; /* Space for the sub-image */
}

.trusted-main-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    width: 90%;
}

.trusted-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.floating-badge {
    position: absolute;
    top: 2rem;
    right: -1rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.floating-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.floating-badge strong {
    font-size: 1.125rem;
    color: #111827;
    font-weight: 800;
}

.floating-badge span {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
}

.trusted-sub-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-xl);
    z-index: 5;
}

.trusted-sub-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.trusted-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.text-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #E0E7FF;
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.vm-card {
    background: #1E1B4B; /* Dark indigo */
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

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

.vm-icon {
    margin-bottom: 1rem;
    color: #818CF8; /* Light indigo */
    font-size: 1.5rem;
}

.vm-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.vm-card p {
    font-size: 0.9rem;
    color: #C7D2FE; /* Light indigo text */
    line-height: 1.5;
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive Trusted Partner */
@media (max-width: 992px) {
    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trusted-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Vehicle History Reports Section */
.report-types {
    background: #FFFFFF;
}

.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.centered h2 {
    font-size: 2.5rem;
    margin-top: 1rem;
    color: #111827;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.report-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.report-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.report-card:hover .report-bg {
    transform: scale(1.1);
}

.report-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.3), rgba(17, 24, 39, 0.9));
    z-index: 1;
}

.report-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

.report-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.report-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.report-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.report-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.report-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.report-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

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

/* Responsive Reports Grid */
@media (max-width: 992px) {
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }

    .report-card {
        height: 350px;
    }
}

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

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 10px #EEF2FF;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: #E5E7EB;
    margin-top: 30px;
}

.step h3 {
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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");
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-content .btn {
    background: white;
    color: var(--primary-color);
}

.cta-content .btn:hover {
    background: #F9FAFB;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background: var(--bg-body);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-visual {
    position: relative;
}

.contact-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.contact-info-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #EEF2FF;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #111827;
}

.info-details a {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-decoration: none;
}

.info-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #111827;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #EF4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.contact-success {
    text-align: center;
    padding: 3rem 2rem;
    background: #F0FDF4;
    border-radius: var(--radius-lg);
    border: 1px solid #BBF7D0;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    color: #16A34A;
    margin-bottom: 1.5rem;
}

.contact-success h3 {
    color: #166534;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-success p {
    color: #15803D;
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

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

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-image-wrapper {
        min-height: 300px;
    }

    .contact-img {
        min-height: 300px;
        max-height: 400px;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }
}

/* Footer */
.footer {
    background: #1F2937;
    color: #F3F4F6;
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .logo span {
    color: var(--primary-light);
}

.footer-brand p {
    color: #9CA3AF;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-group h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.link-group a {
    display: block;
    color: #9CA3AF;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-connector {
        display: none;
    }

    .step {
        margin-bottom: 3rem;
        max-width: 400px;
    }

    .step::after {
        content: '';
        display: block;
        width: 2px;
        height: 30px;
        background: #E5E7EB;
        margin: 1rem auto 0;
    }

    .step:last-child::after {
        display: none;
    }
}

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

    .mobile-menu-toggle {
        display: block;
    }

    .lang-switcher-group {
        margin-left: 0;
        margin-top: 1rem;
    }

    .lang-switcher {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }

    .flag-icon {
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        word-break: break-word;
    }

    .input-group {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }


    .cta-content h2
    {
        font-size: 29px;
    }

    .cta-content .btn
    {
        font-size: 15px;
    }


}

/* Checkout Page Styles */
.checkout-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: var(--bg-body);
}

.checkout-header {
    margin-bottom: 2.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--primary-dark);
    transform: translateX(-3px);
}

.back-link i {
    font-size: 0.875rem;
}

.checkout-title {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--text-main);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.checkout-form-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.checkout-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.checkout-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.checkout-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.checkout-form .form-group input.error {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.checkout-form .form-group input.success {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.checkout-form .form-help {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.checkout-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.price-badge {
    font-weight: 700;
    font-size: 1.125rem;
}

/* Order Summary */
.order-summary-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.order-summary-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.summary-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.plan-card {
    background: linear-gradient(135deg, #EEF2FF 0%, #F3F4F6 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.plan-header h4 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin: 0;
}

.plan-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.plan-delivery {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.plan-delivery i {
    color: var(--primary-color);
}

.plan-price {
    font-size: 1.125rem;
    color: var(--text-main);
    padding-top: 1rem;
    border-top: 1px solid rgba(79, 70, 229, 0.2);
}

.plan-price strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.summary-info-block {
    background: #F9FAFB;
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.summary-info-block h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.summary-features {
    margin-bottom: 1.5rem;
}

.summary-features h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-main);
    font-size: 0.9rem;
}

.features-list li i {
    color: var(--secondary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.features-list li.more-features {
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Trust Badges Section - New Eye-Catching Design */
.trust-badges-section {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.trust-badge-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15);
    border-color: var(--primary-light);
}

.trust-badge-card:hover::before {
    transform: scaleX(1);
}

.trust-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.trust-icon-wrapper.secure {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: var(--primary-color);
}

.trust-icon-wrapper.guarantee {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: #10B981;
}

.trust-icon-wrapper.support {
    background: linear-gradient(135deg, #F0F9FF 0%, #DBEAFE 100%);
    color: #3B82F6;
}

.trust-icon-wrapper i {
    font-size: 1.5rem;
    z-index: 1;
    color: inherit;
}

.trust-badge-card:hover .trust-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.trust-content {
    flex: 1;
}

.trust-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.trust-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.btn-block {
    width: 100%;
}

/* Payment Loader Overlay */
.payment-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.payment-loader-overlay.hidden {
    display: none;
}

.payment-loader-content {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 2rem;
}

.payment-loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: var(--primary-color);
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--primary-light);
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--secondary-color);
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.spinner-ring:nth-child(4) {
    border-top-color: rgba(255, 255, 255, 0.3);
    width: 55%;
    height: 55%;
    top: 22.5%;
    left: 22.5%;
}

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

.payment-loader-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.payment-loader-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite both;
}

.loader-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Checkout Responsive */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-summary-card {
        order: -1;
    }

    .checkout-form-card {
        padding: 1.5rem;
    }

    .checkout-title {
        font-size: 2rem;
    }

    .trust-badges-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .checkout-title {
        font-size: 1.75rem;
    }

    .checkout-header {
        margin-bottom: 1.5rem;
    }

    .checkout-form-card,
    .order-summary-card {
        padding: 1.25rem;
    }

    .checkout-grid {
        gap: 1.5rem;
    }

    .trust-badges-section {
        margin-top: 1.5rem;
        grid-template-columns: 1fr;
    }

    .trust-badge-card {
        padding: 1.25rem 1rem;
    }

    .trust-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .trust-icon-wrapper i {
        font-size: 1.25rem;
    }

    .trust-content h4 {
        font-size: 0.95rem;
    }

    .trust-content p {
        font-size: 0.8rem;
    }

    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .trust-badge-item {
        padding: 0.5rem;
    }

    .payment-loader-content {
        padding: 1.5rem;
        max-width: 90%;
    }

    .payment-loader-content h3 {
        font-size: 1.25rem;
    }

    .payment-loader-content p {
        font-size: 0.9rem;
    }

    .payment-loader-spinner {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: var(--bg-body);
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.privacy-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.privacy-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #EEF2FF;
}

.privacy-section h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.privacy-section li strong {
    color: var(--text-main);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition-fast);
}

.privacy-section a:hover {
    color: var(--primary-dark);
}

.footer-bottom a {
    color: #9CA3AF;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: white;
}

/* Privacy Policy Responsive */
@media (max-width: 992px) {
    .privacy-content {
        padding: 2rem;
    }

    .privacy-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .container {
        width: 100%;
    }

    .trusted-content h2
    {
        font-size: 36px;
    }

    .excellence-content h2
    {
        font-size: 37px;
    }


    .privacy-policy-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .privacy-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

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

    .privacy-intro {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 1.5rem;
    }

    .privacy-section {
        margin-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.125rem;
    }

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

/* Terms & Conditions Page Styles */
.terms-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: var(--bg-body);
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.terms-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.terms-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.terms-section-item {
    margin-bottom: 3rem;
}

.terms-section-item:last-child {
    margin-bottom: 0;
}

.terms-section-item h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #EEF2FF;
}

.terms-section-item h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.terms-section-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.terms-section-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section-item li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.terms-section-item li strong {
    color: var(--text-main);
    font-weight: 600;
}

.terms-section-item a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition-fast);
}

.terms-section-item a:hover {
    color: var(--primary-dark);
}

/* Terms & Conditions Responsive */
@media (max-width: 992px) {
    .terms-content {
        padding: 2rem;
    }

    .terms-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .terms-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

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

    .terms-intro {
        font-size: 1rem;
    }

    .terms-content {
        padding: 1.5rem;
    }

    .terms-section-item {
        margin-bottom: 2rem;
    }

    .terms-section-item h2 {
        font-size: 1.5rem;
    }

    .terms-section-item h3 {
        font-size: 1.125rem;
    }

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

@media (max-width: 480px) {
    .checkout-form-card,
    .order-summary-card {
        padding: 1.25rem;
    }

    .checkout-title {
        font-size: 1.5rem;
    }

    .checkout-btn {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-badge {
        font-size: 1rem;
    }
}
