:root {
    /* Brand Colors */
    --primary: #0f172a;       /* Slate 900 */
    --primary-light: #334155; /* Slate 700 */
    --accent: #E31E24;        /* Corporate Red */
    --accent-hover: #b91c1c;  /* Red 700 */
    --accent-light: #fee2e2;  /* Red 100 */
    
    /* Text Colors */
    --text-main: #334155;     /* Slate 700 */
    --text-dark: #0f172a;     /* Slate 900 */
    --text-light: #64748b;    /* Slate 500 */
    --text-white: #ffffff;
    
    /* Backgrounds */
    --bg-body: #f8fafc;       /* Slate 50 */
    --bg-white: #ffffff;
    --bg-muted: #f1f5f9;      /* Slate 100 */
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Borders & Shadows */
    --border: #e2e8f0;        /* Slate 200 */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    
    /* Spacing & Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --container: 1200px;
    --header-height: 80px;
    
    /* Patterns */
    --pattern-dots: radial-gradient(#cbd5e1 1px, transparent 1px);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    width: 100%;
}
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    background-image: var(--pattern-dots);
    background-size: 24px 24px;
    color: var(--text-main);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); margin: 0 0 1rem 0; line-height: 1.2; }

/* Layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.grid { display: grid; gap: 2rem; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }

/* Desktop Styles for Submenu Toggle */
.submenu-toggle {
    display: none;
}
.menu-link-wrapper {
    display: contents; /* Treat as if wrapper doesn't exist on desktop */
}

@media (max-width: 992px) {
    .grid.three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid.two, .grid.three { grid-template-columns: 1fr; }
}

/* Buttons */
.cta, .ghost, button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    border: none;
}
.cta, button[type="submit"] {
    background: var(--accent);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}
.cta:hover, button[type="submit"]:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 30, 36, 0.4);
}
.ghost {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.3);
}
.ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--text-white);
}

/* Animations */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(227, 30, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0); }
}
.pulse {
    animation: pulse-glow 2s infinite;
}

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

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.topbar {
    background: linear-gradient(-45deg, #0f172a, #1e3a8a, #312e81, #1e1b4b, #0f172a);
    background-size: 400% 400%;
    animation: gradient-move 15s ease infinite;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-right { display: flex; gap: 1rem; align-items: center; }
.header-inner {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { font-weight: 800; font-size: 1.5rem; color: var(--primary); display: flex; align-items: center; gap: 0.5rem; }
.logo img { max-height: 50px; width: auto; }
.main-nav ul { display: flex; gap: 2rem; position: relative; }
.main-nav > ul > li { position: relative; } /* Added for dropdown positioning */
.main-nav a { font-weight: 500; color: var(--text-dark); position: relative; padding: 0.5rem 0; }
.main-nav a:hover { color: var(--accent); }

/* Dropdown Menu */
.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    min-width: 220px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
}

.main-nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown li {
    width: 100%;
}

.main-nav .dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.main-nav .dropdown a:hover {
    background: var(--bg-muted);
    color: var(--accent);
    padding-left: 1.75rem;
}
.header-actions { display: flex; gap: 1rem; align-items: center; }
.phone { font-weight: 700; color: var(--text-dark); }

/* Header Phones Styling */
.topbar-phones {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-right: 1.5rem;
    position: relative;
}

.topbar-phones::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    height: 16px;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.phone-link-top {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.phone-link-top:hover {
    color: white;
}

.phone-link-top i {
    font-size: 1rem;
    opacity: 0.8;
}

.header-phone-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-right: 0.5rem;
}

.header-phone-item {
    font-size: 0.95rem; /* Increased to match WhatsApp */
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 700; /* Increased to match WhatsApp */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.header-phone-item:hover {
    color: var(--accent);
}

.header-phone-item.highlight {
    color: #25D366; /* WhatsApp Green */
    /* font-size and font-weight are now inherited/same */
}

.header-phone-item.highlight:hover {
    color: #128C7E;
}

.header-phone-item i {
    width: 16px;
    text-align: center;
}

/* Header Actions Adjustments */
.header-actions { 
    display: flex; 
    gap: 1rem; 
    align-items: center; 
}

/* Footer Phone Improvements */
.footer-phone-block {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-phone-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-phone-link:hover {
    color: white;
    padding-left: 5px;
}

.footer-phone-link.highlight {
    color: #25D366;
    font-weight: 600;
}

.footer-phone-link.highlight:hover {
    color: #4ade80;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background-color: #0f172a; /* Fallback */
    background: linear-gradient(-45deg, #0f172a, #1e3a8a, #312e81, #1e1b4b, #0f172a);
    background-size: 400% 400%;
    animation: gradient-move 15s ease infinite;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    min-height: 600px; /* Ensure height */
}
.dynamic-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out;
}
.element-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(30, 58, 138, 0.4);
    animation-delay: 0s;
}
.element-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(227, 30, 36, 0.15);
    animation-delay: -5s;
}
.element-3 {
    top: 20%;
    right: 30%;
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.15);
    animation-delay: -2.5s;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.eyebrow {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(227, 30, 36, 0.2);
    color: var(--accent);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(227, 30, 36, 0.3);
}
.hero h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}
.hero-actions { display: flex; gap: 1rem; }

/* Hero Form */
.hero-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-dark);
}
.hero-form h3 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.hero-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: border-color 0.2s;
}
.hero-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1); }
.hero-form button { width: 100%; padding: 1rem; font-size: 1.1rem; }
.form-note { font-size: 0.75rem; color: var(--text-light); margin-top: 1rem; text-align: center; }
.checkbox { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.9rem; cursor: pointer; }
.checkbox input { width: auto; margin: 0; }

