/* === index.html styles === */
/* === VARIABLES & RESET === */
    :root {
        --color-primary: #D97706;
        --color-secondary: #92400E;
        --color-accent: #F59E0B;
        --color-dark: #1F2937;
        --color-light: #F9FAFB;
        --color-border: #E5E7EB;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    /* === TYPOGRAPHY === */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
    
    body {
        font-family: 'Inter', sans-serif;
        color: var(--color-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
    h4 { font-size: 1.5rem; }
    h5 { font-size: 1.25rem; }
    
    /* === NAVBAR === */
    .navbar {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 1rem 0;
        transition: all 0.3s ease;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-primary);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .navbar-brand i {
        font-size: 1.8rem;
    }
    
    .nav-link {
        color: var(--color-dark);
        font-weight: 500;
        padding: 0.5rem 1rem;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--color-primary);
    }
    
    .btn-primary {
        background: var(--color-primary);
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background: var(--color-secondary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    }
    
    /* === HERO === */
    .hero {
        min-height: 100vh;
        background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(146, 64, 14, 0.8)), url('../images/hero.webp') center/cover;
        display: flex;
        align-items: center;
        color: white;
        position: relative;
        padding: 100px 0 80px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        animation: fadeInUp 0.8s ease;
    }
    
    .hero h2 {
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 2rem;
        opacity: 0.9;
        animation: fadeInUp 1s ease;
    }
    
    .trust-badges {
        display: flex;
        gap: 2rem;
        margin: 2rem 0;
        flex-wrap: wrap;
        animation: fadeInUp 1.2s ease;
    }
    
    .trust-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
    }
    
    .trust-badge i {
        color: var(--color-accent);
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }
    
    .btn-outline-light {
        border: 2px solid white;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .btn-outline-light:hover {
        background: white;
        color: var(--color-primary);
    }
    
    /* === TRUST BAR === */
    .trust-bar {
        background: #F3F4F6;
        padding: 3rem 0;
    }
    
    .trust-stat {
        text-align: center;
        padding: 1rem;
    }
    
    .trust-stat h3 {
        font-size: 2.5rem;
        color: var(--color-primary);
        margin-bottom: 0.5rem;
    }
    
    .trust-stat p {
        color: #6B7280;
        font-size: 1rem;
        margin: 0;
    }
    
    /* === ABOUT === */
    .about-section {
        padding: 80px 0;
    }
    
    .about-image {
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        width: 100%;
        height: auto;
    }
    
    .values-list {
        list-style: none;
        padding: 0;
        margin-top: 2rem;
    }
    
    .values-list li {
        display: flex;
        align-items: start;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border);
    }
    
    .values-list li:last-child {
        border-bottom: none;
    }
    
    .values-list i {
        color: var(--color-primary);
        font-size: 1.5rem;
        margin-top: 0.25rem;
    }
    
    /* === SERVICES === */
    .services-section {
        padding: 80px 0;
        background: var(--color-light);
    }
    
    .service-card {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid var(--color-border);
    }
    
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }
    
    .service-card i {
        font-size: 3rem;
        color: var(--color-primary);
        margin-bottom: 1rem;
    }
    
    .service-card h5 {
        color: var(--color-dark);
        margin-bottom: 1rem;
    }
    
    .service-card a {
        color: var(--color-primary);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .service-card a:hover {
        gap: 0.75rem;
    }
    
    .services-banner {
        margin-top: 4rem;
        border-radius: 16px;
        width: 100%;
        height: auto;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    /* === WHY US === */
    .why-us-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #FEF3C7, #FED7AA);
    }
    
    .why-card {
        text-align: center;
        padding: 2rem;
    }
    
    .why-number {
        font-size: 4rem;
        font-weight: 700;
        color: var(--color-primary);
        line-height: 1;
        margin-bottom: 1rem;
    }
    
    .why-card h4 {
        color: var(--color-secondary);
        margin-bottom: 1rem;
    }
    
    /* === HOW IT WORKS === */
    .how-it-works {
        padding: 80px 0;
    }
    
    .step {
        display: flex;
        gap: 2rem;
        margin-bottom: 3rem;
        align-items: start;
    }
    
    .step-number {
        min-width: 60px;
        height: 60px;
        background: var(--color-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .step-content h4 {
        color: var(--color-dark);
        margin-bottom: 0.5rem;
    }
    
    /* === TESTIMONIALS === */
    .testimonials-section {
        padding: 80px 0;
        background: var(--color-light);
    }
    
    .testimonial-card {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .testimonial-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--color-primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .testimonial-info h5 {
        margin: 0;
        color: var(--color-dark);
    }
    
    .testimonial-info p {
        margin: 0;
        color: #6B7280;
        font-size: 0.9rem;
    }
    
    .stars {
        color: #FCD34D;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }
    
    /* === TEAM === */
    .team-section {
        padding: 80px 0;
    }
    
    .team-member {
        text-align: center;
        padding: 1.5rem;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--color-primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        margin: 0 auto 1rem;
    }
    
    .team-member h5 {
        margin-bottom: 0.25rem;
        color: var(--color-dark);
    }
    
    .team-role {
        color: var(--color-primary);
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .team-bio {
        color: #6B7280;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .team-linkedin {
        color: var(--color-primary);
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }
    
    .team-linkedin:hover {
        color: var(--color-secondary);
    }
    
    /* === FAQ === */
    .faq-section {
        padding: 80px 0;
        background: var(--color-light);
    }
    
    .accordion-item {
        border: 1px solid var(--color-border);
        margin-bottom: 1rem;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .accordion-button {
        background: white;
        color: var(--color-dark);
        font-weight: 600;
        padding: 1.25rem;
    }
    
    .accordion-button:not(.collapsed) {
        background: var(--color-primary);
        color: white;
    }
    
    .accordion-button:focus {
        box-shadow: none;
        border-color: var(--color-primary);
    }
    
    .accordion-body {
        padding: 1.25rem;
        color: #4B5563;
    }
    
    /* === CONTACT === */
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-info {
        background: var(--color-light);
        border-radius: 12px;
        padding: 2rem;
    }
    
    .contact-item {
        display: flex;
        align-items: start;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .contact-item i {
        color: var(--color-primary);
        font-size: 1.5rem;
        margin-top: 0.25rem;
    }
    
    .contact-item strong {
        display: block;
        color: var(--color-dark);
        margin-bottom: 0.25rem;
    }
    
    /* === FOOTER === */
    .footer {
        background: #1F2937;
        color: white;
        padding: 60px 0 0;
    }
    
    .footer h5 {
        color: var(--color-accent);
        margin-bottom: 1.5rem;
    }
    
    .footer ul {
        list-style: none;
        padding: 0;
    }
    
    .footer ul li {
        margin-bottom: 0.75rem;
    }
    
    .footer a {
        color: #D1D5DB;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer a:hover {
        color: var(--color-accent);
    }
    
    .social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
        background: var(--color-primary);
        transform: translateY(-3px);
    }
    
    .footer-bottom {
        background: #111827;
        padding: 1.5rem 0;
        margin-top: 3rem;
        text-align: center;
        color: #9CA3AF;
        font-size: 0.9rem;
    }
    
    .disclaimer {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 0.85rem;
    }
    
    /* === COOKIE BANNER === */
    #cookieBanner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        color: white;
        padding: 14px 24px;
        z-index: 9999;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    #cookieBanner p {
        margin: 0;
        flex: 1;
        min-width: 250px;
    }
    
    #cookieBanner a {
        color: var(--color-accent);
        text-decoration: underline;
    }
    
    .cookie-buttons {
        display: flex;
        gap: 0.5rem;
    }
    
    /* === UTILITIES & ANIMATIONS === */
    .section-title {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-title h2 {
        color: var(--color-dark);
        position: relative;
        display: inline-block;
    }
    
    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--color-primary);
        border-radius: 2px;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* === MEDIA QUERIES === */
    @media (max-width: 768px) {
        h1 { font-size: 2rem; }
        h2 { font-size: 1.75rem; }
        
        .hero {
            min-height: auto;
            padding: 80px 0 50px;
        }
        
        .hero h1 {
            font-size: 2rem;
        }
        
        .hero h2 {
            font-size: 1.1rem;
        }
        
        .trust-badges {
            gap: 1rem;
        }
        
        .about-section,
        .services-section,
        .why-us-section,
        .how-it-works,
        .testimonials-section,
        .team-section,
        .faq-section,
        .contact-section {
            padding: 50px 0;
        }
        
        .step {
            flex-direction: column;
        }
        
        #cookieBanner {
            flex-direction: column;
            align-items: stretch;
        }
        
        .cookie-buttons {
            justify-content: stretch;
        }
        
        .cookie-buttons button {
            flex: 1;
        }
    }
    
    @media (max-width: 576px) {
        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }
        
        .hero-buttons .btn-primary,
        .hero-buttons .btn-outline-light {
            width: 100%;
            text-align: center;
        }
    }