/* ============================================================
   CABINET DE CONSEIL EN AFFAIRES - DESIGN PREMIUM COMPLET
   ============================================================ */

:root {
    --primary: #00d9ff;
    --primary-light: #3ff5ff;
    --secondary: #b024ff;
    --secondary-light: #d966ff;
    --accent: #ff006e;
    --background: #0a0e27;
    --surface-1: #0f1a3f;
    --surface-2: #1a2860;
    --text-primary: #f0f4fa;
    --text-muted: #8fa3c3;
    --text-dim: #5a6b8f;
    --border-color: rgba(0, 217, 255, 0.15);
    --shadow-primary: rgba(0, 217, 255, 0.4);
    --transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, var(--background) 0%, var(--surface-1) 50%, var(--background) 100%);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

.animated-background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.flowing-bar {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    filter: blur(12px);
    opacity: 0.4;
    width: 200vw;
}

.bar-1 {
    top: 0;
    left: 0;
    animation: slide-bar 15s linear infinite;
}

.bar-2 {
    top: 10rem;
    right: 0;
    background: linear-gradient(270deg, transparent, var(--secondary), transparent);
    opacity: 0.3;
    animation: slide-bar 20s linear infinite 3s reverse;
}

.bar-3 {
    bottom: 33%;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.2;
    animation: slide-bar 25s linear infinite 5s;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    top: 25%;
    left: -160px;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent);
}

.orb-2 {
    bottom: 33%;
    right: -160px;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, rgba(176, 36, 255, 0.15), transparent);
}

.orb-3 {
    top: 66%;
    left: 33%;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.1), transparent);
}

@keyframes slide-bar {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100vw);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.5), inset 0 0 20px rgba(0, 217, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(176, 36, 255, 0.6), inset 0 0 30px rgba(176, 36, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.5), inset 0 0 20px rgba(0, 217, 255, 0.2);
    }
}

.navbar-premium {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 217, 255, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-nav {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.4));
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-nav {
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.7));
    transform: scale(1.08);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted) !important;
    transition: color var(--transition);
    margin: 0 0.75rem;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary) !important;
    }

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--background) !important;
    border: none;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    transition: all var(--transition);
    box-shadow: 0 10px 30px var(--shadow-primary);
}

    .btn-cta:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px var(--shadow-primary);
    }

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 2rem;
    z-index: 10;
}

.hero-content {
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 600px;
}

.badge-welcome {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 50px;
    background: rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(8px);
    width: fit-content;
}

    .badge-welcome span {
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--primary);
    }

.hero-title {
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
}

.gradient-text {
    display: block;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-pulse 3s ease-in-out infinite;
    white-space: normal;
    word-spacing: 9999px;
    margin: 0;
    padding: 0;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 35rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--background);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 40px var(--shadow-primary);
    width: fit-content;
    text-decoration: none;
}

    .btn-primary-gradient:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 60px var(--shadow-primary);
        text-decoration: none;
        color: var(--background);
    }

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    text-decoration: none;
}

    .btn-outline-primary:hover {
        background: rgba(0, 217, 255, 0.1);
        text-decoration: none;
        color: var(--primary);
    }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    font-weight: 700;
    margin-top: 0.5rem;
}

.hero-visual {
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 480px;
}

.hero-box {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(176, 36, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

    .hero-box::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(0, 217, 255, 0.4), rgba(176, 36, 255, 0.3), rgba(255, 0, 110, 0.2));
        z-index: -1;
    }

    .hero-box::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.2), transparent 50%), radial-gradient(circle at 70% 70%, rgba(176, 36, 255, 0.2), transparent 50%);
        animation: shine 4s ease-in-out infinite;
        z-index: 1;
        pointer-events: none;
    }

.hero-box-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    animation: rotate-glow 20s linear infinite;
    z-index: -1;
}

