/* ============================================
   PREMIUM DIGITAL AGENCY - MASTER STYLESHEET
   L.C Digital Solution WebCraft Studios
   Dark Theme Default | Fully Mobile Optimized
   ============================================ */

:root {
    /* Dark Theme (Default) */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --secondary: #00A3FF;
    --accent: #6C63FF;
    --dark: #0B1020;
    --dark-secondary: #111827;
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --bg-primary: #0B1020;
    --bg-secondary: #111827;
    --card-bg: #1F2937;
    --border: rgba(255, 255, 255, 0.08);
    --glow: rgba(0, 102, 255, 0.3);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.3);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Light Theme */
body.light-theme {
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --card-bg: #FFFFFF;
    --border: rgba(15, 23, 42, 0.08);
    --glow: rgba(0, 102, 255, 0.2);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* Container - Mobile First */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
.loader-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: pulseLogo 1.5s infinite;
}
@media (min-width: 768px) {
    .loader-logo { width: 80px; height: 80px; }
}
.loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@media (min-width: 768px) {
    .loader-ring { width: 100px; height: 100px; }
}
.loader-progress {
    width: 180px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 20px auto 10px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .loader-progress { width: 200px; margin: 30px auto 15px; }
}
.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width 0.1s linear;
}
.loader-text {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
}
@media (min-width: 768px) {
    .loader-text { font-size: 14px; }
}
@keyframes pulseLogo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mouse Glow - Desktop Only */
.mouse-glow {
    display: none;
}
@media (min-width: 1024px) {
    .mouse-glow {
        display: block;
        position: fixed;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s;
    }
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 80px;
    right: 16px;
    z-index: 1000;
}
@media (min-width: 768px) {
    .theme-toggle { top: 100px; right: 30px; }
}
.theme-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}
.theme-toggle-btn i {
    font-size: 1.1rem;
    color: var(--text-primary);
}
.theme-toggle-btn .fa-sun { display: block; }
.theme-toggle-btn .fa-moon { display: none; }

body.light-theme .theme-toggle-btn .fa-sun { display: none; }
body.light-theme .theme-toggle-btn .fa-moon { display: block; }

/* Navigation - Mobile First */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .nav-container { padding: 0 40px; }
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
@media (min-width: 768px) {
    .logo-img { width: 40px; height: 40px; }
}
.nav-logo-text span {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-primary);
}
.nav-logo-text small {
    font-size: 0.6rem;
    color: var(--text-muted);
}
@media (min-width: 768px) {
    .nav-logo-text span { font-size: 1.2rem; }
    .nav-logo-text small { font-size: 0.7rem; }
}
.nav-menu {
    display: none;
    list-style: none;
    gap: 20px;
}
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 15px;
}
@media (min-width: 992px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 35px;
    }
    .nav-menu.active {
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background: transparent;
        width: auto;
    }
}
.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
}
.nav-buttons {
    display: none;
    gap: 15px;
}
@media (min-width: 992px) {
    .nav-buttons { display: flex; }
}
.nav-cta-secondary {
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}
.nav-cta-secondary:hover { color: var(--primary); }
.nav-cta-primary {
    padding: 8px 20px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.nav-cta-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
@media (min-width: 992px) {
    .nav-toggle { display: none; }
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section - Mobile First */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
    background: var(--bg-secondary);
}
.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    .hero-content, .hero-visual { flex: 1; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,102,255,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .hero-badge { font-size: 14px; padding: 8px 20px; margin-bottom: 30px; }
}
.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
@media (min-width: 768px) {
    .hero-title { font-size: 3rem; margin-bottom: 20px; }
}
@media (min-width: 1024px) {
    .hero-title { font-size: 4rem; }
}
.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}
@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 30px; }
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
@media (min-width: 480px) {
    .hero-buttons { flex-direction: row; gap: 20px; }
}
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}
@media (min-width: 768px) {
    .btn-primary, .btn-secondary { padding: 14px 32px; font-size: 1rem; }
}
.btn-large { padding: 12px 24px; }
@media (min-width: 768px) { .btn-large { padding: 16px 36px; } }
.btn-primary {
    background: var(--dark);
    color: white;
}
.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
@media (min-width: 768px) {
    .hero-trust { gap: 30px; justify-content: flex-start; }
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}
@media (min-width: 768px) {
    .trust-item { font-size: 14px; gap: 8px; }
}
.trust-item i { color: var(--primary); }

