/* CSS V4.0 - Cartoonish & Playful Comic Edition */
:root {
    --primary-color: #00D1FF;
    --primary-dark: #0077B6;
    --primary-light: #B9F3FF;
    --secondary-color: #FF9F1C;
    --secondary-dark: #FF7B00;
    --bg-color: #FFF9F0;
    --bg-surface: #FFFFFF;
    --navy-blue: #023E8A;
    --navy-dark: #111111;
    --text-color: #111111;
    --text-light: #555555;
    --radius: 32px;
    --shadow-hard: 6px 6px 0px rgba(0,0,0,1);
    --shadow-hard-hover: 10px 10px 0px rgba(0,0,0,1);
    --transition-bouncy: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-color); 
    background: var(--bg-color); 
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

/* Decorative Blobs */
.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}
@media (max-width: 768px) { .blob { display: none; } }
.blob-1 { top: 10%; left: -5%; background: var(--primary-color); }
.blob-2 { top: 40%; right: -5%; background: var(--secondary-color); }
.blob-3 { bottom: 10%; left: 10%; background: var(--primary-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Top Bar */
.top-bar {
    background: var(--navy-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
}
.top-bar-container { display: flex; justify-content: space-between; align-items: center; }
.top-info { display: flex; gap: 24px; }
.top-contact { display: flex; gap: 24px; }
.top-contact a { color: white; text-decoration: none; opacity: 0.8; transition: 0.3s; }
.top-contact a:hover { opacity: 1; color: var(--primary-light); }
.top-tel { color: var(--secondary-color) !important; font-weight: 800; }

/* Header Refinement */
.header {
    background: #FFFFFF;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--navy-dark);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo { height: 75px; width: auto; transition: transform 0.3s; max-width: 100%; object-fit: contain; }
.logo-container:hover .logo { transform: rotate(-8deg) scale(1.15); }
.hero-stats { display: flex; gap: 50px; margin-bottom: 40px; justify-content: center; }
.stat-item { display: flex; flex-direction: column; position: relative; }
.stat-number { font-size: 3.5rem; font-weight: 800; color: var(--primary-light); line-height: 1; margin-bottom: 5px; }
.stat-number-suffix { font-size: 2rem; color: var(--primary-light); margin-left: -5px; }
.stat-label { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }

.highlighted-stat {
    padding-left: 20px;
    border-left: 4px solid var(--secondary-color);
}

.nav { display: flex; gap: 40px; }
.nav-link { 
    text-decoration: none; 
    color: var(--text-color); 
    font-weight: 700; 
    font-size: 1rem; 
    position: relative;
    padding: 5px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Hero Section - STAGGERED ENTRANCE */
.hero {
    position: relative;
    padding: 120px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.1);
    animation: zoomOutHero 10s forwards;
}
@keyframes zoomOutHero { to { transform: scale(1); } }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 32, 78, 0.85) 0%, rgba(2, 62, 138, 0.6) 100%);
    z-index: 1;
}
.hero-container { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-content { max-width: 900px; display: flex; flex-direction: column; align-items: center; }

.hero-image-slot {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 300px;
    max-height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    border: 4px solid var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hard);
}
.real-photo, .real-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.stagger-item { 
    opacity: 0; 
    transform: translateY(30px); 
    animation: fadeInUpStagger 0.8s forwards;
}
.stagger-item:nth-child(1) { animation-delay: 0.2s; }
.stagger-item:nth-child(2) { animation-delay: 0.4s; }
.stagger-item:nth-child(3) { animation-delay: 0.6s; }
.stagger-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUpStagger { to { opacity: 1; transform: translateY(0); } }

.hero h1 { 
    font-size: clamp(2.5rem, 8vw, 4.5rem); 
    margin-bottom: 20px; 
    line-height: 1.1; 
    font-weight: 800; 
    text-shadow: 4px 4px 0px rgba(0,0,0,0.2); 
}
.hero-subtitle { font-size: clamp(1rem, 3vw, 1.4rem); color: rgba(255,255,255,0.95); margin-bottom: 40px; font-weight: 500; }

.glow-badge { 
    background: var(--primary-color); 
    padding: 8px 20px; 
    border-radius: 50px; 
    font-size: 0.9rem; 
    font-weight: 800; 
    display: inline-block; 
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.4);
}

