
        /* Global Styles & Box Sizing Fix */
        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        :root { --primary-teal: #1a8b9d; --secondary-grey: #4a5056; --light-bg: #f8f9fa; --white: #ffffff; --transition: 0.3s ease; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; color: #333; line-height: 1.6; overflow-x: hidden; background-color: var(--light-bg); }
        a { text-decoration: none; color: var(--primary-teal); transition: color var(--transition); }
        h1, h2, h3, h4 { color: var(--secondary-grey); margin-top: 0; }
        .section-padding { padding: 5rem 2rem; }
        .container { max-width: 1200px; margin: 0 auto; }
        .text-center { text-align: center; }

        /* Buttons */
        .btn { background: var(--primary-teal); color: var(--white); padding: 1rem 2rem; border-radius: 6px; font-weight: bold; display: inline-block; transition: all var(--transition); border: none; cursor: pointer; text-align: center; font-size: 1.1rem; }
        .btn:hover { background: #136a78; color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(26, 139, 157, 0.3); }

        /* Header & Navigation */
        
        
        
        
        .logo img:hover { transform: scale(1.02); }
        
        .logo-text span { color: var(--primary-teal); }

        
        
        

        

        /* Page Header */
        .page-header { background: linear-gradient(135deg, rgba(26, 139, 157, 0.95), rgba(30, 41, 59, 0.95)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80') center/cover fixed; color: var(--white); text-align: center; padding: 7rem 2rem 5rem; position: relative; overflow: hidden; }
        .page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent); animation: shimmerHeader 8s infinite linear; }
        @keyframes shimmerHeader { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
        .page-header h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 1rem; text-shadow: 0 4px 15px rgba(0,0,0,0.4); font-weight: 800; letter-spacing: -1px; }
        .page-header p { font-size: 1.25rem; max-width: 800px; margin: 0 auto; color: rgba(255,255,255,0.9); font-weight: 300; }

        /* Tabs System */
        .tabs-container { max-width: 900px; margin: -4rem auto 4rem; background: var(--white); border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05); position: relative; z-index: 10; padding: 1.5rem; }
        .tab-buttons { display: flex; background: #f1f5f9; border-radius: 12px; padding: 0.5rem; margin-bottom: 2rem; position: relative; }
        .tab-btn { flex: 1; padding: 1.2rem; font-size: 1.1rem; font-weight: 600; border: none; background: transparent; color: #64748b; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 8px; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 10px; }
        .tab-btn:hover { color: var(--primary-teal); }
        .tab-btn.active { color: var(--white); background: var(--primary-teal); box-shadow: 0 8px 16px rgba(26, 139, 157, 0.3); transform: translateY(-2px); }
        
        .tab-content { display: none; padding: 1rem 2rem 2rem; }
        .tab-content.active { display: block; animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
        @keyframes slideUpFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* Form Styles */
        .form-header { text-align: center; margin-bottom: 3rem; }
        .form-header h2 { font-size: 2.2rem; color: #1e293b; margin-bottom: 0.5rem; font-weight: 700; letter-spacing: -0.5px; }
        .form-header p { color: #64748b; font-size: 1.1rem; }
        
        .rcg-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
        .form-group { display: flex; flex-direction: column; gap: 0.6rem; }
        .form-group.full-width { grid-column: span 2; }
        .form-group label { font-weight: 600; color: #334155; font-size: 0.95rem; }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1.2rem 1.5rem; border: 1px solid #e2e8f0; border-radius: 10px; font-family: inherit; font-size: 1rem; transition: all 0.3s ease; background: #f8fafc; color: #1e293b; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-teal); box-shadow: 0 0 0 4px rgba(26, 139, 157, 0.15), inset 0 2px 4px rgba(0,0,0,0.01); background: var(--white); transform: translateY(-1px); }
        .submit-btn { grid-column: span 2; margin-top: 1rem; font-size: 1.15rem; padding: 1.4rem; border-radius: 10px; background: linear-gradient(135deg, #1a8b9d, #136a78); color: var(--white); border: none; font-weight: 700; position: relative; overflow: hidden; cursor: pointer; transition: all 0.3s ease; display: inline-flex; justify-content: center; align-items: center; gap: 10px; }
        .submit-btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: all 0.5s ease; }
        .submit-btn:hover::after { left: 100%; }
        .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(26, 139, 157, 0.4); color: white; }

        /* Value Section */
        .value-section { background: linear-gradient(135deg, #0f172a, #1e293b); color: var(--white); padding: 7rem 2rem; position: relative; overflow: hidden; margin-top: 2rem; }
        .value-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--primary-teal), #34d399); }
        .value-section h2 { color: var(--white); font-size: 2.8rem; margin-bottom: 1rem; font-weight: 800; letter-spacing: -1px; }
        .value-section > .container > p { color: #94a3b8 !important; font-size: 1.15rem; }
        
        .value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; max-width: 1100px; margin: 4rem auto 0; }
        .value-card { text-align: center; padding: 3rem 2rem; background: rgba(255,255,255,0.03); border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; backdrop-filter: blur(10px); }
        .value-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 0%, rgba(26, 139, 157, 0.15), transparent 70%); opacity: 0; transition: opacity 0.4s ease; z-index: 0; }
        .value-card:hover { transform: translateY(-10px); border-color: rgba(26, 139, 157, 0.5); background: rgba(255,255,255,0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
        .value-card:hover::before { opacity: 1; }
        .value-card i { font-size: 3rem; color: #38bdf8; margin-bottom: 1.5rem; transition: transform 0.4s ease; position: relative; z-index: 1; }
        .value-card:hover i { transform: scale(1.1) translateY(-5px); color: #7dd3fc; }
        .value-card h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 1rem; font-weight: 700; position: relative; z-index: 1; }
        .value-card p { color: #94a3b8; font-size: 1rem; line-height: 1.7; position: relative; z-index: 1; }

        /* Floating WhatsApp */
        .whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2.2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1000; transition: transform var(--transition); }
        .whatsapp-float:hover { transform: scale(1.1); color: white; }

                /* Premium Footer */
        
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 4rem; }
        
        .footer-brand h4 { color: var(--white); font-size: 1.8rem; margin-bottom: 1rem; margin-top: 0; display: flex; align-items: center; gap: 10px; }
        .footer-brand h4 span { color: var(--primary-teal); }
        .footer-brand p { color: #9ca3af; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; }
        .social-links { display: flex; gap: 1rem; }
        .social-links a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); color: #fff; transition: all 0.3s ease; }
        .social-links a:hover { background: var(--primary-teal); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(26, 139, 157, 0.4); }

        
        
        
        
        
        
        
        
        
        

        .footer-contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 1.2rem; color: #9ca3af; font-size: 0.95rem; line-height: 1.6; }
        .footer-contact-item i { color: var(--primary-teal); font-size: 1.2rem; margin-top: 3px; }
        .footer-contact-item a { color: #9ca3af; transition: color 0.3s; }
        .footer-contact-item a:hover { color: var(--primary-teal); }

        .footer-badge { background: rgba(255,255,255,0.05); padding: 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem; transition: transform 0.3s; }
        .footer-badge:hover { transform: translateY(-2px); border-color: rgba(26, 139, 157, 0.5); }
        .footer-badge i { color: var(--primary-teal); margin-right: 10px; }

        
        
        

        /* Mobile Responsiveness */
        
        @media (max-width: 1200px) {
            
            
            
            
            nav ul.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); opacity: 1; visibility: visible; }
            
            
        }
        @media (max-width: 768px) {
            .page-header h1 { font-size: 2.5rem; }
            .tabs-container { margin: -2rem 1rem 3rem; padding: 1rem; }
            .tab-buttons { flex-direction: column; gap: 0.5rem; }
            .tab-btn { font-size: 1rem; padding: 1rem; width: 100%; border-radius: 8px; }
            .tab-content { padding: 1rem 0; }
            .rcg-form { grid-template-columns: 1fr; gap: 1.2rem; }
            .form-group.full-width { grid-column: span 1; }
            .form-group input, .form-group select, .form-group textarea { padding: 1rem; font-size: 16px; /* 16px prevents iOS zoom */ }
            .submit-btn { grid-column: span 1; width: 100%; padding: 1.2rem; }
        }
    
        /* Pure CSS Hamburger Menu */
        
        
        
        
        
        


/* RESTORED HAMBURGER FOR TABLET/MOBILE ONLY */


@media (max-width: 1200px) {
    
    
    
    
    
    
    
    
    

    
    nav ul.active { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); 
        opacity: 1; 
        visibility: visible; 
    }
    
    
}

 (ENABLED ON ALL SCREENS)
   ==================================================== */


/* The hamburger button must ALWAYS be visible */








/* The nav list must ALWAYS be a hidden dropdown */

nav ul.active { 
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important; 
    opacity: 1 !important; 
    visibility: visible !important; 
}



/* Active State Dot Styling */




   ==================================================== */

/* --- Desktop Nav Layout --- */









/* Active Page Middle Dot */



/* Hide Hamburger on Desktop */


/* --- Footer Standard --- */










/* ====================================================
   TABLET / MOBILE RESPONSIVENESS (<= 1200px)
   ==================================================== */
@media (max-width: 1200px) {
    
    
    
    
    
    
    

    
    nav ul.active { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important; 
        opacity: 1 !important; 
        visibility: visible !important; 
    }
    
    
    
    /* Center the dot in mobile view */
    
}
