/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #c41e3a;
    --primary-dark: #a01828;
    --primary-light: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-menu > li {
    position: relative;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50px;
}

.nav-link.cta-button::after {
    display: none;
}

.nav-link.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition-normal);
    border-radius: 3px;
}

/* ===================================
   DROPDOWN MENU
   =================================== */
.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    transition: var(--transition-normal);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: var(--bg-light);
    border-left-color: var(--primary-color);
    padding-left: 1.75rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image:
        linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%),
        url('https://images.unsplash.com/photo-1452860606245-08befc0ff44b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.85) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
    padding: var(--spacing-md) 0;
}

.hero-title {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    font-size: 0.9rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--text-white);
    opacity: 0.8;
}

.hero-scroll a:hover {
    opacity: 1;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: var(--text-white);
}

.service-title {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===================================
   ADVANTAGES SECTION
   =================================== */
.advantages {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.advantage-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.advantage-card:hover::before {
    height: 100%;
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(196, 30, 58, 0.1);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.pricing-header h3 {
    color: var(--text-white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.price-detail {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.pricing-feature svg {
    flex-shrink: 0;
}

.pricing-info {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
}

.pricing-info h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.pricing-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-info li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.pricing-info li:last-child {
    border-bottom: none;
}

.pricing-cta {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.pricing-cta p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===================================
   FLOATING CTA BUTTON
   =================================== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(196, 30, 58, 0);
    }
}

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

/* Tablets */
@media (max-width: 968px) {
    .pricing-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-arrow {
        display: none;
    }

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

    .process-step {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        align-items: flex-start;
    }

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

    .menu-toggle {
        display: flex;
    }

    /* Dropdown mobile */
    .nav-item-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        margin-top: 0.5rem;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
        padding: 0;
    }

    .nav-item-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        background-attachment: scroll;
        min-height: 100svh;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .floating-cta {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

/* ===================================
   PAGE HERO (for internal pages)
   =================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.page-hero h1 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--text-white);
    text-decoration: underline;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* ===================================
   SERVICES OVERVIEW
   =================================== */
.services-overview {
    padding: var(--spacing-lg) 0;
    background: var(--bg-white);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ===================================
   DETAILED SERVICE CARDS
   =================================== */
.services-grid-detailed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-detailed-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-header h3 {
    margin-bottom: 0.5rem;
}

.service-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-detailed-card h4 {
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.service-items {
    list-style: none;
    margin-bottom: 2rem;
}

.service-items li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-items li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-items strong {
    color: var(--text-dark);
}

.service-benefits {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.service-benefits h4 {
    margin-top: 0;
}

.service-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-benefits li {
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer.active {
    max-height: 500px;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   ABOUT PAGE SPECIFIC
   =================================== */
.about-content {
    padding: var(--spacing-lg) 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

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

.about-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.about-card h3 {
    margin-bottom: 1rem;
}

/* ===================================
   PRICING TABLE
   =================================== */
.pricing-table {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

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

.pricing-table thead {
    background: var(--primary-color);
    color: var(--text-white);
}

.pricing-table th,
.pricing-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

.pricing-table td:last-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Print styles */
@media print {
    .header,
    .floating-cta,
    .hero-scroll {
        display: none;
    }

    .hero {
        background: var(--secondary-color);
        min-height: auto;
        padding: 2rem 0;
    }
}

/* ===================================
   FORM NOTIFICATIONS
   =================================== */
.form-notification {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.3s ease;
}

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

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

.form-notification svg {
    flex-shrink: 0;
}

.form-notification strong {
    display: block;
    margin-bottom: 0.25rem;
}

.form-notification p {
    margin: 0;
    font-size: 0.9rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE - PAGES INTERNES
   =================================== */

/* Tablets (968px) */
@media (max-width: 968px) {
    /* Services grid detailed - 1 colonne sur tablette */
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }

    /* Service icons moins grands */
    .service-icon svg {
        width: 40px;
        height: 40px;
    }

    /* FAQ grid */
    .faq-section {
        padding: 3rem 0;
    }

    /* Process steps */
    .process-steps {
        gap: 2rem;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    /* Page hero réduit */
    .page-hero {
        padding: 6rem 0 3rem;
        margin-top: 70px;
    }

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

    .page-hero p {
        font-size: 1rem;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.85rem;
    }

    /* Service detailed cards */
    .service-detailed-card {
        padding: 2rem 1.5rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }

    .service-icon {
        margin: 0;
    }

    .service-badge {
        width: 100%;
        text-align: center;
    }

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

    /* Service benefits grid */
    .service-benefits ul {
        grid-template-columns: 1fr;
    }

    /* Service items list */
    .service-items {
        padding-left: 1rem;
    }

    .service-items li {
        font-size: 0.95rem;
    }

    /* CTA buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

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

    .cta-section h2 {
        font-size: 1.8rem;
    }

    /* Pricing table - scroll horizontal */
    .pricing-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table table {
        min-width: 600px;
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem;
    }

    /* FAQ section */
    .faq-section {
        padding: 2rem 0;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1rem;
        padding-right: 2.5rem;
    }

    .faq-answer-content {
        padding: 1rem 0;
    }

    /* Intro text */
    .intro-text {
        padding: 0 1rem;
    }

    .intro-text h2 {
        font-size: 1.8rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    /* Contact wrapper */
    .contact-wrapper {
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-item svg {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    /* Advantages cards */
    .advantage-card {
        padding: 2rem 1.5rem;
    }

    .advantage-number {
        font-size: 2.5rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Process steps vertical */
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-arrow {
        display: none;
    }

    .process-step {
        width: 100%;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }
}

/* Small mobile (480px) */
@media (max-width: 480px) {
    /* Page hero encore plus compact */
    .page-hero {
        padding: 5rem 0 2.5rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    /* Service cards ultra compact */
    .service-detailed-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-header h3 {
        font-size: 1.3rem;
    }

    /* Buttons full width */
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* FAQ ultra compact */
    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    /* Contact form compact */
    .contact-form,
    .contact-info {
        padding: 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    /* Section spacing réduit */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* Advantage cards */
    .advantage-card {
        padding: 1.5rem 1rem;
    }

    .advantage-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .advantage-card h3 {
        font-size: 1.2rem;
    }

    /* Process compact */
    .process {
        padding: 2rem 0;
    }

    .process-step {
        padding: 1.5rem;
    }

    /* Pricing table */
    .pricing-table table {
        font-size: 0.85rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.4rem;
    }

    /* Container padding réduit */
    .container {
        padding: 0 1rem;
    }

    /* Footer compact */
    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }
}

/* ===================================
   EXPERIENCE BADGE (35 ans)
   =================================== */
.experience-badge {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 999;
    animation: fadeInBounce 0.6s ease-out;
}

.experience-badge-content {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 3px solid white;
    transition: transform var(--transition-normal);
}

.experience-badge:hover .experience-badge-content {
    transform: scale(1.05);
}

.experience-badge-number {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.experience-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===================================
   EXPERIENCE SECTION
   =================================== */
.experience-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.experience-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.experience-list svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.experience-list span {
    font-size: 1rem;
    line-height: 1.6;
}

.experience-highlight {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--bg-light);
    transition: all var(--transition-normal);
}

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

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===================================
   GALLERY SECTION (Avant/Après)
   =================================== */
.gallery-section {
    padding: var(--spacing-lg) 0;
    background: var(--bg-white);
}

.gallery-placeholder {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.gallery-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.gallery-label {
    background: var(--text-light);
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-label.after {
    background: var(--primary-color);
}

.gallery-image-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-light);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.gallery-image-placeholder svg {
    color: var(--text-light);
    opacity: 0.3;
}

.gallery-image-placeholder.after {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.gallery-image-placeholder.after svg {
    color: var(--primary-color);
    opacity: 0.5;
}

.gallery-image-placeholder p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.gallery-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
}

.gallery-note {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.gallery-note strong {
    color: var(--primary-color);
}

/* ===================================
   PRICING INFO SECTION
   =================================== */
.pricing-info-section {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.pricing-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.pricing-info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.pricing-info-card ul {
    list-style: none;
    padding: 0;
}

.pricing-info-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.pricing-info-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-info-card ul li:last-child {
    border-bottom: none;
}

/* ===================================
   RESPONSIVE - EXPERIENCE & GALLERY
   =================================== */
@media (max-width: 768px) {
    .experience-badge {
        top: 80px;
        right: 10px;
    }

    .experience-badge-content {
        padding: 0.75rem 1rem;
    }

    .experience-badge-number {
        font-size: 1.4rem;
    }

    .experience-badge-text {
        font-size: 0.65rem;
    }

    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-highlight {
        flex-direction: row;
        overflow-x: auto;
    }

    .highlight-card {
        min-width: 150px;
        padding: 1.5rem 1rem;
    }

    .highlight-number {
        font-size: 2rem;
    }

    .gallery-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .gallery-image-placeholder {
        min-height: 200px;
        padding: 2rem 1rem;
    }

    .pricing-info-content {
        grid-template-columns: 1fr;
    }

    .pricing-info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .experience-badge {
        position: static;
        margin: 1rem auto;
        width: fit-content;
    }

    .gallery-note {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
}
