/* Modern FreshOS-Inspired Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Elegant Dark Tones */
    --primary-color: #1a1d29;
    --primary-dark: #0f1117;
    --primary-light: #2a2f3f;
    
    /* Accent Colors - Sophisticated Orange */
    --accent-color: #FF6B35;
    --accent-color-dark: #E55A2B;
    --accent-color-light: #FF8C5A;
    --accent-gold: #D4AF37;
    
    /* Secondary Colors - Professional Grays */
    --secondary-color: #4a5568;
    --secondary-light: #718096;
    
    /* Text Colors */
    --text-color: #2d3748;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    
    /* Background Colors - Clean & Elegant */
    --bg-light: #f7fafc;
    --bg-lighter: #edf2f7;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    
    /* Border & Shadow */
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(255, 193, 7, 0.08);
    --shadow-md: 0 4px 16px rgba(255, 152, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(255, 152, 0, 0.15);
    --shadow-orange: 0 8px 24px rgba(255, 107, 53, 0.25);
    
    /* Spacing */
    --spacing-unit: 1rem;
    --max-width: 1200px;
    
    /* Typography - Professional Fonts */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.011em;
    font-weight: 400;
    padding-top: 0;
}

/* Navigation */
.navbar-modern {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none;
}

/* Shrunk navbar state when scrolling */
.navbar-modern.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-modern.scrolled .navbar-brand {
    font-size: 1.5rem;
}

.navbar-modern.scrolled .navbar-menu li a {
    font-size: 0.875rem;
    padding: 0.35rem 0;
}

.navbar-modern.scrolled .navbar-container {
    padding: 0 1.75rem;
}

.navbar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    flex-shrink: 0;
}

.navbar-modern.scrolled .navbar-brand img {
    height: 32px;
    width: 32px;
}

/* Text spacing when logo is present */
.navbar-brand span {
    margin-left: 0.5rem;
    line-height: 1;
}

/* Logo only option - hide text when logo is present */
.navbar-brand.logo-only span {
    display: none;
}

.navbar-brand.logo-only img {
    height: 45px;
    width: 45px;
}

.navbar-modern.scrolled .navbar-brand.logo-only img {
    height: 36px;
    width: 36px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.navbar-menu li a {
    font-family: var(--font-body);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
    transition: width 0.3s ease;
}

.navbar-menu li a:hover {
    color: var(--accent-color);
}

.navbar-menu li a:hover::after,
.navbar-menu li a.active::after {
    width: 100%;
}

.navbar-menu li a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 15rem 2rem 10rem;
    text-align: center;
    width: 100%;
    margin: 80px 0 0; /* Account for fixed navbar */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Adjust hero padding on other pages - accounts for fixed navbar */
.about .hero-section,
.services .hero-section,
.contact .hero-section,
.casestudies .hero-section {
    padding: 8rem 2rem 4rem;
    margin-top: 80px; /* Account for fixed navbar height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Static Background Canvas - FreshOS Style Layered Waves */
#hero-bg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 40%, rgba(255, 193, 7, 0.3) 0%, rgba(255, 152, 0, 0.15) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Background Animation Controls - FreshOS Style */
.background-pause-button {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    padding: 0;
    margin: 0;
}

.background-pause-button.visible {
    display: flex;
}

.background-pause-button:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.background-pause-button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.background-pause-button svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
    padding: 0 2rem;
    text-align: center;
    width: 100%;
}

.hero-cta {
    font-family: var(--font-heading);
    display: inline-block;
    padding: 1.125rem 3rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-orange);
    position: relative;
    z-index: 2;
    letter-spacing: 0.01em;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35);
    background: linear-gradient(135deg, var(--accent-color-light) 0%, var(--accent-color) 100%);
}

/* Section Styles */
.section {
    padding: 7rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    scroll-margin-top: 100px; /* Account for fixed navbar when scrolling to anchor */
}

/* Ensure images are responsive */
.section img,
.feature-card img,
.team-card img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* 2x2 grid for sections with exactly 4 items */
.features-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Google Maps container */
.map-container {
    width: 100%;
    height: 600px;
}

.google-map-iframe {
    width: 100%;
    height: 600px;
}