.hero-logo-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-hero {
    width: 260px;
    height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 0 35px rgba(0, 217, 255, 0.65)) drop-shadow(0 0 60px rgba(176, 36, 255, 0.45));
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

    .logo-hero:hover {
        filter: drop-shadow(0 0 45px rgba(0, 217, 255, 0.9)) drop-shadow(0 0 80px rgba(176, 36, 255, 0.65));
        transform: scale(1.12);
    }

.logo-badge {
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(176, 36, 255, 0.2));
    border: 2px solid rgba(0, 217, 255, 0.5);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    animation: glow-pulse 3s ease-in-out infinite;
}

    .logo-badge span {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 1px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.animated-divider {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
}

    .animated-divider::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    }

.divider-arrow {
    font-size: 2rem;
    color: rgba(0, 217, 255, 0.4);
    font-weight: 900;
    animation: float 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.services-section {
    position: relative;
    padding: 4rem 1rem;
    z-index: 10;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 45rem;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .service-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(176, 36, 255, 0.2));
        border-radius: 16px;
        opacity: 0;
        transition: all var(--transition);
        filter: blur(20px);
    }

    .service-card:hover {
        border-color: rgba(0, 217, 255, 0.6);
        box-shadow: 0 20px 60px var(--shadow-primary);
        transform: translateY(-8px);
    }

        .service-card:hover::before {
            opacity: 1;
        }

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    transition: all var(--transition);
    box-shadow: 0 10px 30px var(--shadow-primary);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.25);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition);
    width: fit-content;
    position: relative;
    z-index: 2;
}

    .service-link:hover {
        transform: translateX(4px);
        gap: 1rem;
    }

.about-section {
    position: relative;
    padding: 4rem 1rem;
    border-top: 1px solid var(--border-color);
    z-index: 10;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason-item {
    display: flex;
    gap: 1rem;
}

.reason-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.reason-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.reason-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-box {
    position: relative;
    background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 20px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: 0 20px 60px var(--shadow-primary);
    text-align: center;
}

.about-icon {
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px var(--shadow-primary);
}

    .about-icon svg {
        width: 100%;
        height: 100%;
        padding: 1.5rem;
    }

.about-box-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.about-box-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.cta-section {
    position: relative;
    padding: 4rem 1rem;
    z-index: 10;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 45rem;
    margin: 1.5rem auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Quick Contact Bar */
.quick-contact-bar {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(176, 36, 255, 0.05));
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    padding: 1.5rem;
    z-index: 10;
}

.contact-bar-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .contact-bar-item svg {
        color: var(--primary);
        flex-shrink: 0;
    }

    .contact-bar-item span {
        color: var(--text-muted);
        font-weight: 600;
        font-size: 0.95rem;
    }

.quick-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    transition: all var(--transition);
}

    .quick-link:hover {
        color: var(--secondary);
    }

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(176, 36, 255, 0.05));
    z-index: 10;
}

.testimonial-card {
    position: relative;
    background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition);
    height: 100%;
}

    .testimonial-card:hover {
        border-color: rgba(0, 217, 255, 0.6);
        box-shadow: 0 20px 60px var(--shadow-primary);
        transform: translateY(-8px);
    }

.stars {
    margin-bottom: 1rem;
}

.star {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-name {
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.author-company {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    position: relative;
    padding: 4rem 1rem;
    z-index: 10;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition);
}

    .faq-question:hover {
        background: rgba(0, 217, 255, 0.05);
        color: var(--primary);
    }

    .faq-question svg {
        transition: transform 0.3s ease;
    }

    .faq-question[aria-expanded="true"] svg {
        transform: rotate(180deg);
    }

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border-color);
}

/* Services Detail Page */
.services-hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 4rem;
    z-index: 10;
    text-align: center;
}

.services-detail-section {
    position: relative;
    padding: 4rem 1rem;
    z-index: 10;
}

