* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00bfff;
    --secondary-color: #00d4ff;
    --accent-color: #0099ff;
    --dark-bg: #0a0e17;
    --light-bg: #0f1419;
    --card-bg: #151d2b;
    --text-dark: #e8f0f7;
    --text-light: #a0b0c8;
    --border-color: #1f2d3d;
    --glow-color: #00d4ff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--dark-bg);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Container */
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0a0e17 0%, #151d2b 100%);
    color: var(--text-dark);
    padding: 30px 0;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.15), inset 0 1px 0 rgba(0, 212, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(0, 191, 255, 0.6);
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

.header-text h1 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #00bfff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.header-text .location {
    font-size: 1.1em;
    opacity: 0.95;
    font-weight: 500;
}

/* Header Navigation */
.header-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #00d4ff;
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.3);
}

.nav-link.active {
    color: #00d4ff;
    border-color: rgba(0, 191, 255, 0.5);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0e17 0%, #0f1419 50%, #151d2b 100%);
    color: var(--text-dark);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #00bfff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn {
    padding: 12px 30px;
    font-size: 1.05em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%);
    color: #0a0e17;
    font-weight: 700;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.6), 0 0 50px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.8);
}

.btn-secondary {
    background: rgba(0, 191, 255, 0.1);
    color: var(--text-dark);
    border: 2px solid rgba(0, 191, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.15em;
    position: relative;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.6);
    transform: translateY(-5px);
}

.contact-method .method-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
}

.contact-method .method-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* About Section */
.about {
    padding: 60px 0;
    background: var(--light-bg);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.about h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00bfff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text h4 {
    font-size: 1.3em;
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 191, 255, 0.08);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-left: 4px solid var(--secondary-color);
}

.highlight-item .icon {
    font-size: 1.8em;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00bfff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-top: 2px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.25), 0 0 30px rgba(0, 191, 255, 0.15);
    border-color: rgba(0, 191, 255, 0.5);
}

.service-card h3 {
    font-size: 1.6em;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00bfff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    gap: 15px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-name {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
}

.price {
    background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%);
    color: #0a0e17;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    white-space: nowrap;
    font-size: 0.95em;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.service-list li {
    display: block;
    padding: 15px 0;
}

.service-list li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

.mobile-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-style: italic;
}

.important-notes {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.08) 0%, rgba(0, 191, 255, 0.05) 100%);
    border-left: 4px solid var(--secondary-color);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.important-notes p {
    margin: 10px 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--light-bg);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.why-us h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00bfff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: var(--card-bg);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reason-card:hover {
    border-color: rgba(0, 191, 255, 0.6);
    background: var(--dark-bg);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.2), 0 0 20px rgba(0, 191, 255, 0.1);
}

.reason-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.reason-card h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e17 0%, #151d2b 100%);
    color: var(--text-dark);
    text-align: center;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #00bfff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.contact-lead {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.contact-note {
    margin-top: 30px;
    opacity: 0.85;
    font-size: 0.95em;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(21, 29, 43, 0.8);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    margin: 30px auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95em;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100% !important;
    padding: 12px 15px !important;
    background: rgba(15, 20, 25, 0.8) !important;
    border: 1px solid rgba(0, 191, 255, 0.2) !important;
    border-radius: 6px !important;
    color: var(--text-dark) !important;
    font-family: inherit !important;
    font-size: 0.95em !important;
    transition: all 0.3s ease !important;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(160, 176, 200, 0.6) !important;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    outline: none !important;
    background: rgba(15, 20, 25, 0.95) !important;
    border-color: rgba(0, 212, 255, 0.6) !important;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3) !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 14px 30px;
    font-size: 1.05em;
    font-weight: 700;
    background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%);
    color: #0a0e17;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.6), 0 0 50px rgba(0, 212, 255, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-note {
    margin-top: 15px;
    font-size: 0.85em;
    color: var(--text-light);
    text-align: center;
}

.contact-divider {
    text-align: center;
    margin: 40px 0;
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    display: inline-block;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.5), transparent);
    vertical-align: middle;
    margin: 0 10px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer p {
    margin: 8px 0;
}

