/* ========================================
   CARNETT - Car Detailing Website Styles
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&family=Montserrat:wght@500;600&display=swap');

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-light: #ff6b9d;
    --success-color: #00d4ff;
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --font-display: 'Playfair Display', serif;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --space-3xs: 0.25rem;
    --space-2xs: 0.375rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-5xl: 6rem;
}

/* ========================================
   RESET & GLOBAL
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background:
        radial-gradient(circle at 10% 0%, rgba(233, 69, 96, 0.08), transparent 40%),
        radial-gradient(circle at 90% 15%, rgba(0, 212, 255, 0.1), transparent 35%),
        var(--page-bg);
    line-height: 1.6;
    font-weight: 400;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.3px;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin: 0 auto var(--space-3xl);
    max-width: 900px;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    margin: 0 auto;
    max-width: 70ch;
    font-size: 1.05rem;
    line-height: 1.75;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
    color: white;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; /* Anchor the mobile dropdown menu */
}

.navbar-brand {
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    transition: transform 0.3s ease;
    font-family: var(--font-display);
    letter-spacing: -1px;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: transform 0.35s ease;
}

.logo-icon:hover,
.logo:hover .logo-icon {
    animation: logoPulse 0.9s ease infinite;
}

@keyframes logoPulse {
    0% {
        transform: scale(1) rotate(0deg);
    }
    40% {
        transform: scale(1.2) rotate(6deg);
    }
    70% {
        transform: scale(1.05) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2.2rem;
}

.logo-text {
    color: var(--accent-color);
    font-weight: 800;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
    border-radius: 999px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 999px;
    transition: width 0.35s ease, left 0.35s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 56%;
    left: 22%;
}

.nav-link.btn-primary {
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: var(--space-5xl) 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: white;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.3px;
}

.hero .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    font-weight: 400;
    line-height: 1.8;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-shape-inner {
    position: absolute;
    inset: 15%;
    border-radius: inherit;
    opacity: 0.3;
    filter: blur(12px);
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: 50px;
    left: -50px;
}

.shape-1::after,
.shape-2::after {
    content: '';
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
    animation: floatPulse 9s ease-in-out infinite;
}

.shape-1::after {
    animation-delay: 0s;
}

.shape-2::after {
    animation-delay: 3s;
}

@keyframes floatPulse {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: var(--space-5xl) 20px var(--space-4xl);
    background-color: white;
}

.features h2 {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg, 14px);
    background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg, 14px);
    padding: 1px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.25), rgba(0, 212, 255, 0.25));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card.active::before,
.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, white 0%, #f5f5f5 100%);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services Preview */

.services-preview {
    padding: var(--space-4xl) 20px var(--space-5xl);
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
}

.preview-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: var(--space-3xl);
}

.preview-forfaits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.preview-forfait {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    border-top: 4px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.preview-forfait.featured {
    border-top-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.preview-forfait:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.preview-forfait.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.forfait-emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.preview-forfait h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.forfait-tagline {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
    min-height: 40px;
}

.forfait-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.quick-list {
    list-style: none;
    text-align: left;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.quick-list li {
    padding: 6px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.quick-list li:last-child {
    border-bottom: none;
}

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

    .preview-forfait.featured {
        transform: scale(1);
    }

    .preview-forfait.featured:hover {
        transform: translateY(-5px);
    }
}

/* ========================================
   FORFAITS SECTION
   ======================================== */

.forfaits-section {
    padding: var(--space-4xl) 20px var(--space-5xl);
    background-color: white;
}

.forfaits-section h2 {
    text-align: center;
}

.forfaits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.forfait-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 0;
}

.forfait-card::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.25), rgba(0, 212, 255, 0));
    filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.forfait-card:hover::before,
.forfait-card.featured::before {
    opacity: 1;
}

.forfait-card.featured {
    border-top-color: transparent;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.8));
    box-shadow: 0 20px 45px rgba(233, 69, 96, 0.25);
}

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

