:root {
    --primary: #4fa8d1;
    --primary-dark: #3a8eb5;
    --primary-light: #f0f8fc;
    --secondary: #8ac926;
    --secondary-dark: #75ab1e;
    --secondary-light: #f7fcf0;
    
    --bg: #f8fafc;
    --bg-alt: #ffffff;
    --surface: #ffffff;
    --surface-hover: #f8fafc;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --border: #e2e8f0;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 12px 20px -8px rgba(15, 23, 42, 0.06);
    --shadow-primary: 0 10px 20px -5px rgba(79, 168, 209, 0.3);
    --shadow-secondary: 0 10px 20px -5px rgba(138, 201, 38, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

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

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

/* Gradients and Highlights */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-subtitle::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.section-header {
    margin-bottom: 60px;
}
.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-header.center .section-subtitle {
    justify-content: center;
}
.section-header.center .section-subtitle::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -5px rgba(79, 168, 209, 0.45);
}
.btn-primary svg {
    transition: transform 0.3s ease;
}
.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
}
.btn-primary-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.btn-secondary:hover {
    background: var(--bg);
    border-color: rgba(15, 23, 42, 0.15);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px -5px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -5px rgba(37, 211, 102, 0.55);
}

.w-100 { width: 100%; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 50%;
    background: #ffffff;
    padding: 2px;
    box-shadow: var(--shadow-sm);
}
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-text span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary-dark);
    letter-spacing: 0.1em;
    margin-top: 2px;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--primary-dark);
}
.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px 0;
    background-color: var(--dark);
    color: #ffffff;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 30%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.hero-content {
    text-align: left;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-badge svg {
    color: var(--secondary);
}
.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #ffffff;
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-right {
    display: flex;
    justify-content: center;
    position: relative;
}
.hero-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(79, 168, 209, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}
.hero-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-card h3 svg {
    color: var(--secondary);
}
.hero-benefits {
    display: grid;
    gap: 16px;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(138, 201, 38, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}
.benefit-text h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 2px;
}
.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--bg-alt);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text h2 {
    font-size: 2.6rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}
.about-text .commitment {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin-top: 32px;
    padding-left: 24px;
    border-left: 4px solid var(--secondary);
    font-family: var(--font-heading);
}
.about-features {
    display: grid;
    gap: 20px;
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    background: var(--bg-alt);
    box-shadow: var(--shadow-md);
}
.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
    transition: var(--transition);
}
.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-primary);
}
.feature-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}
.feature-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--bg);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}
.service-card.has-image {
    padding: 0;
}
.service-card.has-image .service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.4) 100%);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 168, 209, 0.25);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::after {
    opacity: 1;
}
.service-card:hover .service-image img {
    transform: scale(1.06);
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-icon.secondary-style {
    background: var(--secondary-light);
    color: var(--secondary-dark);
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}
.service-card:hover .service-icon.secondary-style {
    background: var(--secondary);
    color: #ffffff;
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: #ffffff;
}
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.service-header-mobile {
    display: block;
}
.service-toggle-icon {
    display: none;
}
.service-body-mobile {
    max-height: none !important;
    display: block;
}

/* Specialized Services Sub-section */
.additional-services {
    margin-top: 80px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}
.additional-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.additional-header h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.additional-header p {
    color: var(--text-secondary);
}
.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.additional-card {
    text-align: center;
    padding: 24px;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid transparent;
    transition: var(--transition);
}
.additional-card:hover {
    background: #ffffff;
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.additional-card .icon-wrapper {
    width: 64px;
    height: 64px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--secondary-dark);
    transition: var(--transition);
}
.additional-card:hover .icon-wrapper {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: var(--shadow-secondary);
}
.additional-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.additional-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--bg-alt);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--dark);
    color: #ffffff;
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 168, 209, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.contact-info h2 {
    color: #ffffff;
    font-size: 2.6rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}
.info-items {
    display: grid;
    gap: 24px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.05rem;
}
.info-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.info-item:hover .info-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}
.info-text span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 2px;
}
.info-text strong {
    color: #ffffff;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
}
.modern-form {
    display: grid;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 4px rgba(79, 168, 209, 0.15);
}
.form-group select option {
    background: var(--dark);
    color: #ffffff;
}
.form-note {
    text-align: center;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 500;
}

/* Site Footer */
.site-footer {
    background: var(--dark);
    color: var(--text-light);
    padding: 80px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}
.footer-brand {
    max-width: 360px;
}
.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-brand-header img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    background: #ffffff;
    padding: 2px;
}
.footer-brand h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
}
.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-links-wrapper {
    display: flex;
    gap: 60px;
}
.footer-col h5 {
    color: #ffffff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-links a {
    font-size: 0.95rem;
    color: var(--text-light);
}
.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}



/* Scroll Reveal Animations */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    transform: translateX(-40px);
}
.reveal-left.active {
    transform: translateX(0);
}
.reveal-right {
    transform: translateX(40px);
}
.reveal-right.active {
    transform: translateX(0);
}
.reveal-scale {
    transform: scale(0.95);
}
.reveal-scale.active {
    transform: scale(1);
}