/* Force 2x2 for grids with 4 items on desktop */
@media (min-width: 992px) {
    .features-grid:has(> :nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Responsive grid adjustments for smaller screens */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .hero-section {
        padding: 5rem 1rem 2rem;
    }
    
    .about .hero-section,
    .services .hero-section,
    .contact .hero-section,
    .casestudies .hero-section {
        padding: 4rem 1rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        height: 30px;
        width: 30px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 0.5rem;
        left: 1rem;
    }
    
    .contact-form-box {
        padding: 1.5rem;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-card {
        text-align: center;
    }
    
    .text-large,
    .text-medium {
        text-align: center;
    }
    
    /* Image alignment on mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    section img {
        margin: 0 auto;
    }
    
    /* Text overflow prevention */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* About page We Help section - small mobile fixes (480px) */
    section > div[style*="max-width: 900px"] {
        padding: 0 0.5rem !important;
    }
    
    section > div[style*="grid-template-columns: 1fr 1fr"] {
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    section > div[style*="grid-template-columns: 1fr 1fr"] h2.text-medium {
        font-size: 1.3rem !important;
        padding: 0 !important;
    }
    
    section > div[style*="grid-template-columns: 1fr 1fr"] p {
        font-size: 0.9rem !important;
        padding: 0 !important;
    }
    
    /* Center all headings on mobile */
    h1, h2, h3, h4, h5, h6 {
        text-align: center;
    }
    
    /* Exception for inline headings */
    .feature-title,
    .feature-description {
        text-align: center;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Ensure proper container width */
    .content-container,
    .form-container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Fix any remaining alignment issues */
    .hero-title,
    .hero-subtitle {
        text-align: center;
    }
    
    /* Center buttons in cards */
    .feature-card .btn {
        margin: 1rem auto 0;
    }
    
    /* Google Maps responsive on mobile */
    .map-container {
        height: 400px !important;
    }
    
    .google-map-iframe {
        height: 400px !important;
    }
}

.feature-card {
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 140, 90, 0.15) 100%);
    transform: scale(1.05);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
    line-height: 1.35;
}

.feature-description {
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.98rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Testimonial Section */
.testimonial-section {
    background: var(--bg-gradient);
    padding: 6rem 2rem;
    position: relative;
    scroll-margin-top: 100px; /* Account for fixed navbar */
}

.testimonial-card {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.testimonial-company {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About page - We Help section: Base styles */
/* Mobile first: Single column by default */
.about-grid-layout {
    display: grid !important;
    grid-template-columns: 1fr !important; /* Mobile: 1 column */
    gap: 2.5rem !important;
    align-items: center !important;
    margin-bottom: 2.5rem !important;
    transition: grid-template-columns 0.3s ease, gap 0.3s ease;
}

.about-grid-layout > div {
    width: 100% !important;
    padding: 0 !important;
    transition: all 0.3s ease;
}

/* Mobile: Center align text */
.about-grid-layout > div:last-child {
    text-align: center !important;
}

.about-grid-layout h2.text-medium {
    text-align: center !important;
    font-size: 1.4rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.4 !important;
    padding: 0 0.5rem;
    transition: all 0.3s ease;
}

.about-grid-layout p {
    text-align: center !important;
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
    margin-bottom: 1.25rem !important;
    padding: 0 0.5rem;
    transition: all 0.3s ease;
}

.about-grid-layout .btn {
    margin: 1.5rem auto 0 !important;
    display: block !important;
    width: auto !important;
    max-width: 250px !important;
    padding: 0.875rem 2rem !important;
    transition: all 0.3s ease;
}

.about-grid-layout img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
        box-shadow: 0 10px 30px rgba(255, 152, 0, 0.15) !important;
    margin: 0 auto !important;
    display: block !important;
    transition: all 0.3s ease;
}

/* Container padding for mobile */
section > div[style*="max-width: 900px"] {
    padding: 0 1rem !important;
    max-width: 100% !important;
    transition: padding 0.3s ease;
}

/* Desktop: Enable 2 columns (min-width: 769px) */
@media (min-width: 769px) {
    .about-grid-layout {
        grid-template-columns: 1fr 1fr !important; /* Desktop: 2 columns */
        gap: 4rem !important;
        margin-bottom: 4rem !important;
    }
    
    /* Desktop: Left align text */
    .about-grid-layout > div:last-child {
        text-align: left !important;
    }
    
    .about-grid-layout h2.text-medium {
        text-align: left !important;
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
    }
    
    .about-grid-layout p {
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.8 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
    }
    
    .about-grid-layout .btn {
        margin: 2rem 0 0 0 !important;
        display: inline-block !important;
        width: auto !important;
        max-width: none !important;
    }
    
    .about-grid-layout img {
        margin: 0 !important;
    }
    
    /* Container padding for desktop */
    section > div[style*="max-width: 900px"] {
        padding: 0 2rem !important;
        max-width: 900px !important;
    }
}

/* Footer */
.footer-modern {
    background: linear-gradient(135deg, #FFB53D 0%, #FF9F1C 50%, #FF8F00 100%);
    color: #1a1d29;
    padding: 3rem 2rem 1.5rem;
    position: relative;
    border-top: 3px solid var(--accent-color);
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-light) 50%, var(--accent-color) 100%);
}

.footer-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1d29;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.footer-description {
    font-family: var(--font-body);
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 0.9rem;
}

.footer-modern h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent-color) !important;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-family: var(--font-body);
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color-light);
    padding-left: 12px;
}

