/* ============================================
   MODERN STYLE - Dark Mode Elegance
   Alternative Premium Template
   ============================================ */

/* Google Fonts - Different Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

/* ============================================
   CSS Variables - Modern Dark Theme
   ============================================ */
:root {
    /* Primary Colors - Indigo/Purple Theme */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --primary-glow: rgba(99, 102, 241, 0.4);
    
    /* Secondary & Accent */
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    
    /* Dark Theme Colors */
    --bg-dark: #0f0f0f;
    --bg-dark-alt: #171717;
    --bg-card: #1f1f1f;
    --text-light: #ffffff;
    --text-muted: #a1a1aa;
    --text-subtle: #71717a;
    --border-dark: rgba(255, 255, 255, 0.1);
    
    /* Light sections */
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --text-dark: #18181b;
    --text-medium: #52525b;
    --border-light: #e4e4e7;
    
    /* Effects */
    --shadow-colored: 0 20px 40px -12px rgba(99, 102, 241, 0.35);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.25);
    
    /* Glassmorphism - Dark */
    --glass-dark: rgba(31, 31, 31, 0.8);
    --glass-blur: blur(20px);
    
    /* Spacing */
    --section-padding: 100px;
    --card-radius: 20px;
    --btn-radius: 10px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Global Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.layout-modern {
    /* Future layout variations */
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle, .section-desc {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
}

.py-section {
    padding: var(--section-padding) 0;
}

/* ============================================
   Modern Navbar
   ============================================ */
.header-wrapper .navbar {
    padding: 1rem 0;
    background: transparent;
    transition: all 0.3s ease;
}

.header-wrapper .navbar.scrolled {
    background: var(--glass-dark);
    backdrop-filter: var(--glass-blur);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 10px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: color 0.2s;
}

.navbar .nav-link:hover {
    color: white;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    left: 0;
}

.toggler-icon::before { top: -8px; }
.toggler-icon::after { top: 8px; }

.nav-cta .btn {
    padding: 0.625rem 1.5rem;
}

/* ============================================
   Hero Split Screen
   ============================================ */
.hero-split {
    background: var(--bg-dark);
    min-height: 100vh;
    padding-top: 80px;
}

.hero-text {
    max-width: 600px;
    padding: 3rem 2rem 3rem 5rem !important;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-cta .btn-link {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.hero-cta .btn-link:hover {
    color: white;
}

.hero-trust {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
}

.trust-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.trust-item span {
    font-size: 0.875rem;
    color: var(--text-subtle);
}

.hero-image-col {
    position: relative;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 30%);
}

/* ============================================
   Trust Band
   ============================================ */
.trust-band {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.client-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-subtle);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.client-logo:hover {
    opacity: 1;
}

/* ============================================
   About Modern
   ============================================ */
.about-modern {
    background: var(--bg-white);
}

.about-images {
    position: relative;
    padding: 2rem;
}

.about-images .img-main {
    width: 80%;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-lg);
}

.about-images .img-accent {
    position: absolute;
    width: 50%;
    right: 0;
    bottom: 0;
    border-radius: var(--card-radius);
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-colored);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-item span {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

/* ============================================
   Services Modern - Card Grid
   ============================================ */
.services-modern {
    background: var(--bg-light);
}

.service-card-modern {
    position: relative;
    background: white;
    border-radius: var(--card-radius);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--bg-light);
    line-height: 1;
}

.service-card-modern h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card-modern p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 0.75rem;
}

/* ============================================
   Process Timeline
   ============================================ */
.process-modern {
    background: white;
}

.process-timeline {
    position: relative;
    padding-left: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
}

