/* 
  =========================================
  DESIGN SYSTEM & GLOBAL CSS CUSTOM TOKENS
  =========================================
  Defines our central design tokens for colors, typography, borders, 
  box shadows, and cubic-bezier transition constants.
*/
:root {
    /* Color Palette */
    --color-primary-dark: #0f223f;
    --color-primary-dark-rgb: 15, 34, 63;
    --color-accent-coral: #f05050;
    --color-accent-coral-rgb: 240, 80, 80;
    --color-accent-coral-hover: #e04444;
    --color-bg-light: #ffffff;
    --color-bg-neutral: #f8fafc;
    --color-text-dark: #1f2937;
    --color-text-muted: #6b7280;
    --color-border-light: #e2e8f0;
    
    /* Typography */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout Properties */
    --max-width: 1200px;
    --header-height: 80px;

    /* Transitions & Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
}

/* Base Styles & Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

/* Global Container Layout Utility */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Padding Utilities */
.section-padding {
    padding: 100px 0;
}

.bg-neutral {
    background-color: var(--color-bg-neutral);
}

/* Typography Accent Utilities */
.section-subtitle {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-accent-coral);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-bg-light) !important;
}

.text-coral {
    color: var(--color-accent-coral) !important;
}

/* 
  =========================================
  COMPONENT: Buttons & Interactive Elements
  =========================================
*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-bounce);
    gap: 8px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--color-accent-coral);
    color: var(--color-bg-light);
}

.btn-primary:hover {
    background-color: var(--color-accent-coral-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 80, 80, 0.4);
}

.btn-secondary {
    background-color: var(--color-primary-dark);
    color: var(--color-bg-light);
}

.btn-secondary:hover {
    background-color: #17325c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 34, 63, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-bg-light);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-bg-light);
    transform: translateY(-3px);
}

/* WhatsApp branded CTA button */
.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    border-color: transparent;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* 
  =========================================
  COMPONENT: Header Navigation Bar
  =========================================
*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border-light);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Logo toggles based on header color scheme */
.logo-dark-bg {
    display: none;
}

.logo-light-bg {
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-coral);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Sticky Header Scroll Trigger (Activated via JS) */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .logo {
    height: 40px;
}

/* Mobile Nav Toggle Icon */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* 
  =========================================
  COMPONENT: Hero Section
  =========================================
*/
.hero-section {
    background-color: var(--color-primary-dark);
    background-image: linear-gradient(rgba(15, 34, 63, 0.85), rgba(15, 34, 63, 0.95)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: calc(var(--header-height) + 60px) 0 120px 0;
    position: relative;
    overflow: hidden;
}

/* Visual Background Blur Dots for Premium Effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 80, 80, 0.08) 0%, rgba(240, 80, 80, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--color-bg-light);
}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-coral);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero Dashboard Floating Animation */
.hero-visual {
    display: flex;
    justify-content: center;
}

.dashboard-wrapper {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: float-dashboard 6s ease-in-out infinite;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@keyframes float-dashboard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* 
  =========================================
  COMPONENT: Floating Stats Bar
  =========================================
*/
.stats-section {
    position: relative;
    margin-top: -60px; /* Overlaps hero and about section */
    z-index: 10;
}

.stats-card {
    background-color: #0d1e37; /* Slightly darker than hero background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(240, 80, 80, 0.1);
    color: var(--color-accent-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.stat-icon {
    width: 24px;
    height: 24px;
}

.stat-item:hover .stat-icon-wrapper {
    background-color: var(--color-accent-coral);
    color: var(--color-bg-light);
    transform: scale(1.1) rotate(5deg);
}

.stat-info {
    color: var(--color-bg-light);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* 
  =========================================
  COMPONENT: About Us Section
  =========================================
*/
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-text.highlight {
    font-size: 1.125rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.about-actions {
    margin-top: 32px;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.tablet-wrapper {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.tablet-image {
    width: 100%;
    transition: var(--transition-smooth);
}

.tablet-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tablet-wrapper:hover .tablet-image {
    transform: scale(1.03);
}

/* 
  =========================================
  COMPONENT: Services Grid
  =========================================
*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-accent-coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-bounce);
}

.service-icon {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Card hover animation raises it and drops shadow */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.08);
}

/* 
  =========================================
  COMPONENT: Client Logos Portfolio
  =========================================
*/
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.client-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: var(--transition-smooth);
}

.client-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition-smooth);
    image-rendering: -webkit-optimize-contrast;
}

/* Client logos hover effects */
.client-card:hover {
    border-color: var(--color-accent-coral);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.client-card:hover .client-logo {
    opacity: 1;
    transform: scale(1.06);
}

/* 
  =========================================
  COMPONENT: Contact & Form Section
  =========================================
*/
.contact-section {
    background-color: var(--color-primary-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-accent-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.contact-detail-icon {
    width: 20px;
    height: 20px;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.detail-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-bg-light);
}

.detail-link:hover {
    color: var(--color-accent-coral);
}

.detail-static-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-bg-light);
}

.contact-detail-item:hover .contact-icon-box {
    background-color: var(--color-accent-coral);
    color: var(--color-bg-light);
    border-color: transparent;
    transform: translateX(4px);
}

/* Modern Floating Label Form Controls */
.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--color-bg-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-textarea {
    height: 120px;
    resize: none;
}

.form-label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

/* Floating logic: trigger when input is focused or not empty (placeholder serves as anchor) */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-coral);
    background-color: #0b1a30; /* Matches parent dark background */
    padding: 0 6px;
}

.form-input:focus {
    border-color: var(--color-accent-coral);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(240, 80, 80, 0.15);
}

/* Error validation styling */
.form-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 4px;
    padding-left: 4px;
}