.pulse {
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 180, 216, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

/* Section Divider */
.section-divider {
    position: relative;
    top: -1px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
}
.section-divider svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 80px;
}
.section-divider .shape-fill {
    fill: #FFFFFF;
}

/* Buttons */
.btn { 
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 36px; border-radius: 50px; font-weight: 900; text-decoration: none;
    transition: var(--transition-bouncy); border: 4px solid var(--navy-dark); cursor: pointer; gap: 12px;
    text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary { background: var(--secondary-color); color: var(--navy-dark); box-shadow: 6px 6px 0px var(--navy-dark); }
.btn-primary:hover { background: #FFB347; transform: scale(1.05) rotate(-2deg); box-shadow: 10px 10px 0px var(--navy-dark); }
.btn-secondary { background: white; color: var(--navy-dark); border: 4px solid var(--navy-dark); box-shadow: 6px 6px 0px var(--navy-dark); }
.btn-secondary:hover { background: var(--primary-light); transform: rotate(2deg); box-shadow: 10px 10px 0px var(--navy-dark); }

/* Services Section - PREMIUM PHOTO EDITION */
.services-v2 { padding: 120px 0; background: white; position: relative; z-index: 10; border-radius: 50px 50px 0 0; margin-top: -50px; }
.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 { font-size: clamp(2rem, 6vw, 3.5rem); color: var(--navy-dark); font-weight: 800; margin-bottom: 15px; letter-spacing: -1px; }
.section-title p { color: var(--text-light); font-size: clamp(1rem, 2.5vw, 1.25rem); font-weight: 500; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.service-card { 
    background: #FFFFFF; 
    border-radius: 40px; 
    overflow: hidden; 
    border: 4px solid var(--navy-dark);
    transition: var(--transition-bouncy);
    box-shadow: var(--shadow-hard);
}
.service-card:hover { 
    transform: translateY(-15px) scale(1.02); 
    box-shadow: var(--shadow-hard-hover); 
    border-color: var(--primary-color);
}

.card-image { aspect-ratio: 16 / 9; height: auto; min-height: 170px; overflow: hidden; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.service-card:hover .card-image img { transform: scale(1.1); }

.card-content { padding: 40px; }
.card-content h3 { font-size: 1.8rem; color: var(--navy-dark); margin-bottom: 18px; font-weight: 800; letter-spacing: -0.5px; }
.card-content p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 25px; line-height: 1.7; }

.service-list li { margin-bottom: 12px; font-size: 1rem; font-weight: 700; color: var(--navy-blue); position: relative; padding-left: 28px; }
.service-list li::before { 
    content: ''; position: absolute; left: 0; top: 4px;
    width: 20px; height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300B4D8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat;
}

/* Contact Section */
.contact-v2 { padding: 120px 0; background: var(--navy-dark); color: white; border-radius: 50px 50px 0 0; }
.contact-v2-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.contact-info-panel h2 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }

.method-box { 
    display: flex; align-items: center; gap: 24px; text-decoration: none; color: white; 
    margin-bottom: 35px; background: var(--navy-blue); padding: 25px; 
    border-radius: 40px; transition: var(--transition-bouncy);
    border: 4px solid white;
    box-shadow: 6px 6px 0px rgba(255,255,255,0.3);
}
.method-box:hover { background: var(--primary-dark); transform: scale(1.05); }
.png-icon-large { width: 50px; height: 50px; object-fit: contain; filter: brightness(2); }

.quote-form { background: white; padding: 50px; border-radius: 50px; color: var(--text-color); border: 4px solid var(--navy-dark); box-shadow: var(--shadow-hard); }
.quote-form h3 { margin-bottom: 30px; font-size: 2rem; font-weight: 800; text-align: center; color: var(--navy-dark); }
.form-input { 
    width: 100%; padding: 18px; margin-bottom: 20px; border: 2px solid #F1F5F9; 
    border-radius: 12px; font-family: inherit; font-size: 1.05rem; 
    transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--primary-color); outline: none; }
.btn-text {
    background: none; border: none; color: var(--primary-color); font-weight: 800; font-size: 1rem;
    cursor: pointer; padding: 0; transition: var(--transition-smooth); display: inline-flex; align-items: center;
}
.btn-text:hover { color: var(--secondary-color); transform: translateX(5px); }

.card-badge {
    position: absolute; top: 20px; right: 20px;
    background: rgba(2, 62, 138, 0.8); backdrop-filter: blur(5px);
    color: white; padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 800;
    z-index: 5; border: 1px solid rgba(255,255,255,0.1);
}

/* Modal System */
.modal {
    position: fixed; inset: 0; z-index: 5000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: all 0.4s ease;
}
.modal.active { opacity: 1; pointer-events: auto; }

.modal-overlay {
    position: absolute; inset: 0; background: rgba(1, 20, 47, 0.85);
    backdrop-filter: blur(8px);
}

.modal-container {
    background: white; width: 90%; max-width: 800px; max-height: 90vh;
    border-radius: 30px; position: relative; z-index: 10;
    transform: translateY(50px) scale(0.95); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto; padding: 60px; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.modal.active .modal-container { transform: translateY(0) scale(1); }

.modal-close {
    position: absolute; top: 25px; right: 25px;
    background: #f1f5f9; border: none; width: 45px; height: 45px;
    border-radius: 50%; font-size: 1.5rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.modal-close:hover { background: var(--secondary-color); color: white; transform: rotate(90deg); }

.modal-body h2 { font-size: 2.5rem; color: var(--navy-dark); margin-bottom: 25px; font-weight: 800; }
.modal-body img { width: 100%; height: 300px; object-fit: cover; border-radius: 20px; margin-bottom: 30px; }
.modal-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.modal-text { color: var(--text-light); line-height: 1.8; font-size: 1.1rem; }
.modal-steps { list-style: none; }
.modal-steps li { margin-bottom: 15px; display: flex; gap: 15px; font-weight: 600; }
.modal-btn-group { margin-top: 40px; display: flex; gap: 20px; flex-wrap: wrap; }
.modal-wa-btn { gap: 15px; padding: 18px 35px; }
.modal-wa-btn .png-icon { width: 32px; height: 32px; filter: none; } /* Keeping color for better engagement */

/* Premium Placeholders */
.premium-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-light);
    background: #F8FAFC;
    transition: var(--transition-smooth);
}
.hero-image-slot .premium-placeholder { background: transparent; color: rgba(255,255,255,0.5); }

.placeholder-icon { font-size: 3rem; opacity: 0.3; }
.placeholder-text { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; opacity: 0.5; }

.card-image-slot { 
    height: 100%; 
    min-height: 480px; 
    border-radius: 24px; 
    overflow: hidden; 
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
}

/* Coverage Section */
.coverage-section { padding: 100px 0; background: #F8FAFC; }
.coverage-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.left-align { text-align: left; margin-bottom: 50px; }

.regions-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.region-box h3 { font-size: 1rem; color: var(--navy-dark); margin-bottom: 20px; font-weight: 800; border-bottom: 2px solid var(--primary-color); display: inline-block; padding-bottom: 5px; }
.region-box ul { list-style: none; }
.region-box li { margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; opacity: 0.8; transition: 0.3s; }
.region-box li:hover { opacity: 1; transform: translateX(5px); color: var(--primary-dark); }

.coverage-image-slot { 
    height: 280px; 
    border-radius: 30px; 
    overflow: hidden; 
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
}
.coverage-image-slot.small { height: 160px; }

.coverage-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.mt-20 { margin-top: 20px; }

/* Footer */
.footer-modern { 
    padding: 100px 0 40px; 
    background: #FFFFFF; 
    color: var(--text-color); 
    border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 60px; 
    margin-bottom: 60px;
}

.footer-logo { height: 85px; margin-bottom: 25px; transition: 0.3s; }
.footer-logo:hover { transform: scale(1.1) rotate(5deg); }
.brand-desc { 
    font-size: 0.95rem; 
    opacity: 0.8; 
    max-width: 350px; 
    line-height: 1.8;
    color: var(--text-light);
}

.footer-title { 
    font-size: 1.1rem; 
    font-weight: 800; 
    margin-bottom: 25px; 
    color: var(--navy-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 15px; }
.footer-links-list a { 
    color: var(--text-color); 
    text-decoration: none; 
    opacity: 0.8; 
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    font-weight: 600;
}
.footer-links-list a:hover { opacity: 1; color: var(--primary-color); padding-left: 5px; }

.footer-contact p { margin-bottom: 12px; color: var(--text-light); font-size: 0.95rem; }
.footer-contact strong { color: var(--navy-dark); opacity: 1; font-size: 1.1rem; }

.social-icons { display: flex; gap: 20px; margin-top: 30px; }
.social-icons img { width: 32px; height: 32px; transition: 0.3s; }
.social-icons a:hover img { transform: scale(1.2) translateY(-5px); filter: brightness(1.2); }

.footer-bottom { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 40px; }
.bottom-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
}
.sec-badge { 
    background: #F1F5F9; 
    padding: 6px 14px; 
    border-radius: 6px; 
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Success Stories */
.success-stories { padding: 100px 0; background: white; }
.stories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-card-slot { height: 360px; border-radius: 50px; overflow: hidden; border: 4px solid var(--navy-dark); box-shadow: var(--shadow-hard); }
.story-text h2 { font-size: 3rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 25px; }
.story-text p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; }
.story-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mini-stat { background: #F8FAFC; padding: 20px; border-radius: 20px; text-align: center; }
.mini-stat strong { font-size: 1.5rem; color: var(--primary-color); display: block; }
.mini-stat span { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--text-light); }

/* WhatsApp FAB */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    z-index: 2000;
    transition: var(--transition-smooth);
}
.whatsapp-float img { width: 100%; height: 100%; border-radius: 50%; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
.bright-wa { filter: brightness(1.1) saturate(1.2); }
.whatsapp-float:hover { transform: scale(1.1) rotate(15deg); }

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .contact-v2-wrapper { gap: 40px; }
}

/* Mobile Action Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 70px;
    background: white;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 4000;
    grid-template-columns: 1fr 1fr;
}
.mobile-btn {
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-weight: 800; font-size: 1.1rem;
    transition: 0.3s;
}
.call-btn { background: var(--navy-dark); color: white; }
.wa-btn { background: #25D366; color: white; }

/* Force everything to respect viewport width */
* { max-width: 100%; }
.container { width: 100%; box-sizing: border-box; }

@media (max-width: 768px) {
    .top-bar { display: none; }
    .header { padding: 10px 0; }
    .nav { display: none; }
    .hero { text-align: center; padding: 60px 0; overflow: hidden; }
    .hero-container { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .hero h1 { font-size: 2.1rem; line-height: 1.2; margin-top: 10px; }
    .hero-image-slot { height: auto; aspect-ratio: 1/1; order: -1; }
    .services-grid { grid-template-columns: 1fr; gap: 25px; }
    .logo { height: 55px; }
    .hero-stats { justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 25px; }
    .stat-number { font-size: 2.2rem; }
    .stat-label { font-size: 0.75rem; }
    .hero-actions { display: flex; flex-direction: column; width: 100%; gap: 15px; }
    .btn { width: 100%; padding: 15px 20px; font-size: 0.9rem; }
    .coverage-grid, .stories-grid { grid-template-columns: 1fr; gap: 30px; }
    .coverage-visual { order: -1; }
    .regions-lists { grid-template-columns: 1fr; }
    .contact-v2-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .coverage-image-grid { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 1.8rem; line-height: 1.2; }
    .quote-form { padding: 25px; border-radius: 30px; }
    .mobile-action-bar { display: grid; }
    body { padding-bottom: 70px; } /* Space for action bar */
    .whatsapp-float { bottom: 85px; right: 15px; width: 55px; height: 55px; }
    .hero-subtitle { margin-bottom: 25px; font-size: 1rem; }
    .service-card { border-radius: 20px; }
    .logo-text { font-size: 1.1rem; }
    .logo-subtext { font-size: 0.7rem; }
}

@media (max-width: 480px) {
    .logo { height: 50px; }
    .hero h1 { line-height: 1.2; }
    .btn { padding: 15px 25px; font-size: 0.9rem; }
    :root { 
        --shadow-hard: 4px 4px 0px rgba(0,0,0,1); 
        --radius: 24px;
    }
    .hero-image-slot { aspect-ratio: 1 / 1; }
    .section-title h2 { font-size: 1.8rem; }
    .card-content { padding: 25px; }
}
