/* =========================================
   CSS Variables & Global Reset
   ========================================= */
:root {
    --primary-blue: #0A192F; 
    --secondary-blue: #112B54;
    --light-blue: #00A8E8; 
    --accent-orange: #FF6B00; 
    --bg-light: #F4F7FA;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --border-color: #E2E8F0;

    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-dark); line-height: 1.6; background-color: var(--bg-white); overflow-x: hidden; position: relative; width: 100%; }

/* Scroll Lock for Mobile Menu */
body.no-scroll { overflow: hidden; height: 100vh; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; width: 100%; }
.text-center { text-align: center; }

/* =========================================
   Typography & Subtitles
   ========================================= */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; margin-bottom: 15px; color: var(--primary-blue); }
h1 { font-size: 3.8rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.5rem; }
p { color: var(--text-muted);  font-size: 1.05rem;}

.section-subtitle {
    display: inline-block; font-size: 0.9rem; font-weight: 700; color: var(--accent-orange);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px;
    background: rgba(255, 107, 0, 0.1); padding: 8px 20px; border-radius: 50px;
}
.section-subtitle.light { color: var(--light-blue); background: rgba(0, 168, 232, 0.15); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 35px; border-radius: 50px; font-weight: 600; cursor: pointer;
    border: none; position: relative; overflow: hidden; z-index: 1; font-size: 1.05rem;
}
.btn span { position: relative; z-index: 2; transition: var(--transition); display: flex; align-items: center; gap: 10px;}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: var(--primary-blue); transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); z-index: -1;
}
.btn-primary { background-color: var(--accent-orange); color: var(--bg-white); box-shadow: 0 5px 15px rgba(255,107,0,0.3); }
.btn-primary:hover::before { width: 100%; }
.btn-primary:hover { box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5); transform: translateY(-3px); }

.btn-secondary { background-color: var(--primary-blue); color: var(--bg-white); }
.btn-secondary::before { background: var(--accent-orange); }
.btn-secondary:hover::before { width: 100%; }
.btn-secondary:hover { transform: translateY(-3px); }

/* Globals & Animations */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6); } 70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); } }
.animate-float { animation: float 4s ease-in-out infinite; }
.pulse-badge { animation: pulse 2.5s infinite; }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.fade-right { transform: translateX(-50px); }
.fade-right.active { transform: translateX(0); }
.fade-left { transform: translateX(50px); }
.fade-left.active { transform: translateX(0); }
.fade-up { transform: translateY(50px); }
.fade-up.active { transform: translateY(0); }

.glassmorphism { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.4); box-shadow: var(--shadow-lg); }
.glassmorphism-dark { background: rgba(10, 25, 47, 0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); }

/* =========================================
   Header & Navigation
   ========================================= */
.top-bar { background-color: var(--bg-light); border-bottom: 1px solid var(--border-color); font-size: 0.85rem; padding: 10px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.contact-info span { margin-right: 20px; font-weight: 500; }
.contact-info i { color: var(--accent-orange); margin-right: 5px; }
.social-links a { margin-left: 15px; color: var(--primary-blue); font-size: 1.1rem; }
.social-links a:hover { color: var(--accent-orange); transform: scale(1.2); display: inline-block; }

header { background-color: var(--bg-white); padding: 15px 0; position: sticky; top: 0; z-index: 2000; transition: var(--transition); }
header.sticky { box-shadow: var(--shadow-md); padding: 10px 0; background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 80px; transition: var(--transition); }
header.sticky .logo img { height: 50px; }

.nav-links { display: flex; gap: 35px; }
.nav-links a { font-weight: 600; color: var(--primary-blue); position: relative; padding-bottom: 5px; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent-orange); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent-orange); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 3001; }
.hamburger-lines span { display: block; width: 30px; height: 3px; background: var(--primary-blue); margin: 6px 0; border-radius: 3px; transition: 0.3s; }