.forfait-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.forfait-card .btn {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.forfait-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.forfait-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.forfait-description {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.price-display {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 25px;
}

.forfait-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: left;
    flex-grow: 1;
}

.forfait-details strong {
    display: block;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.forfait-details ul {
    list-style: none;
}

.forfait-details li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.forfait-details li:last-child {
    border-bottom: none;
}

.forfait-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.forfait-meta .duration {
    color: var(--text-gray);
}

.forfait-meta .savings {
    color: var(--success-color);
    font-weight: bold;
}

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

    .forfait-card.featured {
        transform: scale(1);
    }

    .forfait-card.featured:hover {
        transform: translateY(-10px);
    }

    .price-display {
        font-size: 2rem;
    }
}

/* SERVICES APPROACH - Already Defined Above */

/* ========================================
   PACKAGES SECTION (Legacy - Can be Removed if Not Used)
   ======================================== */

.packages {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.category-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.category-header h2 {
    margin-bottom: 10px;
}

.category-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: linear-gradient(135deg, #fff 0%, #fcf5f6 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(233, 69, 96, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(233, 69, 96, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.service-card .description {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-details-list {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-details-list strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: var(--font-heading);
}

.service-details-list ul {
    list-style: none;
}

.service-details-list li {
    padding: 5px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-meta .price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: var(--space-2xl);
}

/* ========================================
   OPTIONS SECTION
   ======================================== */

.options {
    padding: 60px 20px;
    background-color: white;
}

.options h2 {
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.option-card {
    background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.option-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.option-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.option-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-services {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.faq-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
}

.faq-item h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.2px;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   SERVICES APPROACH SECTION
   ======================================== */

.services-approach {
    padding: var(--space-3xl) 20px var(--space-4xl);
    background-color: white;
}

.services-approach h2 {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.approach-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.approach-item h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.approach-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   PACKAGE CARDS IMPROVEMENTS
   ======================================== */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    border-top-color: var(--accent-color);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

.package-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.package-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.package-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price-badge {
    font-size: 2.2rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.package-includes {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.package-includes strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.package-includes ul {
    list-style: none;
}

.package-includes li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-meta {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 10px;
}

.savings {
    color: var(--success-color);
    font-weight: bold;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .services-grid,
    .options-grid,
    .faq-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .package-meta {
        flex-direction: column;
        justify-content: flex-start;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .category-header h2 {
        font-size: 1.6rem;
    }
}

/* ========================================
   PACKAGES SECTION
   ======================================== */

.packages {
    padding: var(--space-3xl) 20px var(--space-4xl);
    background-color: #f8f9fa;
}

.packages h2 {
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    border-top-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.package-card .price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.package-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.package-card li:last-child {
    border-bottom: none;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process {
    padding: var(--space-5xl) 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.process h2 {
    text-align: center;
    color: white;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    min-width: 200px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step h3 {
    color: white;
}

.step p {
    color: #ccc;
    margin: 0;
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent-color);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: var(--space-4xl) 20px var(--space-5xl);
    background-color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #fcf5f6 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(233, 69, 96, 0.12);
}

.testimonial-card .stars {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1rem;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio-section {
    padding: 60px 20px;
    background-color: white;
}

.portfolio-stage {
    position: relative;
    isolation: isolate;
    padding: 20px 0 40px;
}

.portfolio-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 25%, rgba(233, 69, 96, 0.09), transparent 42%),
                radial-gradient(circle at 75% 15%, rgba(0, 212, 255, 0.12), transparent 35%);
    filter: blur(30px);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.portfolio-stage {
    position: relative;
    isolation: isolate;
    padding: 20px 0 40px;
}

.portfolio-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 25%, rgba(233, 69, 96, 0.09), transparent 42%),
                radial-gradient(circle at 75% 15%, rgba(0, 212, 255, 0.12), transparent 35%);
    filter: blur(30px);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease, transform 0.4s ease;
    position: relative;
}

.portfolio-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px) scale(1.01);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-within .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.portfolio-info p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========================================
   BEFORE/AFTER SECTION
   ======================================== */

.before-after {
    padding: var(--space-3xl) 20px var(--space-4xl);
    background-color: white;
}

.before-after h2 {
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: var(--space-3xl);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.before-after-item {
    text-align: center;
}

.comparison-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    background: white;
}

.comparison-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.before,
.after {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.before img,
.after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before .label,
.after .label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
}

.after .label {
    background-color: rgba(233, 69, 96, 0.9);
}

.before-after-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.before-after-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ========================================
   RESULTS SECTION
   ======================================== */

.results {
    padding: var(--space-4xl) 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.results h2 {
    text-align: center;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #ccc;
    margin: 0;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: var(--space-4xl) 20px;
    text-align: center;
}

.page-header h1 {
    color: var(--accent-color);
    font-size: 3.5rem;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -1px;
}

.page-header p {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: 60px 20px;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}

.contact-form {
    background: white;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 15px;
}

.preselected-service {
    margin-top: 0.5rem;
    color: #00d4ff;
    font-weight: 600;
}

.preselected-service {
    margin-top: 0.5rem;
    color: #00d4ff;
    font-weight: 600;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    padding: 0;
    margin: 0;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.checkbox-label:hover {
    color: var(--accent-color);
}

.contact-info {
    background: rgba(25, 32, 84, 0.04);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(25, 32, 84, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(25, 32, 84, 0.15);
}

.contact-info h2 {
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-item p {
    margin: 5px 0;
}

.info-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.small {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.map-placeholder {
    background: #ddd;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: #666;
}

.map-embed {
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.social-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.social-section h3 {
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--accent-light);
}

/* ========================================
   SIMPLE CONTACT FORM
   ======================================== */

.contact-form-alt {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.contact-form-alt h2 {
    color: white;
}

.contact-form-alt p {
    color: #ccc;
    margin-bottom: 30px;
}

.simple-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.simple-contact-form input,
.simple-contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px;
    border-radius: 8px;
}

.simple-contact-form input::placeholder,
.simple-contact-form textarea::placeholder {
    color: #ccc;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.story-section {
    padding: var(--space-4xl) 20px;
    background-color: white;
}

.story-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.mission-section {
    padding: var(--space-3xl) 20px var(--space-4xl);
    background-color: #f8f9fa;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.mission-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.team-section {
    padding: var(--space-4xl) 20px;
    background-color: white;
}

.team-section h2 {
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.team-member {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.member-image {
    font-size: 4rem;
    margin-bottom: 15px;
}

.team-member h3 {
    color: var(--text-dark);
}

.team-member .role {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.team-member .bio {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.expertise-section {
    padding: var(--space-4xl) 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.expertise-section h2 {
    text-align: center;
    color: white;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.expertise-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.expertise-item h3 {
    margin-bottom: 20px;
    color: var(--accent-light);
}

.expertise-item ul {
    list-style: none;
}

.expertise-item li {
    padding: 10px 0;
    color: #ccc;
}

.why-us {
    padding: var(--space-3xl) 20px var(--space-4xl);
    background-color: white;
}

.why-us h2 {
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.why-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.why-item .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-item h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-gray);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: var(--space-5xl) 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .cta-buttons {
    justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--accent-light);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

/* ========================================
   PAGE TRANSITIONS & ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.page-content {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.page-content.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.page-content.fade-out {
    animation: fadeOut 0.25s ease-in forwards;
}

/* ========================================
   LIGHTBOX MODAL
   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-frame {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1002;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 5px;
}

.lightbox-next {
    right: 5px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 1001;
}

.portfolio-item {
    cursor: pointer;
}

.portfolio-item:hover {
    filter: brightness(1.05);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 1001;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-menu li:last-child {
        border-bottom: none;
    }

    .navbar-menu .nav-link {
        display: block;
        padding: 14px 18px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .story-section .container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .comparison-slider {
        grid-template-columns: 1fr;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

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

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .image-placeholder {
        height: 250px;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .social-buttons {
        justify-content: center;
    }
}

/* ========================================
   DESIGN REFRESH (2026-04)
   ======================================== */

:root {
    --page-bg: #f2f5fb;
    --surface: #ffffff;
    --surface-soft: #f8faff;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-soft: 0 12px 30px rgba(22, 33, 62, 0.1);
}

.navbar {
    background: rgba(26, 26, 46, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
    border-radius: 999px;
    padding: 8px 14px;
}

.nav-link.is-active {
    color: var(--accent-light);
    background: rgba(233, 69, 96, 0.12);
}

.nav-link.nav-cta {
    background: var(--accent-color);
    color: #fff;
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta.is-active {
    color: #fff;
    background: var(--accent-light);
}

.hero,
.page-header,
.cta-section,
.footer {
    background: linear-gradient(135deg, #141828 0%, #212b4f 100%);
}

.hero {
    border-radius: 0 0 28px 28px;
}

.features,
.services-preview,
.forfaits-section,
.portfolio-section,
.contact-section {
    background: transparent;
}

.feature-card,
.preview-forfait,
.forfait-card,
.contact-info {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(22, 33, 62, 0.08);
    box-shadow: var(--shadow-soft);
}

.preview-forfait,
.forfait-card,
.contact-info,
.contact-form {
    background: var(--surface);
}

.trust-strip {
    margin-top: -30px;
    position: relative;
    z-index: 3;
    padding: 0 20px 20px;
}

.trust-strip-grid {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(22, 33, 62, 0.08);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
}

.trust-item {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(22, 33, 62, 0.08);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.trust-item span {
    color: var(--text-gray);
    font-size: 0.92rem;
}

.contact-form-wrapper {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(22, 33, 62, 0.08);
    box-shadow: var(--shadow-soft);
}

.contact-intro {
    background: var(--surface-soft);
    border: 1px dashed rgba(233, 69, 96, 0.35);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-bottom: 24px;
}

.contact-intro p {
    margin-bottom: 10px;
}

.contact-highlights {
    margin: 0;
    padding-left: 18px;
    color: var(--text-gray);
}

.contact-highlights li {
    margin-bottom: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
    border-color: #d5deec;
    background: #fbfcff;
}

@media (max-width: 900px) {
    .trust-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-item:nth-child(2n) {
        border-right: 0;
    }

    .trust-item {
        border-bottom: 1px solid rgba(22, 33, 62, 0.08);
    }

    .trust-item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}

@media (max-width: 768px) {
    .nav-link {
        border-radius: 0;
        padding: 12px 18px;
    }

    .nav-link.nav-cta {
        margin: 8px 12px;
        border-radius: 10px;
    }

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

@media (max-width: 520px) {
    .trust-strip-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:nth-child(2n) {
        border-right: 0;
    }

    .trust-item:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(22, 33, 62, 0.08);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }
}