/* Floating Blobs */
.blob-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.glowing-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 168, 209, 0.12) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    animation: float-blob 20s infinite alternate ease-in-out;
}
.glowing-blob-1 {
    top: 10%;
    left: -10%;
}
.glowing-blob-2 {
    bottom: 10%;
    right: -10%;
    background: radial-gradient(circle, rgba(138, 201, 38, 0.08) 0%, transparent 60%);
    animation-delay: -5s;
    animation-duration: 25s;
}
@keyframes float-blob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 40px) scale(1.15); }
    100% { transform: translate(-30px, 80px) scale(0.9); }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}
.stat-card {
    position: relative;
    z-index: 1;
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.stat-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--bg-alt);
    position: relative;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: #ffffff;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
}
.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary-dark);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Glowing outline effects on cards */
.service-card {
    position: relative;
    z-index: 1;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover::before {
    opacity: 0.35;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 0px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.whatsapp-float svg {
    color: #ffffff;
}
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 0px rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 0px rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-right {
        order: 1;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links, .btn-primary-outline {
        display: none;
    }
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .hero-card {
        padding: 24px;
        max-width: 100%;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .about-section {
        padding: 80px 0;
    }
    .about-text h2 {
        font-size: 1.8rem;
    }
    .feature-card {
        gap: 16px;
        padding: 16px;
    }
    .feature-icon-wrapper {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    /* COMPACT MOBILE SERVICES: Vertical accordion list */
    .services-section {
        padding: 60px 0;
    }
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0;
        margin: 0;
    }
    .service-card {
        padding: 16px 20px;
        flex-direction: column;
        border-radius: 16px;
        align-items: stretch;
    }
    .service-card.has-image .service-content {
        padding: 0;
    }
    .service-header-mobile {
        display: flex !important;
        align-items: center;
        gap: 14px;
        cursor: pointer;
        width: 100%;
    }
    .service-header-mobile h3 {
        font-size: 1.15rem;
        margin: 0;
        color: var(--text-primary);
        font-family: var(--font-heading);
    }
    .service-header-mobile .service-icon {
        width: 42px;
        height: 42px;
        margin: 0;
        border-radius: 10px;
        flex-shrink: 0;
    }
    .service-header-mobile .service-icon svg {
        width: 20px;
        height: 20px;
    }
    .service-toggle-icon {
        display: flex !important;
        margin-left: auto;
        color: var(--primary-dark);
        transition: transform 0.3s ease;
    }
    .service-card.active .service-toggle-icon {
        transform: rotate(180deg);
    }
    .service-body-mobile {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        display: flex;
        flex-direction: column;
    }
    .service-card.active .service-body-mobile {
        max-height: 500px;
    }
    .service-card .service-image {
        display: none; /* Hide image by default on mobile */
        width: 100%;
        height: 160px;
        margin-top: 16px;
        border-radius: 12px;
        overflow: hidden;
    }
    .service-card.active .service-image {
        display: block; /* Show image when active */
    }
    .service-body-mobile p {
        padding: 16px 0 8px 0;
        color: var(--text-secondary);
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    /* COMPACT MOBILE SPECIALIZED SERVICES: Timeline Process layout */
    .additional-services {
        margin-top: 50px;
        padding: 32px 16px;
    }
    .additional-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: relative;
        padding-left: 20px; /* Space for the timeline line */
        margin: 0;
    }
    /* Timeline connecting line */
    .additional-grid::before {
        content: '';
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 20px;
        width: 2px;
        background: linear-gradient(to bottom, var(--primary), var(--secondary));
        z-index: 0;
    }
    .additional-card {
        display: flex !important;
        align-items: center;
        text-align: left;
        gap: 16px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 16px;
        position: relative;
        z-index: 1;
        width: 100%;
        box-shadow: var(--shadow-sm);
        flex: none;
        margin: 0;
    }
    .additional-card .icon-wrapper {
        margin: 0;
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        background: #ffffff;
        border: 2px solid var(--secondary);
        box-shadow: var(--shadow-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--secondary-dark);
        z-index: 2;
    }
    .additional-info {
        flex: 1;
    }
    .additional-info h4 {
        font-size: 1rem;
        margin-bottom: 4px;
        color: var(--text-primary);
    }
    .additional-info p {
        font-size: 0.82rem;
        line-height: 1.4;
        color: var(--text-secondary);
        margin: 0;
    }
    
    /* COMPACT MOBILE STATS: 2x2 layout */
    .stats-section {
        padding: 40px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 12px;
    }
    .stat-number {
        font-size: 2rem;
        margin-bottom: 2px;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* COMPACT MOBILE FAQ */
    .faq-section {
        padding: 80px 0;
    }
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
    
    /* COMPACT MOBILE CONTACT & FOOTER */
    .contact-section {
        padding: 80px 0;
    }
    .contact-wrapper {
        padding: 32px 20px;
    }
    .contact-form-container {
        padding: 24px 16px;
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links-wrapper {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }
}


