/* ===== CSS VARIABLES ===== */
:root {
    /* Premium Beige & Gold Palette */
    --primary: #C5A059;
    /* More vibrant Gold */
    --primary-hover: #D4AF37;
    --primary-light: #E5D4B5;
    --primary-soft: rgba(197, 160, 89, 0.1);

    --secondary: #2C2C2E;
    /* Apple-style Dark */
    --accent: #D4AF37;

    /* Backgrounds */
    --bg-main: #FAF8F5;
    /* Soft Beige White */
    --bg-card: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.7);

    /* Neutrals */
    --text-main: #1C1C1E;
    --text-muted: #636366;
    --white: #FFFFFF;
    --secondary: #2C2C2E;
    --dark: #1C1C1E;
    --border-light: rgba(197, 160, 89, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    --gradient-gold: linear-gradient(135deg, #C5A059 0%, #D4AF37 100%);

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 10px 40px rgba(197, 160, 89, 0.12);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --glass-blur: blur(12px);

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

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

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #A68041 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.05));
}

.glass {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-light);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-main);
    border: 1.5px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-main);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: 32px;
}

nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    position: relative;
    transition: var(--transition-fast);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(197, 160, 89, 0.05), transparent);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-main);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 160, 126, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(184, 160, 126, 0.3);
    color: var(--dark);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

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

.hero-stats {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-main);
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0;
    background: var(--light);
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-soft);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== PAGE STYLES ===== */
.page {
    min-height: 100vh;
}

.page-hero {
    background: var(--bg-main);
    padding: 160px 0 100px;
    text-align: center;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent);
    z-index: 0;
}

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

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

.page-content {
    padding: 80px 0;
}

/* ===== CONTENT CARDS ===== */
.content-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.content-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.value-card i {
    font-size: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(184, 160, 126, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(184, 160, 126, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image:hover .service-overlay {
    opacity: 1;
}

.service-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 2px solid var(--white);
    border-radius: var(--radius-md);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 160, 126, 0.1);
}

.service-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
    flex-grow: 1;
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-hero {
    padding: 160px 0 100px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.back-link {
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    transition: var(--transition);
}

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

.service-detail-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-detail-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.detail-block {
    margin-bottom: 60px;
}

.detail-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.detail-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--gray);
}

.check-list li i {
    color: var(--success);
    font-size: 1.2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(184, 160, 126, 0.4);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
}

.cta-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid var(--primary-light);
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.cta-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #A68041;
    /* Darker gold for visibility */
    display: block;
    margin-bottom: 4px;
}

