/* CSS Variables & Theme Configuration */
:root {
    /* Colors */
    --color-primary: #3b82f6;
    /* Blue */
    --color-primary-dark: #2563eb;
    --color-primary-light: #eff6ff;
    --color-text-main: #1e293b;
    /* Dark Slate */
    --color-text-muted: #64748b;
    --color-bg-body: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-border: #e2e8f0;
    --color-success: #22c55e;
    --color-success-bg: #f0fdf4;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 5rem 1.5rem;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    color: var(--color-text-main);
    line-height: 1.2;
    font-weight: 700;
}

/* Typography styles based on design */
.highlight {
    color: var(--color-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-text-main);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.whatsapp-btn.btn-outline {
    border-color: var(--color-border);
}

.whatsapp-btn.btn-outline:hover {
    border-color: var(--color-success);
    color: var(--color-success);
    background-color: var(--color-success-bg);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    background-color: var(--color-bg-body);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: padding var(--transition-fast);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--color-text-main);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text-main);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-main);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    padding: 6rem 0 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 750px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Stats Container */
.stats-container {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 3rem 0;
    background-color: var(--color-bg-body);
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-number span {
    color: var(--color-text-main);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/*--------------------------------------------------------------
# Responsive Design (Global & Hero)
--------------------------------------------------------------*/
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        /* Mobile nav */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg-body);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-menu.nav-active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .stats-wrapper {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item {
        width: 40%;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-body);
}

.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-body);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Icon Colors */
.icon-blue {
    background-color: #0ea5e9;
}

.icon-purple {
    background-color: #8b5cf6;
}

.icon-green {
    background-color: #22c55e;
}

.icon-teal {
    background-color: #14b8a6;
}

.icon-blue-dark {
    background-color: #3b82f6;
}

.icon-pink {
    background-color: #ec4899;
}

.icon-orange {
    background-color: #f97316;
}

.icon-red {
    background-color: #ef4444;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-text {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Responsive Grid for Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.bg-alt {
    background-color: var(--color-bg-alt);
}

.why-choose-section {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Contact Form Section
--------------------------------------------------------------*/
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-content .section-title {
    margin-bottom: 1.5rem;
}

.contact-content .section-description {
    margin-bottom: 2rem;
}

.contact-benefits {
    margin-bottom: 2.5rem;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    color: var(--color-text-main);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.contact-card:hover {
    transform: translateX(5px);
}

.card-blue {
    background-color: var(--color-primary-light);
    border-color: rgba(59, 130, 246, 0.2);
}

.card-green {
    background-color: var(--color-success-bg);
    border-color: rgba(34, 197, 94, 0.2);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-blue .card-icon {
    background-color: var(--color-primary);
    color: white;
}

.card-green .card-icon {
    background-color: var(--color-success);
    color: white;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.card-text strong {
    font-size: 1.125rem;
    color: var(--color-text-main);
}

/* Form Styles */
.contact-form-wrapper {
    background-color: var(--color-bg-body);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.lead-form h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.lead-form p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-main);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background-color: var(--color-bg-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-submit {
    width: 100%;
}

.form-secure {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0 !important;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--color-bg-alt);
    padding: 4rem 0 0 0;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-text {
    color: var(--color-text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact-link {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact-link:hover {
    color: var(--color-primary);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Sticky WhatsApp Button
--------------------------------------------------------------*/
.sticky-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-fast);
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.4), 0 8px 10px -6px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .sticky-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .sticky-whatsapp svg {
        width: 24px;
        height: 24px;
    }
}

/*--------------------------------------------------------------
# Contact Page Specific Styles
--------------------------------------------------------------*/
.page-hero {
    padding: 5rem 0 4rem;
    border-bottom: 1px solid var(--color-border);
}

.page-title {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-primary);
    font-weight: 500;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.element-padding {
    padding: 6rem 0;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.info-card-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: var(--color-bg-body);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.3);
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon.icon-success {
    background-color: var(--color-success-bg);
    color: var(--color-success);
}

.info-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.info-text a,
.info-text span {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.info-text a:hover {
    color: var(--color-primary);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.half-width {
    flex: 1;
}

.map-section {
    height: 500px;
    width: 100%;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--color-bg-alt);
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background-color: var(--color-bg-body);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    max-width: 300px;
    pointer-events: none;
}

.map-overlay h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.map-overlay p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .map-overlay {
        display: none;
    }
}

/*--------------------------------------------------------------
# About Page Specific Styles
--------------------------------------------------------------*/
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-bullet {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.0625rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.bullet-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-intro-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--color-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg-alt) 100%);
    box-shadow: var(--shadow-lg);
}

.placeholder-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.placeholder-overlay h3 {
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.placeholder-overlay p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--color-bg-body);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bg-primary-light {
    background-color: var(--color-primary-light);
}

.bg-success-light {
    background-color: var(--color-success-bg);
}

.bg-purple-light {
    background-color: #f3e8ff;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 0;
    background-color: var(--color-text-main);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.cta-banner .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-banner .btn-outline:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-banner .whatsapp-btn:hover {
    border-color: var(--color-success);
    background-color: var(--color-success);
    color: white;
}

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .image-placeholder {
        min-height: 300px;
    }
}
/* --- Founder Image Animated Border & Floating --- */
.founder-animated-wrapper {
    position: relative;
    padding: 6px; /* Width of the border */
    border-radius: 16px; /* slightly curvier to match the image */
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    background-size: 300% 300%;
    animation: animatedGradient 4s ease alternate infinite;
    display: inline-block;
    width: 100%;
}

.founder-animated-wrapper img {
    position: relative;
    border-radius: 12px;
    z-index: 1;
    width: 100%;
    object-fit: cover;
    display: block;
    animation: floatingImage 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@keyframes animatedGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatingImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* --- Hero Badge Animation --- */
.hero-badge {
    animation: badgeFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.15);
}

@keyframes badgeFloat {
    0% { transform: translateY(0px); box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.15); }
    50% { transform: translateY(-5px); box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.3); }
    100% { transform: translateY(0px); box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.15); }
}

/* ============================================
   NEW HEADER REDESIGN OVERRIDES
   ============================================ */

/* Top Info bar */
.header-topbar {
    background: #111827;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 0.45rem 0;
}
.topbar-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.topbar-item.topbar-right { margin-left: auto; }
.topbar-item a { color: rgba(255,255,255,0.75); }
.topbar-item a:hover { color: #fff; }

/* Main Header override */
.header {
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07) !important;
}
.nav-wrapper {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

/* Logo with image */
.logo {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem !important;
    color: var(--color-text-main) !important;
}
.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.logo-text { font-weight: 800; }
.logo-text em {
    font-style: normal;
    color: var(--color-primary);
}

/* Nav link underline effect */
.nav-links { gap: 0.25rem !important; }
.nav-links a {
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    position: relative;
    transition: color 0.2s, background 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    border-radius: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-links a:hover { background: var(--color-primary-light); }
.nav-links a.active::after,
.nav-links a:hover::after { transform: scaleX(1); }

/* Nav actions gap */
.nav-actions { gap: 0.75rem !important; }

/* WhatsApp nav button */
.nav-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #25D366;
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
}
.nav-wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

/* Call Now CTA */
.nav-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: #fff !important;
    font-size: 0.875rem !important;
    padding: 0.55rem 1.25rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
    transition: box-shadow 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.5) !important;
    transform: translateY(-1px) !important;
}