.footer-location {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .logo-section {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 1;
    }

    .header-nav {
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        width: 100%;
    }

    .header-text h1 {
        font-size: 1.6em;
    }

    .hero h2 {
        font-size: 2em;
    }

    .about h3,
    .services h2,
    .why-us h2,
    .contact h2 {
        font-size: 1.8em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-pic {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .header-text {
        min-width: 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero {
        padding: 50px 0;
    }

    .about,
    .services,
    .why-us,
    .contact {
        padding: 50px 0;
    }

    .highlight-item {
        gap: 10px;
        padding: 12px;
    }

    .highlight-item .icon {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .logo-section {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        min-width: 0;
    }

    .header-text h1 {
        font-size: 1.4em;
        margin-bottom: 3px;
    }

    .header-text .location {
        font-size: 0.95em;
    }

    .header-nav {
        gap: 8px;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 0.85em;
    }

    .profile-pic {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .header-nav {
        top: 90px;
    }
}

/* PRICING PAGE STYLES */
.pricing-page {
    padding-top: 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 2.8em;
    background: linear-gradient(135deg, #00bfff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 1.1em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 191, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.25), 0 0 30px rgba(0, 191, 255, 0.15);
    border-color: rgba(0, 191, 255, 0.5);
}

.pricing-card h3 {
    font-size: 1.8em;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00bfff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-list {
    list-style: none;
    margin-bottom: 0;
}

.pricing-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.service-desc {
    flex: 1;
    color: var(--text-dark);
}

.service-price {
    background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%);
    color: #0a0e17;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    white-space: nowrap;
    font-size: 0.95em;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.pricing-note {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.08) 0%, rgba(0, 191, 255, 0.05) 100%);
    border-left: 4px solid var(--secondary-color);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 20px 0;
}

.pricing-note p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 8px 0;
}

.pricing-disclaimer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--dark-bg);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 8px;
}

.pricing-disclaimer p {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.8;
    margin: 10px 0;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.nav-btn-primary {
    background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%);
    color: #0a0e17;
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
}

.nav-btn-secondary {
    background: rgba(0, 191, 255, 0.1);
    color: var(--text-dark);
    border: 2px solid rgba(0, 191, 255, 0.4);
}

.nav-btn-secondary:hover {
    background: rgba(0, 191, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.price-variable-note {
    background: rgba(0, 191, 255, 0.08);
    border-left: 4px solid #00d4ff;
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-left: 4px solid #00d4ff;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 0.95em;
    color: var(--text-light);
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-page {
        padding-top: 15px;
    }

    .pricing-header {
        margin-bottom: 40px;
    }

    .pricing-header h2 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .pricing-header p {
        font-size: 1em;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .pricing-card {
        padding: 25px;
    }

    .pricing-card h3 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .pricing-list li {
        padding: 12px 0;
        gap: 15px;
    }

    .service-price {
        padding: 4px 12px;
        font-size: 0.9em;
    }

    .pricing-note {
        padding: 20px 25px;
        margin: 20px 0;
    }

    .pricing-note p {
        font-size: 0.95em;
    }

    .pricing-disclaimer {
        padding: 25px 20px;
        margin-top: 35px;
    }

    .nav-buttons {
        gap: 10px;
        margin-top: 35px;
    }

    .nav-btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .pricing-page {
        padding-top: 10px;
    }

    .pricing-header {
        margin-bottom: 30px;
    }

    .pricing-header h2 {
        font-size: 1.5em;
        margin-bottom: 12px;
    }

    .pricing-header p {
        font-size: 0.95em;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pricing-card {
        padding: 20px 15px;
    }

    .pricing-card h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .pricing-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        gap: 8px;
        font-size: 0.95em;
    }

    .service-desc {
        width: 100%;
    }

    .service-price {
        padding: 4px 10px;
        font-size: 0.85em;
        align-self: flex-start;
    }

    .pricing-note {
        padding: 15px 15px;
        margin: 15px 0;
    }

    .pricing-note p {
        font-size: 0.9em;
        margin: 5px 0;
    }

    .pricing-disclaimer {
        padding: 20px 15px;
        margin-top: 25px;
    }

    .pricing-disclaimer p {
        font-size: 0.9em;
        margin: 8px 0;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }

    .nav-btn {
        padding: 12px 20px;
        font-size: 0.9em;
        width: 100%;
    }
}
        right: 10px;
        width: 200px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h2 {
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1.05em;
        margin-bottom: 25px;
    }

    .cta-buttons {
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .about h3,
    .services h2,
    .why-us h2,
    .contact h2 {
        font-size: 1.5em;
        margin-bottom: 25px;
    }

    .about-text p {
        font-size: 1em;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reason-card {
        padding: 20px 15px;
    }

    .reason-icon {
        font-size: 2.2em;
        margin-bottom: 10px;
    }

    .reason-card h4 {
        font-size: 1.1em;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .service-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        gap: 8px;
    }

    .price {
        margin-top: 8px;
        font-size: 0.9em;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 25px 0;
    }

    .contact-method {
        padding: 20px 15px;
    }

    .contact-method .method-icon {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .contact-method .method-title {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .important-notes {
        padding: 15px 20px;
        margin: 15px 0;
    }

    .important-notes p {
        font-size: 0.95em;
        margin: 6px 0;
    }

    .contact-lead,
    .contact-note {
        font-size: 0.95em;
    }

    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e17 0%, #151d2b 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.8s ease-in-out 2s forwards;
}

.loading-container {
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 191, 255, 0.2);
    border-top: 4px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-size: 1.5em;
    color: #00d4ff;
    font-weight: 700;
    animation: fadeInUp 0.8s ease;
}

.loading-subtext {
    font-size: 1em;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 12px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        pointer-events: auto;
    }
    to {
        opacity: 0;
        pointer-events: none;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 102;
    padding: 8px;
    flex-shrink: 0;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background-color: #00d4ff;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .logo-section {
        flex: 1;
    }

    .header-nav {
        position: fixed;
        top: 105px;
        right: 15px;
        width: 220px;
        background: linear-gradient(135deg, #0a0e17 0%, #151d2b 100%);
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease, pointer-events 0.4s ease;
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
    }

    .header-nav.active {
        max-height: 250px;
        opacity: 1;
        pointer-events: auto;
    }

    .header-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 191, 255, 0.1);
        display: block;
    }

    .header-nav a:last-child {
        border-bottom: none;
    }

    /* Desktop - menu toujours visible */
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }

    .header-nav {
        display: flex !important;
        max-height: none !important;
        position: static !important;
        width: auto !important;
        border: none !important;
        background: none !important;
        box-shadow: none !important;

    .header {
        position: relative;
    }
}

/* Footer Version */
.footer {
    background: linear-gradient(135deg, #0a0e17 0%, #151d2b 100%);
    color: var(--text-dark);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer p {
    margin: 8px 0;
    color: var(--text-light);
}

.footer-location {
    font-size: 0.95em;
}

.footer-version {
    font-size: 0.9em;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 191, 255, 0.2);
}

.service-card,
.reason-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
}