.service-detail-card {
    position: relative;
    background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

    .service-detail-card:hover {
        border-color: rgba(0, 217, 255, 0.6);
        box-shadow: 0 20px 60px var(--shadow-primary);
        transform: translateY(-8px);
    }

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    box-shadow: 0 10px 30px var(--shadow-primary);
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.service-detail-description {
    color: var(--text-muted);
    line-height: 1.7;
}

.service-benefits {
    flex-grow: 1;
}

    .service-benefits h5 {
        color: var(--primary);
        font-weight: 800;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .service-benefits ul {
        list-style: none;
        padding: 0;
    }

    .service-benefits li {
        color: var(--text-muted);
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        font-size: 0.95rem;
    }

        .service-benefits li:before {
            content: "?";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 800;
        }

/* Contact Section */
.contact-hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 4rem;
    z-index: 10;
    text-align: center;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.contact-section {
    position: relative;
    padding: 4rem 1rem;
    z-index: 10;
}

.contact-form-box {
    background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px var(--shadow-primary);
}

.form-heading {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-label {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-control {
    background: rgba(0, 217, 255, 0.05);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all var(--transition);
    font-size: 1rem;
}

    .form-control:focus {
        background: rgba(0, 217, 255, 0.1);
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
        outline: none;
        color: var(--text-primary);
    }

.form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

.form-control::placeholder {
    color: var(--text-dim);
}

.text-danger {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
}

.text-required {
    color: var(--accent);
    font-weight: 700;
}

.contact-info {
    background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.info-heading {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

    .contact-item:last-child {
        border-bottom: none;
    }

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    flex-shrink: 0;
}

.contact-label {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-value {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-link-active {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    transition: all var(--transition);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

    .contact-link-active:hover {
        color: var(--secondary);
        border-bottom-color: var(--secondary);
    }

/* Footer */
.footer-premium {
    position: relative;
    background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
    border-top: 2px solid var(--border-color);
    padding: 4rem 1rem 2rem;
    z-index: 10;
}

.logo-footer {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px var(--shadow-primary));
}

.footer-brand {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer-title {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 700;
        transition: color var(--transition);
    }

        .footer-links a:hover {
            color: var(--primary);
        }

.footer-contact-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

    .footer-contact-link:hover {
        color: var(--primary);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-bottom p {
        color: var(--text-dim);
        font-size: 0.9rem;
    }

.footer-links-bottom {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .footer-links-bottom a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 700;
        transition: color var(--transition);
    }

        .footer-links-bottom a:hover {
            color: var(--primary);
        }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-gradient,
    .btn-outline-primary {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
        min-height: 350px;
    }

    .hero-box {
        height: 350px;
    }

    .logo-hero {
        width: 200px;
        height: 200px;
    }

    .logo-badge {
        padding: 0.7rem 1.4rem;
        font-size: 0.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-box {
        padding: 2rem;
        min-height: auto;
    }

    .footer-bottom {
        flex-direction: column-reverse;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .logo-nav {
        width: 52px;
        height: 52px;
    }

    .contact-form-box {
        padding: 1.5rem;
    }

    .contact-hero {
        min-height: auto;
        padding: 6rem 1rem 3rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .form-heading,
    .info-heading {
        font-size: 1.5rem;
    }

    .contact-item {
        margin-bottom: 2rem;
    }

    .contact-bar-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-bar-item {
        gap: 0.75rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

        .cta-buttons .btn {
            width: 100%;
        }

    .btn-lg.w-100 {
        width: 100%;
        display: block;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reasons-list {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-bar-item {
        flex-direction: column;
        text-align: center;
    }

    .navbar-brand {
        font-size: 0.9rem;
    }

    .logo-nav {
        width: 45px;
        height: 45px;
    }

    .btn-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .badge-welcome {
        padding: 0.6rem 1rem;
    }

        .badge-welcome span {
            font-size: 0.75rem;
        }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.alert {
    word-wrap: break-word;
}

    .alert a {
        color: inherit;
        text-decoration: underline;
        font-weight: 700;
    }

        .alert a:hover {
            text-decoration: none;
        }