/* Full Screen Mobile Nav */
.nav-menu {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(10, 25, 47, 0.98); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease-in-out; z-index: 3000;
}
.nav-menu.active { opacity: 1; visibility: visible; }
.close-btn { display: flex; position: absolute; top: 25px; right: 25px; background: rgba(255,255,255,0.1); border: none; font-size: 1.8rem; color: var(--bg-white); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); transition: var(--transition); z-index: 3001; }
.close-btn:hover { background: var(--accent-orange); transform: rotate(90deg); border-color: var(--accent-orange); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 25px; text-align: center; }
.mobile-nav-links a { font-size: 2rem; color: var(--bg-white); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

/* Ticker */
.scrolling-ticker { background: var(--accent-orange); color: var(--bg-white); padding: 10px 0; overflow: hidden; white-space: nowrap; display: flex; width: 100%; }
.ticker-content { display: inline-flex; animation: ticker 10000ms linear infinite; font-weight: 600; font-size: 0.95rem; letter-spacing: 1px; }
.ticker-content span { padding: 0 30px; }

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   Hero Section
   ========================================= */
.hero { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%); padding: 100px 0; color: var(--bg-white); position: relative; overflow: hidden; }
.hero-glow-blob { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 1; opacity: 0.6; }
.blob-1 { width: 400px; height: 400px; background: var(--light-blue); top: -100px; left: -100px; }
.blob-2 { width: 300px; height: 300px; background: var(--accent-orange); bottom: -50px; right: 10%; }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-content h1 { color: var(--bg-white); font-size: 4rem; text-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.hero-content p { color: #A0B3C6; font-size: 1.2rem; margin-bottom: 40px; }
.badge { display: inline-block; background: rgba(255, 107, 0, 0.2); color: var(--accent-orange); padding: 8px 25px; border-radius: 50px; font-weight: 700; margin-bottom: 25px; border: 1px solid rgba(255, 107, 0, 0.4); letter-spacing: 1px; }

.img-wrapper { position: relative; max-width: 100%; }
.img-wrapper img { border-radius: 30px; box-shadow: var(--shadow-lg); border: 2px solid rgba(255,255,255,0.1); width: 100%; }
.floating-card { position: absolute; bottom: -30px; left: -30px; padding: 20px 25px; border-radius: 20px; color: var(--text-dark); }
.floating-card .stars { color: #FFC107; font-size: 1.1rem; margin-bottom: 5px; }
.floating-card p { font-weight: 800; font-size: 1.1rem; margin-bottom: 0; color: var(--primary-blue); }

/* =========================================
   Stats & About
   ========================================= */
.stats-section { padding: 60px 0; background: var(--bg-white); border-bottom: 1px solid var(--border-color); margin-top: -20px; position: relative; z-index: 5; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 30px; }
.stat-box h2 { display: inline-block; font-size: 3.5rem; color: var(--accent-orange); margin: 0; }
.stat-box span { font-size: 3.5rem; color: var(--accent-orange); font-weight: 700; }
.stat-box p { font-weight: 700; color: var(--primary-blue); font-size: 1.1rem; margin-top: 5px; text-transform: uppercase; letter-spacing: 1px; }

.about { padding: 120px 0; background: var(--bg-light); }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-image-sec { position: relative; }
.rounded-img { border-radius: 30px; box-shadow: var(--shadow-md); width: 100%; }
.experience-box { position: absolute; bottom: -30px; right: -30px; background: linear-gradient(135deg, var(--light-blue), #0077A3); color: var(--bg-white); padding: 35px; border-radius: 25px; text-align: center; box-shadow: var(--shadow-lg); border: 4px solid var(--bg-white); }
.experience-box h2 { color: var(--bg-white); font-size: 4rem; margin-bottom: 0; line-height: 1; }
.experience-box p { color: var(--bg-white); font-weight: 600; font-size: 1.1rem; margin: 0; }
.about-list { margin-top: 20px; }
.about-list li { font-size: 1.1rem; font-weight: 500; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: var(--primary-blue); }
.about-list i { color: var(--accent-orange); font-size: 1.3rem; }

/* =========================================
   Services Section
   ========================================= */
.services { padding: 120px 0; background: var(--bg-white); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 35px; margin-top: 60px; }
.service-card { background: var(--bg-white); border-radius: 25px; padding: 25px; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-color); }
.service-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); border-color: var(--light-blue); }
.service-img { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 25px; }
.service-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img img { transform: scale(1.15); }
.service-img .icon { position: absolute; bottom: -20px; right: 25px; background: var(--accent-orange); color: var(--bg-white); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.5rem; border: 5px solid var(--bg-white); transition: var(--transition); }
.service-card:hover .icon { background: var(--primary-blue); transform: rotate(360deg); }

/* =========================================
   Why Choose Us Section
   ========================================= */
.why-us { padding: 120px 0; background: var(--bg-light); border-top: 1px solid var(--border-color); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.feature-box { background: var(--bg-white); padding: 40px; border-radius: 20px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border-bottom: 4px solid transparent; }
.feature-box:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: var(--accent-orange); }
.feature-icon { width: 80px; height: 80px; background: rgba(0, 168, 232, 0.1); color: var(--light-blue); font-size: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 25px; transition: var(--transition); }
.feature-box:hover .feature-icon { background: var(--accent-orange); color: var(--bg-white); }

/* =========================================
   Project Gallery Section
   ========================================= */
.gallery { padding: 120px 0; background: var(--bg-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.gallery-item { position: relative; border-radius: 20px; overflow: hidden; height: 350px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 20px 20px; background: linear-gradient(transparent, rgba(10,25,47,0.9)); color: var(--bg-white); transform: translateY(20px); opacity: 0; transition: all 0.4s ease; }
.gallery-overlay h3 { color: var(--bg-white); margin-bottom: 5px; }
.gallery-overlay p { color: var(--accent-orange); font-weight: 600; margin: 0; }
.gallery-item:hover img { transform: scale(1.1); filter: brightness(0.7); }
.gallery-item:hover .gallery-overlay { transform: translateY(0); opacity: 1; }

/* =========================================
   Process Section
   ========================================= */
.process { padding: 120px 0; }
.bg-dark { background: var(--primary-blue); color: var(--bg-white); position: relative; }
.bg-dark h2, .bg-dark h3 { color: var(--bg-white); }
.process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.process-steps { margin-top: 50px; }
.step { display: flex; gap: 25px; margin-bottom: 40px; position: relative; }
.step::before { content: ''; position: absolute; left: 30px; top: 60px; bottom: -40px; width: 2px; background: rgba(255, 255, 255, 0.1); z-index: 1; }
.step:last-child::before { display: none; }
.glass-circle { width: 60px; height: 60px; background: var(--accent-orange); color: var(--bg-white); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 800; font-size: 1.3rem; z-index: 2; flex-shrink: 0; box-shadow: 0 0 20px rgba(255,107,0,0.4); border: 3px solid rgba(255,255,255,0.2); }
.process-image img { border-radius: 30px; box-shadow: var(--shadow-lg); width: 100%; }

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials { padding: 120px 0; background: var(--bg-light); border-bottom: 1px solid var(--border-color); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 50px; }
.testimonial-card { background: var(--bg-white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow-sm); position: relative; border-left: 5px solid var(--light-blue); }
.quote-icon { position: absolute; top: 30px; right: 30px; font-size: 3rem; color: rgba(0,168,232,0.1); }
.testimonial-card p { font-size: 1.1rem; font-style: italic; color: var(--text-dark); margin-bottom: 20px; position: relative; z-index: 2; }
.testimonial-card h4 { margin-bottom: 2px; }
.testimonial-card span { color: var(--accent-orange); font-size: 0.9rem; font-weight: 600; }

/* =========================================
   Contact Section
   ========================================= */
.contact-section { padding: 120px 0; background: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&q=80&w=1920') center/cover fixed no-repeat; position: relative; color: var(--bg-white); }
.contact-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 25, 47, 0.92); }
.contact-section h2, .contact-section h4 { color: var(--bg-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; position: relative; z-index: 2; align-items: center; }
.detail-item { display: flex; gap: 20px; margin-bottom: 30px; align-items: center; }
.detail-item i { width: 60px; height: 60px; background: rgba(255, 107, 0, 0.15); color: var(--accent-orange); display: flex; align-items: center; justify-content: center; border-radius: 15px; font-size: 1.5rem; border: 1px solid rgba(255,107,0,0.3); }
.contact-form { padding: 40px; border-radius: 25px; }
.contact-form form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 18px 25px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; color: var(--bg-white); font-family: inherit; outline: none; font-size: 1rem; transition: var(--transition); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent-orange); background: rgba(255,255,255,0.1); }

/* =========================================
   SLEEK WHATSAPP WIDGET
   ========================================= */
.whatsapp-widget-container { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; pointer-events: none; }

/* Sleek Pill Wrapper */
.wa-floating-btn {
    background: var(--bg-white); border-radius: 50px; padding: 8px 8px 8px 15px; 
    display: flex; align-items: center; gap: 12px; cursor: pointer; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); pointer-events: auto;
}
.wa-floating-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); border-color: var(--light-blue); }