.footer-links a:hover::before {
    width: 6px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    font-family: var(--font-body);
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 400;
}

.footer-contact {
    font-family: var(--font-body);
    color: #2d3748;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.6;
}

.footer-contact strong {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1a1d29;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact a:hover {
    color: var(--accent-color-light);
    transform: translateX(2px);
}

/* Buttons - Base Styles */
.btn,
button.btn,
input[type="submit"].btn,
a.btn {
    font-family: var(--font-body);
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
    line-height: 1.5;
    box-sizing: border-box;
}

.btn-primary,
a.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover,
input[type="submit"].btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35);
    background: linear-gradient(135deg, var(--accent-color-light) 0%, var(--accent-color) 100%);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    color: white;
    box-shadow: var(--shadow-orange);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.btn-full {
    width: 100%;
    display: block;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Responsive Design */

/* Tablet View (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Ensure 4-item grids stay 2x2 on tablets */
    .features-grid:has(> :nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section {
        padding: 5rem 2rem;
    }
    
    .hero-section {
        padding: 10rem 2rem 6rem;
    }
    
    .about .hero-section,
    .services .hero-section,
    .contact .hero-section,
    .casestudies .hero-section {
        padding: 7rem 2rem 4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .testimonial-card {
        padding: 3rem 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
    /* About page - We Help section: Mobile - Force single column */
    .about-grid-layout {
        grid-template-columns: 1fr !important; /* Disable 2 columns, enable 1 column */
    }
    
    section > div[style*="max-width: 900px"] {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    .navbar-modern {
        padding: 1rem 0;
    }
    
    .navbar-modern.scrolled {
        padding: 0.5rem 0;
    }
    
    .navbar-modern.scrolled .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-modern.scrolled .navbar-brand img {
        height: 28px;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-modern.scrolled .navbar-menu li a {
        font-size: 0.85rem;
    }
    
    .navbar-container {
        padding: 0 1.5rem;
    }
    
    .hero-section {
        padding: 6rem 1.5rem 3rem;
        margin-top: 70px; /* Smaller navbar on mobile */
    }
    
    .about .hero-section,
    .services .hero-section,
    .contact .hero-section,
    .casestudies .hero-section {
        padding: 5rem 1.5rem 3rem;
        margin-top: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(255, 152, 0, 0.15);
        transition: left 0.3s ease;
        gap: 1.5rem;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .navbar-modern.scrolled .navbar-menu {
        top: 55px;
        height: calc(100vh - 55px);
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-toggle {
        display: block;
        font-size: 1.5rem;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .navbar-menu li {
        width: 100%;
    }
    
    .navbar-menu li a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 4rem 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* On mobile, 4-item grids stay single column */
    .features-grid:has(> :nth-child(4):last-child) {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* Google Maps responsive on mobile */
    .map-container {
        height: 400px !important;
    }
    
    .google-map-iframe {
        height: 400px !important;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
        top: 1rem;
        left: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .loan-info-box {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-box {
        padding: 2rem 1.5rem;
    }
    
    /* Google Maps responsive on mobile */
    .map-container {
        height: 400px !important;
    }
    
    .google-map-iframe {
        height: 400px !important;
    }
    
    /* Mobile Alignment Fixes */
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .feature-card {
        text-align: center;
    }
    
    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .text-large,
    .text-medium,
    .text-subheading {
        text-align: center;
    }
    
    .hero-cta {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-white {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom {
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .achievement-card {
        text-align: center;
    }
    
    .team-card {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .team-card img {
        margin: 0 auto;
    }
    
    .stat-number-large {
        text-align: center;
        display: block;
    }
    
    .stat-label {
        text-align: center;
        display: block;
    }
    
    .loan-info-box h3 {
        text-align: center;
        font-size: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .form-control {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
    
    .contact-info-card,
    .feature-card[style*="text-align: center"] {
        text-align: center !important;
    }
    
    /* Better flex layout for mobile */
    section > div[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Services page responsive */
    section > div[style*="display: grid"][style*="1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    section > div[style*="display: grid"][style*="1fr 1fr"] > div {
        text-align: center !important;
    }
    
    section > div[style*="display: grid"][style*="1fr 1fr"] img {
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Stats grid alignment */
    section > div[style*="grid-template-columns: repeat(auto-fit"] {
        gap: 1.5rem !important;
    }
    
    section > div[style*="grid-template-columns: repeat(auto-fit"] > div {
        text-align: center !important;
    }
    
    /* CTA section text alignment */
    .cta-section p {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .cta-section h2 {
        text-align: center;
        line-height: 1.3;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .footer-modern {
        padding: 2.5rem 1.5rem 1.25rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-top: 1.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

h1 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

h3 {
    font-weight: 700;
    letter-spacing: -0.015em;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

label {
    font-family: var(--font-body);
    font-weight: 500;
}

/* Enhanced Typography for Financial Services - Additional refinements */
strong, b {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

/* Typography Utility Classes */
.text-large {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-medium {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.text-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.text-small-heading {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--accent-color);
    line-height: 1.4;
}

.text-body-large {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.text-body {
    font-size: 0.95rem;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.text-accent {
    color: var(--accent-color);
    font-weight: 600;
}

.text-accent-light {
    color: var(--accent-color-light);
}

.text-primary {
    color: var(--primary-color);
}

.text-light {
    color: var(--text-light);
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-color);
    line-height: 1;
    letter-spacing: -0.02em;
}

.achievement-year {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 1rem 0;
    font-family: var(--font-body);
}

.achievement-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

/* Better number display */
.stat-number,
.stat-value {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/* Additional Elegant Enhancements */

/* Elegant Number Badges */
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

/* Elegant Dividers */
.elegant-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
    margin: 2rem auto;
    border-radius: 2px;
}

/* Card Hover Effects Enhancement */
.feature-card:hover .feature-title {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

/* Elegant Input Fields */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    font-family: var(--font-body);
    transition: all 0.3s ease;
    font-weight: 400;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Elegant Link Styling */
a {
    transition: all 0.3s ease;
}

/* Premium Badge Style */
.premium-badge {
    font-family: var(--font-heading);
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
    letter-spacing: 0.02em;
}

/* Elegant Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 20%, var(--border-color) 80%, transparent 100%);
    margin: 4rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Utility Classes for Common Patterns */
.content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.achievement-card {
    text-align: center;
    padding: 3rem 2rem;
}

.achievement-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.achievement-year {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 1rem 0;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-light);
    font-family: var(--font-body);
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: var(--font-heading);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-body);
}

.btn-white,
a.btn-white {
    background: white;
    color: var(--accent-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.12);
}

.btn-white:hover,
a.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.18);
    color: var(--accent-color-dark);
}

.btn-full,
.btn.btn-full {
    width: 100%;
    display: block;
}

.btn-large,
.btn.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* File upload button styling */
.contact_file.btn.btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
}

.content-divider {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.content-divider h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.loan-info-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.loan-info-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.loan-info-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.contact-info-card {
    text-align: center;
}

.contact-info-card .feature-icon {
    margin: 0 auto 1.5rem;
}

.contact-info-card .feature-description {
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-body);
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--accent-color-dark);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-body);
}

.form-control {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    display: block;
}

.team-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.team-info {
    font-size: 0.95rem;
    font-family: var(--font-body);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20BA5A 0%, #25D366 100%);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: ripple-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@keyframes ripple-whatsapp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* WhatsApp Tooltip */
.whatsapp-float::after {
    content: 'Chat with us on WhatsApp';
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.whatsapp-float:hover::after {
    opacity: 1;
    right: 80px;
}

/* Tooltip - using a simpler approach without arrow for better compatibility */


@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float::after {
        display: none;
    }
}