.cta-card .btn {
    margin-bottom: 15px;
}

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

    .detail-sidebar {
        position: static;
        order: -1;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

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

.contact-info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    padding: 120px 24px 60px;
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.auth-card h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 32px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    color: var(--gray);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ===== DASHBOARD ===== */
.dashboard-page {
    min-height: 100vh;
    background: var(--light);
    padding: 120px 0 60px;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 48px;
}

.dashboard-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.dashboard-header p {
    color: var(--gray);
    font-size: 18px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.dashboard-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.dashboard-card i {
    font-size: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.dashboard-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.dashboard-card p {
    color: var(--gray);
    margin-bottom: 24px;
}

.dashboard-card .btn {
    margin-top: auto;
    width: 100%;
}

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

.track-form .btn {
    margin-top: auto;
}

.logout-section {
    text-align: center;
    margin-top: 48px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 32px;
}

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

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-col p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    color: var(--gray-light);
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 4px;
}

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

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

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
}

.copyright {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    font-size: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .page-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
    }

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

    .auth-buttons {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 32px 24px;
    }

    .auth-card {
        padding: 32px 24px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .page-title {
        font-size: 36px;
    }

    .stat-number {
        font-size: 36px;
    }

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

/* ===== BOOKING WIZARD ===== */
.booking-section {
    padding: 100px 0;
    background: var(--bg-main);
}

.booking-wizard {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--shadow-premium);
}

.wizard-header {
    margin-bottom: 48px;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 24px;
}

.step-indicator {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    z-index: 1;
    transition: var(--transition-smooth);
}

.step-indicator.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.wizard-progress-bar {
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    position: relative;
    top: -22px;
    z-index: 0;
    width: 90%;
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.wizard-step h3 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
    margin-top: 20px;
}

.selection-search {
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.selection-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.selection-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.selection-card.active {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.selection-card i {
    font-size: 32px;
    color: #A68041;
    margin-bottom: 12px;
    display: block;
}

.selection-card span {
    font-weight: 600;
}

.wizard-footer {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

/* ===== COMPARISON SLIDER ===== */
.gallery-section {
    padding: 120px 0;
    background: radial-gradient(circle at 10% 20%, rgba(166, 128, 65, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(166, 128, 65, 0.05) 0%, transparent 40%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.comparison-item {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(166, 128, 65, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(166, 128, 65, 0.08);
    border-color: rgba(166, 128, 65, 0.3);
}

.comparison-info {
    text-align: left;
}

.comparison-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.comparison-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 5px;
}

.comparison-slider-container {
    width: 100%;
    position: relative;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    cursor: ew-resize;
    background: #f0f0f0;
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: filter 0.3s ease;
}

.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    border-right: 0;
    z-index: 2;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--white);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.handle-line {
    width: 100%;
    height: 100%;
    background: var(--white);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    gap: 4px;
}

.handle-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: pulse-ring 2s infinite;
}

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

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

.label-badge {
    position: absolute;
    top: 25px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--dark);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-badge.before {
    left: 25px;
}

.label-badge.after {
    right: 25px;
    background: var(--primary);
    color: var(--white);
}

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

    .comparison-slider {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .comparison-slider {
        height: 350px;
    }

    .comparison-title {
        font-size: 20px;
    }

    .label-badge {
        padding: 6px 14px;
        font-size: 10px;
        top: 15px;
    }

    .label-badge.before {
        left: 15px;
    }

    .label-badge.after {
        right: 15px;
    }
}

/* ===== REVIEWS & FAQ ===== */
.reviews-section {
    padding: 100px 0;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-stars {
    color: #FFD700;
    margin-bottom: 16px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    font-size: 48px;
    color: var(--text-muted);
    opacity: 0.4;
    flex-wrap: wrap;
}

.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--primary-soft);
}

.faq-answer {
    padding: 0 24px 24px;
    display: none;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* ===== REPAIR STATUS TIMELINE ===== */
.status-timeline {
    margin-top: 48px;
    margin-bottom: 40px;
}

.status-bar {
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    position: relative;
    margin-bottom: 24px;
}

.status-progress {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.status-steps {
    display: flex;
    justify-content: space-between;
}

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

.step-dot {
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 3px solid var(--border-light);
    border-radius: 50%;
    margin: 0 auto 12px;
    transition: var(--transition-smooth);
}

.status-step.active .step-dot {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.5);
}

.status-step span {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-step.active span {
    color: #A68041;
}

.status-details {
    background: var(--primary-soft);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-main);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    .comparison-slider {
        height: 300px;
    }

    .partner-logos {
        gap: 30px;
        font-size: 32px;
    }

    .wizard-progress-bar {
        top: -20px;
    }
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-sticky:hover {
    transform: scale(1.1) translateY(-5px);
    background: #20BA5A;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 576px) {
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* ===== OFFERS PAGE ===== */
.offers-hero {
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.15) 0%, transparent 70%), var(--bg-main);
}

.offers-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 10px 24px;
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.filter-chip.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* Featured Offer Card */
.featured-offer-section {
    margin-bottom: 80px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1.5px solid var(--primary-light);
}

.featured-img {
    position: relative;
    height: 100%;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.featured-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-label {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.featured-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
}

.price-old {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.countdown-timer {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.time-block {
    text-align: center;
}

.time-val {
    font-size: 28px;
    font-weight: 800;
    background: var(--primary-soft);
    color: var(--primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
}

.time-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.mini-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.mini-badge i {
    color: #10B981;
}

/* Weekly Deals Grid */
.weekly-deals-header {
    text-align: center;
    margin-bottom: 48px;
}

.weekly-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.deal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.deal-img {
    height: 200px;
    position: relative;
}

.deal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 800;
}

.deal-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.deal-expiry {
    font-size: 13px;
    color: #EF4444;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deal-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.deal-price .old {
    text-decoration: line-through;
    color: var(--text-muted);
}

.deal-price .new {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.slots-left {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
    font-weight: 600;
}

/* Trust Block */
.offers-trust-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-item i {
    font-size: 32px;
    color: var(--primary);
}

.trust-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-img {
        height: 300px;
    }

    .featured-content {
        padding: 32px 24px;
    }

    .featured-content h2 {
        font-size: 32px;
    }

    .price-new {
        font-size: 40px;
    }
}