/* Features/Services */
.section { padding: 5rem 0; }
.section.muted { background: var(--bg-muted); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header h2 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; color: var(--text-light); }

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

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

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}
.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
    border-color: var(--accent);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent), #ff5f6d);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 60px; height: 60px;
    background: var(--bg-muted);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}
.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--text-white);
    transform: rotateY(180deg);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-light); margin-bottom: 1.5rem; flex: 1; }
.service-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.service-link i { transition: transform 0.2s; }
.service-link:hover i { transform: translateX(5px); }

/* Footer */
.site-footer {
    background: linear-gradient(-45deg, #0f172a, #1e3a8a, #312e81, #1e1b4b, #0f172a);
    background-size: 400% 400%;
    animation: gradient-move 15s ease infinite;
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}
.footer-brand .footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Ensure logo is white on dark bg */
}
.footer-brand h2 { color: var(--text-white); margin-bottom: 1rem; }
.footer-desc { 
    margin-bottom: 1.5rem; 
    max-width: 320px; 
    line-height: 1.6;
    opacity: 0.8;
}
.footer-legal { margin-bottom: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.6); text-decoration: underline; font-size: 0.85rem; }
.footer-legal a:hover { color: var(--accent); }

.social-links { display: flex; gap: 0.8rem; }
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    color: white;
}
.social-links a:hover {
    background: var(--accent);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-col h3 { 
    color: var(--text-white); 
    margin-bottom: 1.2rem; 
    font-size: 1.1rem; 
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--accent);
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); padding-left: 5px; }

/* Footer Phone Styling */
.footer-phone-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-phone-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem; /* Matched to header */
    font-weight: 700;   /* Matched to header */
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-phone-link:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer-phone-link.highlight {
    color: #25D366; /* WhatsApp Green */
    /* font-weight inherited */
}
.footer-phone-link.highlight:hover {
    color: #34e775;
}
.footer-contact .contact-item { 
    display: flex; 
    gap: 1rem; 
    margin-bottom: 1rem; 
    align-items: flex-start;
}