.form-group.invalid .form-input {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.form-group.invalid .form-error {
    display: block;
}

.form-submit {
    margin-top: 8px;
}

/* 
  =========================================
  COMPONENT: Site Footer
  =========================================
*/
.site-footer {
    background-color: #0b192e; /* Darker tone for separation */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
}

.branding-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-title {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-bg-light);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--color-accent-coral);
    padding-left: 4px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.footer-contact-details a:hover {
    color: var(--color-accent-coral);
}



/* 
  =========================================
  INTERACTION: Scroll-Triggered Reveal Animations
  =========================================
*/
.reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-bottom {
    transform: translateY(32px);
}

.reveal-left {
    transform: translateX(-32px);
}

.reveal-right {
    transform: translateX(32px);
}

/* Active class added via JS when elements cross viewport thresholds */
.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* 
  =========================================
  RESPONSIVE SCREEN RESOLUTION BREAKPOINTS
  =========================================
*/

/* --- TABLET BREAKPOINT (Max-Width: 1024px) --- */
@media screen and (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-container {
        gap: 32px;
    }
    
    .stats-card {
        padding: 24px 16px;
        flex-wrap: wrap;
        gap: 24px 0;
    }
    
    .stat-item {
        flex: 0 0 50%;
        justify-content: flex-start;
        padding-left: 20px;
    }
    
    .stat-item:nth-child(even) {
        border-right: none;
    }
    
    .about-container {
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-container {
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: 32px;
    }
    
    .footer-col:last-child {
        grid-column: span 3;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 24px;
    }
    
    .footer-contact-details {
        margin-bottom: 0;
    }
}

/* --- MOBILE LANDSCAPE/PORTRAIT BREAKPOINT (Max-Width: 768px) --- */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }
    
    .site-header {
        background-color: #ffffff;
        border-bottom: 1px solid var(--color-border-light);
        height: 70px;
    }
    
    .site-header.scrolled {
        background-color: #ffffff;
        height: 70px;
    }
    
    .logo {
        height: 38px;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* Responsive Sliding Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        padding: 30px 20px;
        gap: 16px;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid var(--color-border-light);
        overflow-y: auto;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    
    /* Toggle Hamburger Animation */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-cta {
        display: none; /* Hidden on mobile header to save space */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.925rem;
        margin-bottom: 28px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-text {
        font-size: 0.875rem;
    }
    
    .about-text.highlight {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    .service-description {
        font-size: 0.875rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .client-card {
        height: 100px;
        padding: 10px;
    }
    
    .client-logo {
        max-height: 55px;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 20px;
        padding: 32px 24px;
    }
    
    .stat-item {
        flex: 0 0 100%;
        width: 100%;
        justify-content: flex-start;
        border-right: none !important;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .branding-col {
        align-items: center;
    }
    
    .footer-logo {
        align-self: center;
    }
    
    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.85rem;
    }
    

    .footer-col:last-child {
        grid-column: span 1;
        flex-direction: column;
        gap: 24px;
        align-items: center;
        padding-top: 0;
        border-top: none;
    }

    /* Small Mobile Specific Styles */
    @media screen and (max-width: 480px) {
        .container {
            padding: 0 16px;
        }
        
        .logo {
            height: 32px;
        }

        .hero-title {
            font-size: 1.6rem;
        }

        .hero-description {
            font-size: 0.85rem;
        }

        .hero-buttons {
            flex-direction: column;
            width: 100%;
            gap: 12px;
        }

        .hero-buttons .btn {
            width: 100%;
            font-size: 0.9rem;
            padding: 12px 20px;
        }

        .stats-card {
            flex-direction: column;
            gap: 16px;
            padding: 24px;
        }

        .stat-item {
            flex: 0 0 100%;
            justify-content: flex-start;
            border-right: none !important;
            padding-left: 0;
            width: 100%;
            max-width: 220px;
            margin: 0 auto;
        }
        
        .stat-info {
            text-align: left;
        }
        
        .stat-number {
            font-size: 1.35rem;
        }
        
        .stat-label {
            font-size: 0.7rem;
        }

        .clients-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .client-card {
            height: 90px;
        }

        .client-logo {
            max-height: 50px;
        }
    }
}

/* 
  =========================================
  CUSTOM CONTACT SECTION THEME (WOOD BLOCK DESIGN)
  =========================================
*/
.contact-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.82)), url('assets/contact_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-text-dark);
}

.contact-section .section-title {
    color: var(--color-primary-dark);
}

.contact-section .contact-description {
    color: var(--color-text-muted);
}

.contact-section .contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
}

