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

:root {
    --primary: #10b981;
    --secondary: #3b82f6;
    --accent: #f59e0b;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --bg-light: #334155;
    --bg-white: #1e293b;
    --text-dark: #f1f5f9;
    --text: #f1f5f9;
    --text-gray: #94a3b8;
    --text-muted: #94a3b8;
    --border: #334155;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #10b981, transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3b82f6, transparent);
    top: 50%;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #f59e0b, transparent);
    bottom: -250px;
    left: 30%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
}

/* Top Contact Bar */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, var(--primary), #059669);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}



.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-icon-svg {
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.logo-license {
    display: none;
}

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

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    padding: 0.6rem 1.5rem !important;
    background: linear-gradient(135deg, var(--primary), #059669);
    border-radius: 50px;
    color: white !important;
    font-weight: 600;
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 20px 0 40px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.3),
                    0 0 10px rgba(16, 185, 129, 0.2);
        border-color: rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.6),
                    0 0 30px rgba(16, 185, 129, 0.4),
                    0 0 40px rgba(16, 185, 129, 0.2);
        border-color: rgba(0, 255, 136, 0.8);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #059669);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* Financing Banner */
.financing-banner {
    background: linear-gradient(135deg, var(--primary), #059669);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 100;
    margin-top: 130px;
}

.financing-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.financing-icon {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.financing-text {
    flex: 1;
    color: white;
}

.financing-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    color: white;
}

.financing-text p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.financing-banner .btn {
    white-space: nowrap;
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.financing-banner .btn:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Featured Projects Preview */
.featured-preview {
    padding: 40px 0;
    background: var(--bg-dark);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 0 auto;
}

.featured-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-item:hover .featured-overlay {
    opacity: 1;
}

.featured-overlay h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Stats Section */
.stats {
    padding: 50px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

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

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

.stat-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.stat-link:hover {
    transform: translateY(-5px);
}

.stat-sublabel {
    font-size: 0.85rem;
    color: var(--primary);
    margin-top: 0.5rem;
    font-weight: 600;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cbd5e1;
    font-size: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: #f1f5f9;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: var(--bg-dark);
    position: relative;
}

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

.service-card {
    position: relative;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.service-card h4 {
    color: var(--primary) !important;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: var(--bg-darker);
    position: relative;
}

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

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 102, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: var(--bg-dark);
    position: relative;
}

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

.contact-info-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    height: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-info-card h3 {
    color: #f1f5f9;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

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

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-label {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.info-value {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #64748b;
}

.contact-form input,
.contact-form textarea {
    color: #f1f5f9;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-dark);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-darker);
    color: white;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer .logo {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link:first-child {
    font-size: 1.3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Top Contact Bar - Mobile */
    .top-contact-bar {
        padding: 0.8rem 0;
    }
    
    .contact-info-top {
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-link {
        padding: 0.7rem;
        font-size: 0;
        gap: 0;
        min-width: 52px;
        min-height: 52px;
        justify-content: center;
        align-items: center;
        display: flex;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 12px;
    }
    
    .contact-link span:not(.contact-icon) {
        display: none;
    }
    
    .contact-icon {
        font-size: 1.6rem;
        display: inline-block;
    }
    
    .contact-icon-svg {
        width: 26px;
        height: 26px;
        display: inline-block;
    }
    
    /* Navigation - Mobile */
    .navbar {
        position: sticky;
        top: 60px;
        padding: 1rem 0;
        margin-top: 0;
        margin-bottom: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .logo {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .logo-text {
        display: block;
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    .logo-license {
        display: block;
        font-size: 0.75rem;
        color: var(--primary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Financing Banner - Mobile */
    .financing-banner {
        margin-top: 0;
        margin-bottom: 0;
        padding: 1.2rem 0;
        display: block !important;
        visibility: visible !important;
        position: static;
        z-index: 50;
    }
    
    .financing-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1rem;
        display: flex !important;
    }
    
    .financing-icon {
        font-size: 2rem;
        display: inline-block !important;
    }
    
    .financing-text {
        display: block !important;
        flex: 1;
        color: white;
    }
    
    .financing-text h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.4rem;
        display: block !important;
        color: white !important;
        font-weight: 700;
    }
    
    .financing-text p {
        font-size: 0.95rem !important;
        display: block !important;
        color: white !important;
        margin: 0;
    }
    
    .financing-banner .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        display: block !important;
    }
    
    /* Hero - Mobile */
    .hero {
        min-height: auto;
        padding: 0;
        margin: 0;
    }
    
    .hero-badge {
        display: none;
    }
    
    .hero-title {
        display: none;
    }
    
    .hero-subtitle {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Featured Grid - Mobile */
    .featured-preview {
        padding: 1.5rem 0;
        margin-top: 0;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .featured-item {
        height: 200px;
        border-radius: 12px;
    }
    
    /* Stats - Mobile */
    .stats {
        padding: 35px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Sections - Mobile */
    .services,
    .gallery,
    .contact {
        padding: 35px 0;
    }
    
    .section-header {
        margin-bottom: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
        line-height: 1.5;
    }
    
    /* Services Grid - Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .service-card {
        padding: 1.8rem;
    }
    
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .team-photo {
        width: 110px;
        height: 110px;
    }
    
    /* Gallery - Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .gallery-item {
        height: 250px;
        border-radius: 15px;
    }
    
    /* Contact - Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.8rem;
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .info-item {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .info-icon {
        font-size: 1.3rem;
    }
    
    .info-label {
        font-size: 0.8rem;
    }
    
    .info-value {
        font-size: 0.95rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    /* Footer - Mobile */
    .footer {
        padding: 35px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 1.2rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    max-width: 90%;
    width: 320px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-menu-nav a:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--primary);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        left: 20px;
        right: auto;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 480px) {
    /* Top Bar - Extra Small Mobile */
    .top-contact-bar {
        padding: 0.4rem 0;
    }
    
    .contact-icon {
        font-size: 1rem;
    }
    
    /* Navigation - Extra Small Mobile */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .license-badge {
        font-size: 0.65rem;
        padding-left: 48px;
    }
    
    /* Financing - Extra Small Mobile */
    .financing-banner {
        margin-top: 95px;
        padding: 0.7rem 0;
    }
    
    .financing-icon {
        font-size: 1.3rem;
    }
    
    .financing-title {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .financing-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Hero - Extra Small Mobile */
    .hero {
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Featured Grid - Extra Small Mobile */
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .featured-item {
        height: 150px;
    }
    
    /* Stats - Extra Small Mobile */
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Sections - Extra Small Mobile */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Services - Extra Small Mobile */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    /* Contact - Extra Small Mobile */
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.3rem;
    }
    
    .info-icon {
        font-size: 1.3rem;
    }
    
    /* WhatsApp Button - Extra Small Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}
/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.review-card:hover::before {
    opacity: 1;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(10px);
}

.review-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.review-cta h3 {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.review-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Mobile Responsiveness for Reviews */
@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-cta {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }
    
    .review-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .review-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 1.25rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .review-stars {
        font-size: 1.1rem;
    }
}