/* Agent Illustration SVG */
.wa-rep-illustration { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; overflow: hidden; background: #F0F4F8; flex-shrink: 0; }
.wa-rep-illustration svg { width: 100%; height: 100%; }

/* Text */
.wa-btn-text { font-weight: 700; color: var(--primary-blue); font-size: 1rem; white-space: nowrap; }

/* Pointing Arrow */
.wa-pointer { color: var(--accent-orange); font-size: 1.1rem; animation: arrow-slide 1s infinite alternate; display: flex; }
@keyframes arrow-slide { 0% { transform: translateX(0); } 100% { transform: translateX(5px); } }

/* Pulsing Icon */
.wa-icon-wrapper { width: 45px; height: 45px; background: #25D366; color: var(--bg-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; position: relative; z-index: 1; flex-shrink: 0; }
.wa-icon-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50%; background: #25D366; z-index: -1; animation: wa-pulse 2s infinite; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }

/* Chat Popup (WhatsApp Web Style) */
.wa-chat-popup { width: 360px; background: var(--bg-white); border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); margin-bottom: 20px; overflow: hidden; opacity: 0; transform: scale(0.8) translateY(20px); transform-origin: bottom right; visibility: hidden; transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); border: 1px solid var(--border-color); pointer-events: auto; }
.wa-chat-popup.active { opacity: 1; transform: scale(1) translateY(0); visibility: visible; }