/* Hero Visual - Mobile First */
.hero-visual {
    position: relative;
    height: 350px;
}
@media (min-width: 768px) {
    .hero-visual { height: 450px; }
}
.dashboard-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 350px;
}
@media (min-width: 768px) {
    .dashboard-card { padding: 24px; max-width: 400px; }
}
.dashboard-note {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}
.dashboard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.dashboard-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    margin-right: 4px;
}
.dashboard-title {
    font-size: 10px;
    color: var(--text-muted);
}
.dashboard-stats { margin-bottom: 15px; }
.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
}
.stat-row strong { color: var(--primary); }
.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}
.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 6px;
}
.floating-card {
    display: none;
}
@media (min-width: 992px) {
    .floating-card {
        display: flex;
        position: absolute;
        background: var(--card-bg);
        padding: 10px 18px;
        border-radius: 40px;
        box-shadow: var(--shadow-lg);
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 12px;
        animation: float 4s ease-in-out infinite;
        border: 1px solid var(--border);
    }
    .floating-card i { color: var(--primary); }
    .fc-1 { top: 0; right: 0; animation-delay: 0s; }
    .fc-2 { bottom: 20%; left: -30px; animation-delay: 1s; }
    .fc-3 { bottom: 0; right: 10%; animation-delay: 2s; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .section-header { margin-bottom: 60px; }
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .section-title { font-size: 2.5rem; margin-bottom: 15px; }
}
@media (min-width: 1024px) {
    .section-title { font-size: 3rem; }
}
.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .section-subtitle { font-size: 1.1rem; }
}

/* Services */
.services, .packages-section, .hosting-section, .portfolio, .about, .testimonials, .contact {
    padding: 60px 0;
}
@media (min-width: 768px) {
    .services, .packages-section, .hosting-section, .portfolio, .about, .testimonials, .contact {
        padding: 100px 0;
    }
}
.services-grid, .packages-grid, .hosting-grid, .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) {
    .services-grid, .packages-grid, .hosting-grid, .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .services-grid, .packages-grid, .hosting-grid, .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.service-card, .package-card, .hosting-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 20px;
    transition: all 0.4s;
    border: 1px solid var(--border);
}
@media (min-width: 768px) {
    .service-card, .package-card, .hosting-card { padding: 35px; }
}
.service-card:hover, .package-card:hover, .hosting-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,102,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-icon i { font-size: 1.5rem; color: var(--primary); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; font-size: 0.9rem; }
.service-link-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    transition: gap 0.3s;
}
.service-link-btn:hover { gap: 10px; }

/* Packages */
.package-card.featured, .hosting-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.01);
}
.popular-tag, .featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}
.package-price, .hosting-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0;
}
.package-price span, .hosting-price span {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--text-muted);
}
.package-features, .hosting-card ul {
    list-style: none;
    margin: 20px 0;
}
.package-features li, .hosting-card li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}
.package-features i, .hosting-card li i { color: var(--primary); }
.package-btn, .hosting-btn {
    width: 100%;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.package-btn.primary, .hosting-btn.primary {
    background: var(--dark);
    color: white;
}
.package-btn:hover, .hosting-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Portfolio */
.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s;
}
.portfolio-item:hover { transform: translateY(-5px); }
.portfolio-image {
    height: 250px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .portfolio-image { height: 300px; }
}
.portfolio-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
    z-index: 0;
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,102,255,0.95), rgba(108,99,255,0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.portfolio-icon i { font-size: 1.2rem; color: white; }
.portfolio-category {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}
.portfolio-overlay h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
}
.portfolio-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

/* About */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 992px) {
    .about-grid { flex-direction: row; gap: 60px; }
    .about-content, .about-values { flex: 1; }
}
.about-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 20px 0 30px;
    line-height: 1.6;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}
