@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0A429C; /* Deeper professional blue */
    --primary-red: #E11010; /* Vibrant red */
    --bg-light: #f5f7fa;
    --white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
    .grid-categories { grid-template-columns: 1fr; gap: 20px; }
}

.cat-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.cat-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cat-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .cat-card-body { padding: 20px; }
    .cat-card-img { height: 180px; }
}

/* Consultation CTA Styles */
.consultation-cta {
    background: #f0f9ff;
    padding: 60px 0;
}

.cta-box {
    cursor: pointer;
    background: white;
    border: 2px dashed var(--primary-blue);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.cta-text h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.cta-btn {
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .consultation-cta { padding: 40px 0; }
    .cta-box { padding: 30px 20px; }
    .cta-icon { font-size: 2.5rem; }
    .cta-text h2 { font-size: 1.5rem; }
    .cta-text p { font-size: 1rem; }
    .cta-btn { width: 100%; padding: 12px 25px; }
}


.text-primary { color: var(--primary-blue); }
.text-danger { color: var(--primary-red); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(10, 66, 156, 0.39);
}

.btn-primary:hover {
    background-color: #08347a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 66, 156, 0.23);
}

.btn-danger {
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(225, 16, 16, 0.39);
}

.btn-danger:hover {
    background-color: #c00e0e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 16, 16, 0.23);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-whatsapp:hover {
    background-color: #1ebe58;
}

.btn-tarif {
    background-color: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px 0 rgba(225, 16, 16, 0.39);
}
.btn-tarif:hover {
    background-color: #c00e0e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 16, 16, 0.23);
}

/* Header */
header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.logo span:first-child { color: var(--primary-blue); }
.logo span:last-child { color: var(--primary-red); }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 5px;
}

.mobile-only-btn {
    display: none;
}

@media (max-width: 992px) {
    .mobile-only-btn {
        display: block;
        width: 100%;
    }
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .btn-tarif {
        display: none; /* Hide on mobile to save space, or we can move it inside the menu */
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 20px;
        transition: 0.3s ease;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        display: none;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-item-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

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

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #f1f5f9;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    padding: 0;
}

.dropdown-menu li a {
    padding: 12px 25px;
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8fafc;
    color: var(--primary-blue);
    padding-left: 30px;
}

.dropdown-menu li a::after {
    display: none;
}

/* Nested Dropdown (Submenu) */
.dropdown-menu li {
    position: relative;
}

.dropdown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #f1f5f9;
}

.dropdown-menu li:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        border: none;
        display: none;
    }
    .dropdown-menu li:hover > .dropdown-submenu {
        display: block;
    }
}

.nav-links li a i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover > a i {
    transform: rotate(180deg);
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 66, 156, 0.9) 0%, rgba(10, 66, 156, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    opacity: 0;
}
.slide.active .hero-content {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffeb3b;
    margin-bottom: 10px;
}

.hero-content .description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content .price {
        font-size: 1.4rem;
    }
    .hero-content .description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

/* Page Header (for inner pages) */
.page-header {
    padding: 120px 0 60px;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--bg-light);
    border-radius: 40px 40px 0 0;
}

/* Sections */
section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--text-muted);
    margin-top: 10px;
}

/* Cards / Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Contact & Footer */
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

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

.footer-logo {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.footer-logo span:last-child {
    color: var(--primary-red);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-red);
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Table Tarif */
.table-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

table th {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:nth-child(even) {
    background-color: #f8fafc;
}

table tr:hover td {
    background-color: #f1f5f9;
}

/* About Us Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

.about-content ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content ul li i {
    color: var(--primary-red);
    background: rgba(225, 16, 16, 0.1);
    padding: 8px;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
}
.nussa-card { transition: all 0.3s ease; cursor: pointer; user-select: none; }
.nussa-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.2) !important; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.nussa-card:active { transform: scale(0.95); }

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    z-index: 0;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}
.slide.slide-no-overlay::before {
    display: none;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.slider-btn:hover { background: rgba(255,255,255,0.5); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.indicator.active { background: var(--primary-red); transform: scale(1.2); }

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

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

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 66, 156, 0.05);
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
    background-color: #f8fafc;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    background: rgba(225, 16, 16, 0.05);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-red);
    color: var(--white);
    transform: rotateY(360deg);
}

.feature-item h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

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

/* Testimonials Section */
.testimonials {
    background-color: #0f172a;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials .section-title h2 {
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.testimonial-text {
    font-style: italic;
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
    font-family: serif;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(225, 16, 16, 0.3);
}

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--white);
}

.user-info p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Order Form Section */
.order-section {
    background: var(--bg-light);
    position: relative;
}

.order-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group-nussa {
    margin-bottom: 0;
}

.form-group-nussa label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.form-group-nussa input, 
.form-group-nussa select, 
.form-group-nussa textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group-nussa input:focus, 
.form-group-nussa select:focus, 
.form-group-nussa textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(10, 66, 156, 0.1);
}

