:root {
    --primary: #0d47a1;
    --primary-light: #42a5f5;
    --primary-dark: #0a192f;
    --accent: #e3f2fd;
    --success: #10b981;
    --slate: #475569;
    --text-dark: #1e293b;
    --light: #f8fbff;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, #1565c0, #0d47a1);
    --gradient-soft: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

/* TOP TICKER BAR */
.top-ticker-bar {
    background: #f57c00;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.95);
    z-index: 1001;
    position: relative;
    height: 40px;
    box-sizing: border-box;
}

.top-ticker-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.ticker-socials {
    display: flex;
    gap: 15px;
}

.ticker-socials a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.ticker-socials a:hover {
    color: white;
}

.ticker-scroll {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-scroll marquee {
    display: block;
    font-weight: 700;
    color: white;
}

.ticker-contact {
    display: flex;
    gap: 20px;
    font-weight: 500;
}

.ticker-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-contact i {
    color: white;
}

#main-header {
    position: fixed;
    top: 40px; /* Updated offset for orange bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

/* When scrolled, move header to top */
#main-header.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}



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

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}



.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    color: var(--primary-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--primary) !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 3px;
    background: var(--gradient);
    border-radius: 10px;
}

/* Dropdown Logic */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 1rem;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--border);
    z-index: 1000;
}

/* MEGA DROPDOWN */
.mega-dropdown {
    width: 600px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(20px) !important;
    padding: 2rem !important;
}

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

.mega-col h4 {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.mega-col a {
    display: block;
    padding: 0.5rem 0 !important;
    font-size: 0.9rem !important;
    color: var(--slate) !important;
    background: none !important;
    border-radius: 0 !important;
}

.mega-col a:hover {
    color: var(--primary) !important;
    padding-left: 5px !important;
}

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

.nav-dropdown:hover .mega-dropdown {
    transform: translateY(0) translateX(-50%) !important;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate);
}

.dropdown-content a:hover, .dropdown-content a.active {
    background: var(--accent);
    color: var(--primary);
}

.btn-talk {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1.8rem;
    background: var(--gradient) !important;
    border: none !important;
    border-radius: 50px;
    color: white !important;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(13, 71, 161, 0.2);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-talk:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13, 71, 161, 0.3);
    filter: brightness(1.1);
}

.btn-talk .icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-talk:hover .icon-circle {
    background: white;
    color: var(--primary);
    transform: rotate(15deg);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Sections */
.section { padding: 3rem 0; }
.section-grey { background-color: var(--light); }

/* Hero */
.inner-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--gradient);
    color: white;
    text-align: center;
    overflow: hidden;
    padding: 140px 2rem 5rem; /* Increased top padding to 140px and bottom to 5rem */
}

.inner-hero h1 { color: white !important; margin-bottom: 1.5rem; }
.inner-hero p { opacity: 0.9; max-width: 800px; margin: 0 auto; font-size: 1.2rem; }

.home-hero { min-height: 85vh; display: flex; align-items: center; background: none !important; }

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Cards */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.items-center { align-items: center; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-12 { margin-bottom: 3rem; }

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.4) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary { background: var(--gradient); color: white; }
.btn-outline { border: 2px solid white; color: white; }
.bg-white { background: white; }

/* Utilities */
.text-center { text-align: center; }
.mb-12 { margin-bottom: 3rem; }

/* Floating Widgets */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.floating-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

/* Desktop Contact Button */
.btn-talk {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 5px 5px 5px 25px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-talk .icon-circle {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-talk:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 101, 192, 0.3);
}

.btn-talk:hover .icon-circle {
    background: white;
    color: var(--primary);
}

/* Floating Call (Mobile Only) */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: none; /* Forced hidden on desktop */
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

/* Chatbot Window */
.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1001;
}

.chatbot-window.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.chatbot-header { background: var(--gradient); color: white; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.chatbot-messages { flex: 1; padding: 1.5rem; overflow-y: auto; background: #f8fbff; display: flex; flex-direction: column; gap: 1rem; }
.message { max-width: 85%; padding: 0.8rem 1rem; border-radius: 15px; font-size: 0.9rem; }
.bot-msg { align-self: flex-start; background: white; border: 1px solid var(--border); }
.user-msg { align-self: flex-end; background: var(--primary); color: white; }

/* Side Panel */
.side-contact-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 2000;
    box-shadow: var(--shadow-lg);
    transition: 0.5s ease;
}

.side-contact-panel.active { right: 0; }

.side-contact-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    z-index: 1500;
    font-weight: 700;
}

/* Mobile Optimization */
@media (max-width: 991px) {
    #main-header { padding: 0.75rem 0; }
    #main-header .container { padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; }

    #mobile-toggle {
        display: block !important;
        background: var(--primary);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 8px;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 2001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        gap: 0.5rem;
    }

    .nav-menu.active { right: 0; }

    .nav-link {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    .nav-dropdown .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: var(--light);
        width: 100%;
        border-radius: 10px;
        padding: 0.5rem;
    }

    .nav-dropdown.active .dropdown-content { display: block; }

    .btn-talk {
        display: none !important; /* Hide in header on mobile */
    }

    .floating-call {
        display: flex !important; /* Show only on mobile */
    }

    .side-contact-btn {
        display: none !important; /* Hide vertical bar on mobile */
    }
}