.stat span:first-child {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.stat p { font-size: 0.8rem; color: var(--text-muted); margin-top: 5px; }
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,102,255,0.1);
    padding: 15px;
    border-radius: 16px;
    margin-top: 20px;
}
.guarantee-badge i { font-size: 1.5rem; color: var(--primary); }
.about-values { display: flex; flex-direction: column; gap: 20px; }
.value-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
}
.value-card i { font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; }
.value-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* Testimonials */
.testimonials-slider { max-width: 100%; margin: 0 auto; }
@media (min-width: 768px) {
    .testimonials-slider { max-width: 900px; }
}
.testimonial-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 20px;
    position: relative;
}
@media (min-width: 768px) {
    .testimonial-card { padding: 40px; }
}
.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.2;
}
.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}
@media (min-width: 768px) {
    .testimonial-card p { font-size: 1.1rem; margin-bottom: 25px; }
}
.client-info { display: flex; align-items: center; gap: 12px; }
.client-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}
.client-info h4 { font-size: 0.95rem; margin-bottom: 3px; }
.client-info span { font-size: 0.75rem; color: var(--text-muted); }
.rating { color: #FFB800; font-size: 0.8rem; margin-top: 4px; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* Contact */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 992px) {
    .contact-wrapper { flex-direction: row; gap: 60px; }
    .contact-info, .contact-form { flex: 1; }
}
.contact-info h2 {
    font-size: 1.6rem;
    margin: 15px 0 12px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}
.contact-details > div { display: flex; align-items: center; gap: 12px; }
.contact-details i {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.contact-social { display: flex; gap: 12px; }
.contact-social a {
    width: 38px;
    height: 38px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s;
}
.contact-social a:hover {
    background: var(--primary);
    color: white;
}
.contact-form {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
}
@media (min-width: 768px) {
    .contact-form { padding: 40px; }
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 20px; }
.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}
@media (min-width: 640px) {
    .form-row { flex-direction: row; gap: 20px; }
    .form-row input { flex: 1; }
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow);
}
.full-width { width: 100%; margin-top: 16px; }
.form-note { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}
.footer-logo { width: 45px; margin-bottom: 12px; }
.footer-brand h3 { font-size: 1.1rem; margin-bottom: 8px; }
.footer-brand p { color: var(--text-muted); font-size: 0.8rem; }
.footer-links h4 { margin-bottom: 15px; font-size: 0.95rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; font-size: 0.8rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.newsletter-group {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.newsletter-group input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
}
.newsletter-group button {
    background: var(--primary);
    border: none;
    width: 40px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 12px 16px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border: 1px solid var(--border);
}
@media (min-width: 768px) {
    .cookie-consent {
        left: 20px;
        right: auto;
        padding: 12px 20px;
    }
}
.cookie-content { display: flex; align-items: center; gap: 10px; }
.cookie-content i { font-size: 1.1rem; color: var(--primary); }
.cookie-content p { font-size: 0.75rem; margin: 0; }
.cookie-buttons button {
    background: var(--primary);
    border: none;
    padding: 6px 16px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-size: 0.75rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--dark);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* Service Modal */
.service-modal-content { max-width: 500px; text-align: left; }
.service-modal-icon { text-align: center; margin-bottom: 20px; }
.service-modal-icon i { font-size: 3rem; color: var(--primary); }
#serviceModalBody ul { list-style: none; margin: 20px 0; }
#serviceModalBody li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
#serviceModalBody li i { color: var(--primary); }

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal-content {
    background: var(--card-bg);
    border-radius: 24px;
    max-width: 450px;
    width: 90%;
    padding: 30px;
    text-align: center;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.3rem;
    cursor: pointer;
}
.modal-icon i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.modal-content input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
}
.auth-switch { margin-top: 15px; font-size: 0.8rem; }
.auth-switch a { color: var(--primary); cursor: pointer; }
.payment-btn {
    display: block;
    background: var(--dark);
    color: white;
    padding: 12px;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 15px;
}