.btn-order-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 15px;
}

/* Modal Styles */
.modal-nussa {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal-nussa.show {
    display: flex;
    opacity: 1;
}

.modal-content-nussa {
    background-color: var(--white);
    margin: auto;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-nussa.show .modal-content-nussa {
    transform: translateY(0);
}

.close-modal-nussa {
    position: absolute;
    right: 25px;
    top: 20px;
    color: var(--text-muted);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal-nussa:hover {
    color: var(--primary-red);
}

.modal-header-nussa {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.modal-header-nussa i {
    font-size: 2rem;
    color: var(--primary-red);
}

.modal-header-nussa h3 {
    margin-bottom: 0;
    color: var(--primary-blue);
}

.modal-body-nussa {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.8;
}

.read-more-btn {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

/* Infographic Styles */
.info-section {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-top: 30px;
}

.info-banner-blue {
    background: var(--primary-blue);
    color: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-banner-blue i { font-size: 3rem; }

.info-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.info-card h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
    padding-bottom: 5px;
}

.rute-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-weight: 600;
}

.rute-list i { color: #22c55e; }

.cocok-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cocok-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.cocok-item i { color: var(--primary-blue); width: 20px; }

.moda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.moda-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.moda-card:hover { transform: translateY(-5px); }

.moda-img { width: 100%; height: 120px; object-fit: cover; }

.moda-content { padding: 15px; }

.moda-content h5 { color: var(--primary-blue); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }

.moda-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* Steps Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 800;
    border: 4px solid white;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.step-item h5 { font-size: 0.9rem; margin-bottom: 5px; color: var(--text-main); }

.step-item p { font-size: 0.75rem; color: var(--text-muted); padding: 0 10px; }

/* Full Width Layout for Specific Service */
.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f8fafc;
    padding: 80px 0;
    margin-bottom: 80px;
}

.full-width-section .container {
    max-width: 1200px;
}

.service-header-full {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.service-header-full .about-img {
    flex: 0 0 400px;
}

@media (max-width: 992px) {
    .service-header-full {
        flex-direction: column;
        text-align: center;
    }
    .service-header-full .about-img {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
}


/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .nav-links li a {
        padding: 10px 0;
        transition: all 0.2s ease;
    }
    .nav-links li a:hover {
        color: var(--primary-red);
        padding-left: 10px;
    }
}

/* Enhanced FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    position: relative;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-info h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: left;
}

.faq-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.faq-illustration {
    background: rgba(10, 66, 156, 0.03);
    padding: 40px;
    border-radius: 30px;
    border: 1px dashed rgba(10, 66, 156, 0.2);
    text-align: center;
}

.faq-illustration i {
    font-size: 5rem;
    color: var(--primary-blue);
    opacity: 0.8;
}

.faq-container {
    max-width: 100%;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(10, 66, 156, 0.3);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary-blue);
    user-select: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-red);
    background: #fffafa;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
    transform: translateX(0);
}

.faq-item.active .faq-answer {
    padding-bottom: 30px;
    max-height: 500px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon-box {
    background: var(--primary-red);
    transform: rotate(180deg);
}

.faq-icon-box i {
    font-size: 0.8rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon-box i {
    color: white;
}

@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-info {
        text-align: center;
    }
    .faq-info h2 {
        text-align: center;
    }
    .faq-illustration {
        display: none;
    }
}

@media (max-width: 768px) {
    .info-grid-2, .moda-grid, .cocok-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 30px; }
    .process-steps::before { display: none; }
    .info-banner-blue { flex-direction: column; text-align: center; }
}