@media (max-width: 768px) {
    .section { padding: 3rem 0; }
    .container { padding: 0 1.5rem; }
    
    h1 { font-size: 2rem !important; line-height: 1.2 !important; }
    h1 span { color: white !important; } /* Force "Automation" to white on mobile */
    h2 { font-size: 1.6rem !important; }
    h3 { font-size: 1.3rem !important; }
    
    .grid-2, .grid-3, .grid-4 { 
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .hero-trust-tags {
        display: none !important;
    }

    .inner-hero { min-height: 300px; padding: 100px 1rem 3rem; }
    
    .card { padding: 1.5rem; }
    
    .btn { width: 100% !important; justify-content: center; padding: 1rem !important; margin: 0.5rem 0; }
    
    .home-hero .container {
        padding-top: 2rem;
    }

    .home-hero .container > div[style*="display: flex"] {
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .floating-whatsapp, .floating-chatbot, .floating-call {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }
    
    .floating-whatsapp { left: 15px; }
    .floating-call { left: 50%; transform: translateX(-50%); right: auto; }
    .floating-chatbot { right: 15px; }
}

/* Footer Enhancements */
.footer-col ul li a:hover {
    color: var(--primary-light) !important;
    padding-left: 5px;
}

.social-icon:hover {
    background: var(--primary-light) !important;
    color: white !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(66, 165, 245, 0.3);
    border-color: var(--primary-light) !important;
}

footer a {
    transition: var(--transition);
}

/* Homepage V2 Styles */
.hero-v2 {
    position: relative;
    padding: 80px 0 100px;
    background-color: #f8fbff;
    background-image: 
        linear-gradient(rgba(13, 71, 161, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 71, 161, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(66, 165, 245, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-v2 .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-v2-content h1 {
    font-size: 4.2rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #0f172a;
    font-weight: 800;
}

.hero-v2-content h1 span {
    color: var(--primary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-v2-content p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.video-window {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 30px 60px rgba(13, 71, 161, 0.15);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.8);
}

.window-header {
    background: #f1f5f9;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.window-content {
    position: relative;
    aspect-ratio: 16/10;
}

.window-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-row-v2 {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-item-v2 i {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-item-v2 span {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
}

.stat-item-v2 small {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
}

.announcement-bar {
    background: #0f172a;
    color: white;
    text-align: left;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 500;
}


/* MOBILE & RESPONSIVE DESIGN SYSTEM */

/* Desktop Only Helper */
@media (max-width: 991px) {
    .desktop-only { display: none !important; }
}

/* Hamburger Menu Toggle */
.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2001;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-content {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-links a {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    display: block;
}

.mobile-submenu {
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.mobile-submenu a {
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    border-bottom: none !important;
    padding: 0.1rem 0 0.1rem 1rem !important;
    color: #475569 !important;
}

.mobile-nav-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Mobile Sticky CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1500;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
}

.mobile-cta-bar .cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    gap: 4px;
    color: var(--slate);
    font-size: 0.75rem;
    font-weight: 700;
}

.mobile-cta-bar .cta-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.mobile-cta-bar .cta-item.whatsapp i { color: #25d366; }
.mobile-cta-bar .cta-item.demo { background: var(--gradient); color: white; }
.mobile-cta-bar .cta-item.demo i { color: white; }

/* MEDIA QUERIES */
@media (max-width: 991px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: flex; }
    
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .section { padding: 4rem 0; }
    
    h1 { 
        font-size: 1.75rem !important; 
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    h2 { font-size: 1.5rem !important; }
    
    .container { 
        padding: 0 1rem !important; 
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    #main-header { padding: 0.5rem 0; }
    
    /* Hero Adjustments */
    .hero-v2 { 
        padding: 80px 0 40px !important; 
        text-align: center; 
    }
    .hero-v2 .container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .hero-v2-content {
        width: 100% !important;
        padding: 0 !important;
    }
    .hero-v2-content h1 {
        font-size: 1.8rem !important;
    }
    .hero-v2-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        text-align: left; /* Keep long text readable */
    }
    .hero-v2 .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-v2 .hero-btns .btn {
        width: 100%;
        padding: 1rem !important;
    }
    
    .video-window {
        margin-top: 2rem !important;
    }
    .window-content {
        aspect-ratio: 16 / 9;
        min-height: 200px;
    }
    
    .hero-image img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Footer Mobile */
    footer .grid-4 {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .footer-col .social-links { justify-content: center; }
    .footer-col ul { align-items: center; }
    
    /* Side Panel Mobile */
    .side-contact-panel {
        width: 100%;
        right: -100%;
    }
    
    .side-contact-btn {
        display: none !important;
    }

    .logo img {
        height: 60px !important;
        padding: 5px !important;
    }
}

@media (max-width: 767px) {
    .mobile-cta-bar { display: grid; }
    body { padding-bottom: 70px; } /* Space for CTA bar */
    
    .top-ticker-bar { display: none; } /* Hide ticker on small mobile to save space */
    #main-header { top: 0 !important; }
    
    .floating-whatsapp, .floating-call {
        bottom: 90px; /* Move up above CTA bar */
    }
    
    .stats-card { padding: 1.5rem !important; }
    .stats-card h3 { font-size: 1.5rem !important; }
}

/* Animations for Mobile */
@keyframes slideInMobile {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* SIDE CONTACT PANEL */
.side-contact-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: -2px 0 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.side-contact-btn:hover {
    background: var(--primary);
    padding-right: 35px;
}

.side-contact-panel {
    position: fixed;
    right: -450px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.side-contact-panel.active {
    right: 0;
}

.panel-header {
    background: var(--primary);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white !important;
}

#close-panel {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

#close-panel:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.panel-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

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

.side-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.side-form input, 
.side-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.side-form input:focus, 
.side-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.05);
}

.side-form .btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.side-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.2);
}

/* Floating Elements Fix */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(13, 71, 161, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.floating-call:hover {
    transform: scale(1.1);
}