.wa-header { background: #075E54; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; color: var(--bg-white); }
.wa-header-info { display: flex; align-items: center; gap: 15px; }
.wa-chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: #128C7E; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.wa-header-info h4 { color: var(--bg-white); margin: 0 0 2px 0; font-size: 1.05rem; }
.wa-header-info p { color: #D1F2EB; margin: 0; font-size: 0.8rem; font-weight: 500; }
.wa-close { background: none; border: none; color: var(--bg-white); font-size: 1.3rem; cursor: pointer; transition: transform 0.3s; }
.wa-close:hover { transform: rotate(90deg); }

.wa-body { background: #E5DDD5 url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png'); padding: 20px; height: 250px; overflow-y: auto; }
.wa-message-bubble { background: var(--bg-white); padding: 10px 15px; border-radius: 0 10px 10px 10px; font-size: 0.95rem; color: var(--text-dark); box-shadow: 0 1px 2px rgba(0,0,0,0.1); position: relative; max-width: 90%; }
.wa-message-bubble p { margin: 0 0 5px 0; color: var(--text-dark); }
.wa-time { display: block; text-align: right; font-size: 0.7rem; color: #999; }

.wa-footer { padding: 15px; background: #F0F0F0; }
.wa-footer form { display: flex; align-items: center; gap: 10px; background: var(--bg-white); border-radius: 30px; padding: 5px 15px; }
.wa-footer input { width: 100%; border: none; outline: none; font-family: inherit; font-size: 16px; padding: 10px 0; background: transparent; }
.wa-send-btn { background: #128C7E; color: var(--bg-white); border: none; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); flex-shrink: 0; }
.wa-send-btn:hover { background: #075E54; transform: scale(1.1); }

/* =========================================
   Footer
   ========================================= */
.footer { background: var(--primary-blue); color: var(--bg-white); padding-top: 80px; }
.footer h3 { color: var(--bg-white); font-size: 1.4rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--accent-orange); border-radius: 5px; }
.footer p, .footer a { color: #A0B3C6; }
.footer-top { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo img { height: 80px; margin-bottom: 20px; }

/* =========================================
   EXTREME MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .header-actions .desktop-btn { display: none; }
    .hamburger { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid, .gallery-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner, .about-inner { grid-template-columns: 1fr; text-align: center; }
    .about-list li { justify-content: center; }
    .process-inner, .contact-inner { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .step { text-align: left; }
    .detail-item { justify-content: left; text-align: left; }
}

@media (max-width: 768px) {
    /* Prevent Typography Breaking */
    h1, .hero-content h1 { font-size: 2.2rem !important; line-height: 1.3; margin-bottom: 15px; }
    h2 { font-size: 1.8rem !important; }
    h3 { font-size: 1.3rem !important; }
    
    .hero { padding: 60px 0; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .hero-btns .btn { margin: 0 !important; width: 100%; max-width: 320px; }
    
    /* Fix Floating Cards on Mobile */
    .floating-card { position: relative; bottom: auto; left: auto; margin: -40px auto 0; width: 90%; z-index: 5; }
    .experience-box { position: relative; right: auto; left: auto; bottom: auto; width: 90%; margin: -40px auto 0; padding: 25px; z-index: 5; }
    .experience-box h2 { font-size: 3rem; }
    
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer h3::after { left: 50%; transform: translateX(-50%); }
    
    /* Responsive WhatsApp Widget */
    .wa-btn-text, .wa-pointer { display: none; } /* Hide text/arrow to save space */
    .wa-floating-btn { padding: 5px; border-radius: 50px; }
    .whatsapp-widget-container { bottom: 20px; right: 20px; }
    .wa-chat-popup { width: calc(100vw - 40px); margin-bottom: 15px; }
}

@media (max-width: 480px) {
    .top-bar { display: none; }
    h1, .hero-content h1 { font-size: 2rem !important; }
    .stats-box h2 { font-size: 2.5rem; }
    .contact-form { padding: 25px 15px; }
    .form-row { flex-direction: column; }
    .features-grid, .gallery-grid, .testimonial-grid, .stats-grid { grid-template-columns: 1fr; }
    
    /* WhatsApp */
    .wa-icon-wrapper { width: 45px; height: 45px; font-size: 1.5rem; }
}