@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #070514;
    --bg-card: rgba(13, 10, 33, 0.45);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover-border: rgba(255, 255, 255, 0.18);
    
    --neon-purple: #c084fc;
    --neon-blue: #3b82f6;
    --neon-pink: #f472b6;
    
    --primary-gradient: linear-gradient(135deg, #a855f7 0%, #3b82f6 50%, #ec4899 100%);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    position: relative;
}

/* Background Gradients & Glows */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.23;
    mix-blend-mode: screen;
    animation: orb-float 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #8b5cf6 0%, rgba(139, 92, 246, 0) 70%);
    animation-duration: 25s;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #ec4899 0%, rgba(236, 72, 153, 0) 70%);
    animation-duration: 20s;
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 45%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #3b82f6 0%, rgba(59, 130, 246, 0) 70%);
    animation-duration: 30s;
    animation-delay: -10s;
}

/* Grid overlay background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    pointer-events: none;
}

/* Typography Custom Rules */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.sub-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--neon-pink);
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sub-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-pink);
}

/* Glassmorphism General Card */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--glass-hover-border);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

/* Sticky Navbar */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 5, 20, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.75rem 0;
    background: rgba(7, 5, 20, 0.85);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

header.scrolled .nav-container {
    padding: 0.8rem 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--neon-purple);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

.cta-button {
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5);
}

.cta-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.72rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-whatsapp:hover::before {
    left: 100%;
}

.cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sections General */
section {
    padding: 6.5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-content h1 {
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.trust-badges {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.badge-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.badge-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

/* Live Dashboard Widget */
.hero-visual {
    position: relative;
}

.dashboard-widget {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 1.5s infinite;
}

.dashboard-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.dashboard-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    transition: var(--transition-smooth);
    position: relative;
}

.metric-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.metric-card-header {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.metric-value .currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.metric-change.positive {
    color: #10b981;
}

.metric-change.negative {
    color: #ef4444;
}

/* Charts Wrapper */
.chart-container {
    height: 180px;
    position: relative;
    margin-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.chart-legend {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
}

.legend-color {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-purple { background: var(--neon-purple); }
.legend-blue { background: var(--neon-blue); }

.chart-svg-wrap {
    width: 100%;
    height: 120px;
    position: relative;
}

.chart-svg-wrap svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* floating decorations */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    filter: blur(30px);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.fc-1 {
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
}

.fc-2 {
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 80%);
}

/* Services Section */
.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--neon-purple);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
    transform: scale(1.05) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.service-link i {
    transition: var(--transition-smooth);
}

.service-card:hover .service-link {
    color: var(--neon-pink);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* About / Credentials Section */
.about {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 3rem 2.5rem;
    text-align: center;
}

.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.profile-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 0.9rem;
    color: var(--neon-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.stat-box h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-box p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.credential-list {
    list-style: none;
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.credential-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.credential-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.credential-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Contact / Lead Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
}

.contact-info-wrap h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.contact-info-wrap p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(236, 72, 153, 0.1);
    color: var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-detail-card.phone .contact-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--neon-blue);
}

.contact-detail-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-detail-card p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
}

.contact-detail-card a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.contact-detail-card a:hover {
    color: var(--neon-pink);
}

.contact-form-card {
    padding: 3rem;
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-purple);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.form-success-msg {
    display: none;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
    animation: fadeIn 0.4s ease-out;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 4, 15, 0.9);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 320px;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Keyframe Animations */
@keyframes orb-float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 12px #10b981; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* SEO Directory Section */
.seo-directory-section {
    padding: 6.5rem 2rem;
    border-top: 1px solid var(--glass-border);
    max-width: 1280px;
    margin: 0 auto;
}

.directory-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.directory-header h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.directory-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.directory-card {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
}

.directory-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--neon-purple);
}

.directory-card-header i {
    width: 22px;
    height: 22px;
    color: var(--neon-purple);
}

.directory-card-header h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.directory-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.directory-list li {
    position: relative;
    padding-left: 1.25rem;
}

.directory-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.directory-list li:hover::before {
    transform: translateX(3px);
    color: var(--neon-purple);
}

.directory-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.4;
    transition: var(--transition-smooth);
    display: inline-block;
}

.directory-list a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding-top: 2.5rem;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .about-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .credential-item {
        justify-content: center;
        text-align: left;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-container .cta-button {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .nav-container .cta-text {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    section {
        padding: 4rem 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 3rem;
    }

    .hero-buttons .cta-button,
    .hero-buttons .cta-whatsapp {
        justify-content: center;
        width: 100%;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 2rem 1.5rem;
        justify-content: center;
        padding-top: 1.5rem;
    }

    .badge-item {
        flex: 1 1 120px;
        text-align: center;
    }
    
    .dashboard-widget {
        padding: 1.5rem 1.25rem;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .dashboard-metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-header h2, .about-content h2, .contact-info-wrap h2 {
        font-size: 2.2rem;
    }

    .about-image-card {
        padding: 2rem 1.5rem;
    }

    .profile-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .directory-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .directory-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }

    .sub-title {
        font-size: 0.8rem;
    }

    .contact-detail-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .contact-detail-card h4 {
        margin-top: 0.5rem;
    }
}