/* Contact Page Phone Styling */
.contact-page-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.contact-phone-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.2s;
}
.contact-phone-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}
.contact-phone-item:hover {
    background: #e9ecef;
    color: var(--primary-color);
    transform: translateX(5px);
}
.contact-phone-item.whatsapp {
    background: #e7fcf0;
    color: #0c6126;
    border: 1px solid rgba(37, 211, 102, 0.2);
}
.contact-phone-item.whatsapp i {
    color: #25D366;
}
.contact-phone-item.whatsapp:hover {
    background: #dcfce7;
}
.footer-contact i { 
    color: var(--accent); 
    margin-top: 4px; 
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
.footer-contact p { margin: 0; line-height: 1.5; }

/* Footer Form */
.footer-simple-form input,
.footer-simple-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 4px;
    color: #333;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s;
}
.footer-simple-form input:focus,
.footer-simple-form textarea:focus {
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px var(--accent);
}
.footer-simple-form button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.footer-simple-form button:hover {
    background: #d61c22; /* slightly darker red */
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: white; }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-brand, .footer-bottom { text-align: center; }
    .footer-brand .footer-logo img { margin: 0 auto 1rem; }
    .social-links { justify-content: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .footer-col h3 { text-align: center; }
    .footer-services ul, .footer-contact { text-align: center; }
    .footer-contact .contact-item { justify-content: center; }
    
    /* Hide WhatsApp Text on Mobile */
    .whatsapp-text {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex !important; /* Force display */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 99999; /* Ensure it's on top of everything */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}
.whatsapp-text {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
}
.whatsapp-text::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    background: var(--accent);
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.floating-cta:hover {
    transform: translateY(-2px);
    color: var(--text-white);
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

/* Mobile Menu Footer Default (Hidden on Desktop) */
.mobile-menu-footer {
    display: none;
}

/* Close Button */
.mobile-menu-close {
    display: none;
}

@media (max-width: 992px) {
    .mobile-menu-close {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-dark);
        cursor: pointer;
        z-index: 1000;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.2s;
    }
    .mobile-menu-close:hover {
        background: rgba(0,0,0,0.05);
        color: var(--primary);
    }

    .mobile-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
    .main-nav.is-active {
        right: 0;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0; /* Changed from 1.5rem to 0 to handle border separation better */
    }
    .main-nav > ul > li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .menu-link-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
    }
    .main-nav a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }
    .submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        color: var(--text-dark);
        transition: transform 0.3s;
    }
    .submenu-toggle.is-active {
        transform: rotate(180deg);
        color: var(--primary);
    }
    
    /* Mobile Dropdown Reset */
    .main-nav .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: rgba(0,0,0,0.02);
        display: none; /* Hidden by default */
        width: 100%;
        min-width: 100%;
    }
    .main-nav .dropdown.is-active {
        display: block;
    }
    .main-nav .dropdown li {
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    .main-nav .dropdown a {
        padding: 0.8rem 1rem 0.8rem 2rem; /* Indented */
        font-size: 1rem;
    }
    .main-nav .dropdown a:hover {
        background: transparent;
        color: var(--primary);
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    .nav-overlay.is-active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero Grid */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    
    /* Topbar */
    .topbar-inner {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    /* Header Layout */
    .header-inner {
        padding: 0 1rem; /* Add some padding */
    }
    
    /* Logo adjustments */
    .logo img { 
        max-height: 36px; /* Smaller logo for mobile */
    }
    
    /* Header Actions */
    .header-actions {
        gap: 0.5rem;
        margin-left: auto; /* Push to right */
        margin-right: 0.5rem;
    }
    
    /* Hide CTA Button on Mobile (Floating CTA is available) */
    .header-actions .cta { 
        display: none; 
    }
    
    /* Phone Block Adjustments */
    .header-phone-block {
        display: flex !important;
        align-items: flex-end;
        margin-right: 1rem; /* Added space to move left from menu button */
    }
    
    .header-phone-item {
        font-size: 0.8rem;
        white-space: nowrap;
        padding: 2px 0;
    }
    
    .header-phone-item i {
        font-size: 0.9em;
        width: 14px;
    }
    
    /* Toggle Button */
    .mobile-toggle {
        padding: 0.25rem;
        font-size: 1.4rem;
        margin-left: 0;
    }
    
    /* Hide Floating Icons when Menu Open */
body.menu-open .floating-whatsapp,
body.menu-open .floating-cta {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
    
    /* Mobile Menu Footer */
    .mobile-menu-footer {
        display: block;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    .mobile-contact-item {
        display: flex;
        align-items: center; /* Changed to center for better alignment */
        gap: 1rem;
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
        color: var(--text-dark);
        padding: 0 0.5rem;
    }
    .mobile-contact-item i {
        color: var(--primary);
        width: 24px;
        text-align: center;
        margin-top: 0;
        font-size: 1.1rem;
    }
    .mobile-contact-item p {
        margin: 0;
        line-height: 1.4;
    }
    .mobile-contact-item a {
        color: inherit;
    }
    .mobile-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    .mobile-social a {
        width: 36px;
        height: 36px;
        background: var(--bg-muted);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        transition: all 0.2s;
    }
    .mobile-social a:hover {
        background: var(--primary);
        color: white;
    }

    /* Footer & Other Mobile Styles */
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}

/* --- Added Styles for Homepage Sections --- */

/* Text Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Utility */
.glass-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.glass-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

/* Process Steps */
.steps-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.step-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.step-no {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(227, 30, 36, 0.1); /* Accent with low opacity */
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}
.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-dark);
    z-index: 1;
}
.step-card div:last-child {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

/* Stats (Social Proof) */
.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.stat-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Proof (Bottom of Hero) */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}
.proof-item {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95); /* More opaque */
    text-align: center;
    justify-content: center;
    align-items: center;
}
.proof-item strong {
    color: var(--accent);
    font-size: 1.1rem;
    display: block;
}
.proof-item span {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* CTA Band */
.cta-band {
    background: var(--primary);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.cta-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}
.cta-band h2 { color: white; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin-bottom: 0; }

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .proof-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 1rem;
    }
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-band p { margin: 0 auto 2rem; }
    .cta-band .cta { width: 100%; justify-content: center; }
}

.process-steps-section {
    padding-bottom: 2rem;
}