.process-step {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   Stats Band
   ============================================ */
.stats-band {
    background: var(--bg-dark);
}

.stat-modern {
    padding: 1rem;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ============================================
   Team Modern
   ============================================ */
.team-modern {
    background: var(--bg-light);
}

.team-member-modern {
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member-modern:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: bottom 0.3s;
}

.team-member-modern:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: background 0.2s, color 0.2s;
}

.member-social a:hover {
    background: var(--primary-color);
    color: white;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.member-info .role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.75rem;
}

.member-info p {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   Testimonials Modern
   ============================================ */
.testimonials-modern {
    background: white;
}

.rating-summary {
    margin-top: 2rem;
}

.rating-summary .stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-summary p {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card-modern {
    background: var(--bg-light);
    border-radius: var(--card-radius);
    padding: 2rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.quote-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    font-size: 0.9375rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--text-medium);
}

/* ============================================
   FAQ Modern
   ============================================ */
.faq-modern {
    background: var(--bg-light);
}

.faq-modern .accordion-item {
    border: none;
    background: white;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-modern .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    box-shadow: none;
}

.faq-modern .accordion-button:not(.collapsed) {
    background: white;
    color: var(--primary-color);
}

.faq-modern .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-modern .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
}

/* ============================================
   CTA Modern
   ============================================ */
.cta-modern {
    background: var(--bg-dark);
    padding: 0;
}

.cta-wrapper {
    background: var(--primary-gradient);
    border-radius: var(--card-radius);
    padding: 4rem 3rem;
    transform: translateY(-50px);
    margin-bottom: -50px;
}

.cta-wrapper h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin: 0;
}

.cta-wrapper .btn-light {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
}

.cta-wrapper .btn-light:hover {
    background: var(--bg-light);
}

/* ============================================
   Contact Modern
   ============================================ */
.contact-modern {
    background: var(--bg-dark);
    padding-top: calc(var(--section-padding) + 50px);
}

.contact-modern .section-label {
    color: var(--primary-light);
}

.contact-modern .section-title {
    color: white;
}

.contact-modern .section-desc {
    color: var(--text-muted);
}

.contact-info-modern {
    margin-top: 2rem;
}

.contact-info-modern .info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-modern .info-item i {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-modern .info-item strong {
    display: block;
    color: white;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-info-modern .info-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.contact-info-modern .info-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-modern .info-item a:hover {
    color: white;
}

.contact-form-modern {
    background: white;
    border-radius: var(--card-radius);
    padding: 2.5rem;
}

.contact-form-modern .form-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.contact-form-modern .form-control,
.contact-form-modern .form-select {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-modern .form-control:focus,
.contact-form-modern .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.contact-form-modern .form-check-label {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.contact-form-modern .form-check-label a {
    color: var(--primary-color);
}

/* ============================================
   Footer Modern
   ============================================ */
.footer-modern {
    background: var(--bg-dark-alt);
    color: var(--text-muted);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-mark {
    width: 44px;
    height: 44px;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
}

.footer-tagline {
    color: var(--text-subtle);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    color: var(--text-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-heading {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-subtle);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-light);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact span,
.footer-contact a {
    color: var(--text-subtle);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-subtle);
}

.legal-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

.legal-links a {
    color: var(--text-subtle);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: white;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: var(--btn-radius);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
    background: var(--primary-gradient);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--btn-radius);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ============================================
   Cookie Consent
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    background: var(--glass-dark);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    border: 1px solid var(--border-dark);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
}

.cookie-text {
    flex: 1;
    color: white;
}

.cookie-text h6 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.cookie-text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
    .hero-text {
        padding: 2rem !important;
    }
    
    .hero-image-col {
        height: 400px;
    }
    
    .hero-image {
        position: relative;
        height: 100%;
    }
    
    .hero-image::after {
        background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 50%);
    }
    
    .about-images .img-accent {
        position: relative;
        width: 100%;
        margin-top: 1rem;
    }
    
    .experience-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-wrapper {
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
    
    .navbar .nav-link {
        color: var(--text-dark);
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .logo-text {
        color: var(--text-dark);
    }
    
    .header-wrapper .navbar.scrolled .logo-text {
        color: white;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar, .footer-modern, .btn, .cookie-consent {
        display: none !important;
    }
}