.contact-section .form-input {
    background-color: rgba(255, 255, 255, 0.55);
    border: 1.5px solid var(--color-primary-dark);
    border-radius: 30px;
    color: var(--color-text-dark);
    padding: 14px 24px;
    font-size: 0.95rem;
}

.contact-section .form-textarea {
    border-radius: 20px;
    height: 120px;
}

.contact-section .form-label {
    color: rgba(15, 34, 63, 0.6);
    left: 24px;
    top: 14px;
}

.contact-section .form-input:focus ~ .form-label,
.contact-section .form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-coral);
    background-color: #f6f8fb; /* Match local background */
    padding: 0 6px;
}

.contact-section .form-input:focus {
    border-color: var(--color-accent-coral);
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 4px rgba(240, 80, 80, 0.15);
}

.contact-section .contact-icon-box {
    background-color: rgba(15, 34, 63, 0.05);
    border: 1px solid rgba(15, 34, 63, 0.1);
    color: var(--color-accent-coral);
}

.contact-section .detail-label {
    color: var(--color-text-muted);
}

.contact-section .detail-link {
    color: var(--color-primary-dark);
}

.contact-section .detail-link:hover {
    color: var(--color-accent-coral);
}

.contact-section .contact-detail-item:hover .contact-icon-box {
    background-color: var(--color-accent-coral);
    color: var(--color-bg-light);
    border-color: transparent;
}

/* Phone Selector Flag Dropdown */
.phone-group {
    display: flex;
    align-items: center;
    position: relative;
}

.flag-container {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    z-index: 5;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--color-text-dark);
}

.form-phone-input {
    padding-left: 85px !important;
}

.form-phone-label {
    left: 85px !important;
}

.contact-section .form-phone-input:focus ~ .form-phone-label,
.contact-section .form-phone-input:not(:placeholder-shown) ~ .form-phone-label {
    left: 20px !important;
}

/* 
  =========================================
  COMPONENT: Floating WhatsApp Widget (Modern & Dynamic)
  =========================================
*/
.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.4s;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-widget-container.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Floating Action Button (FAB) */
.floating-whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp-btn .wa-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp-btn:active {
    transform: scale(0.95);
}

/* Double Radar Pulsing Wave Animation */
.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.3);
    z-index: -1;
    pointer-events: none;
}

.ring-1 {
    animation: radar-pulse 2.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.ring-2 {
    animation: radar-pulse 2.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
    animation-delay: 1.25s;
}

@keyframes radar-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Chat Bubble Popup Card */
.whatsapp-chat-bubble {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 290px;
    background-color: rgba(13, 30, 55, 0.95); /* Rich dark blue glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.92);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    z-index: 1001;
    overflow: hidden;
}

.whatsapp-chat-bubble.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Close Button */
.bubble-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10;
}

.bubble-close-btn:hover {
    color: #ffffff;
}

/* Header inside Chat Bubble */
.bubble-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.agent-avatar-wrapper {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-avatar {
    width: 65%;
    height: auto;
    object-fit: contain;
}

/* Pulsing Online Dot */
.online-indicator {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    border: 2px solid #0b192e;
    box-shadow: 0 0 8px #22c55e;
}

.agent-status-info {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-family: var(--font-headings);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.agent-status-text {
    font-size: 0.72rem;
    color: #22c55e;
    font-weight: 500;
}

/* Body inside Chat Bubble */
.bubble-body {
    padding: 16px;
}

.bubble-body p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 12px 0;
}

.bubble-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: all 0.2s ease;
}

.bubble-cta-btn:hover {
    background-color: #1ed760;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

@media screen and (max-width: 480px) {
    .whatsapp-chat-bubble {
        width: 250px;
        bottom: 75px;
    }
}
