/* css/style.css */

/* --------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------- */
:root {
    --bg-dark: #f0f4f9;          /* Light base background */
    --bg-card: #ffffff;          /* White card background */
    --bg-card-glass: rgba(255, 255, 255, 0.85); /* Light glassmorphic card base */
    --border-glass: rgba(0, 74, 204, 0.08);
    --bg-section-alt: #e1eaf5;
    
    --primary-blue: #004acc;     /* Favicon brand blue */
    --primary-glow: rgba(0, 74, 204, 0.1);
    --secondary-blue: #0060c0;   /* Darker blue for readable contrast */
    --text-white: #0f172a;       /* Very dark slate for headings */
    --text-light: #334155;       /* Dark slate for body text */
    --text-muted: #64748b;       /* Muted slate for secondary text */
    --accent-gray: #cbd5e1;
    --success: #10b981;
    --danger: #ef4444;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06);

    /* Component-specific variables mapped to Light Mode by default */
    --bg-header: rgba(255, 255, 255, 0.85);
    --bg-hover: rgba(0, 0, 0, 0.03);
    --bg-input: #ffffff;
    --text-input: #334155;
    --bg-footer: #e6eef7;
    --bg-seo-links: #dbe7f4;
    --border-seo-links: rgba(0, 0, 0, 0.04);
    --border-seo-item: rgba(0, 0, 0, 0.08);
    --bg-sidebar-gradient: linear-gradient(135deg, #ffffff, #e0ecfb);
    --bg-faq: rgba(255, 255, 255, 0.6);
    --bg-locations-gradient: linear-gradient(180deg, #f0f4f9, #e8eff7, #f0f4f9);
    --bg-service-card-hover: rgba(255, 255, 255, 0.95);
    --border-service-card-hover: rgba(0, 74, 204, 0.2);
    --shadow-service-card-hover: 0 20px 40px rgba(0, 74, 204, 0.08);
}

/* Dark Theme Variables Override */
.dark-theme {
    --bg-dark: #06162d;          /* Base dark background */
    --bg-card: #0d213f;          /* Card background */
    --bg-card-glass: rgba(13, 33, 63, 0.4); /* Glassmorphic card base */
    --border-glass: rgba(255, 255, 255, 0.08);
    --bg-section-alt: #040d1c;
    
    --primary-blue: #004acc;     /* Favicon brand blue */
    --primary-glow: rgba(0, 74, 204, 0.35);
    --secondary-blue: #0082f0;   /* Accent bright blue */
    --text-white: #ffffff;
    --text-light: #e2e8f0;       /* High-contrast body text */
    --text-muted: #94a3b8;      /* Secondary text */
    --accent-gray: #1e293b;
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

    /* Component-specific variables overridden for Dark Mode */
    --bg-header: rgba(6, 22, 45, 0.85);
    --bg-hover: rgba(255, 255, 255, 0.05);
    --bg-input: rgba(6, 22, 45, 0.6);
    --text-input: #ffffff;
    --bg-footer: #030a16;
    --bg-seo-links: rgba(0, 0, 0, 0.2);
    --border-seo-links: rgba(255, 255, 255, 0.04);
    --border-seo-item: rgba(255, 255, 255, 0.08);
    --bg-sidebar-gradient: linear-gradient(135deg, #0d213f, #162a45);
    --bg-faq: rgba(13, 33, 63, 0.3);
    --bg-locations-gradient: linear-gradient(180deg, #06162d, #09172a, #06162d);
    --bg-service-card-hover: rgba(13, 33, 63, 0.7);
    --border-service-card-hover: rgba(0, 130, 240, 0.3);
    --shadow-service-card-hover: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-glass);
    color: var(--text-white);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    margin-right: 15px;
}

.theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
}

/* Toggle icon display based on theme */
.moon-icon {
    display: block; /* Show moon icon in light mode to switch to dark */
}
.sun-icon {
    display: none;  /* Hide sun icon in light mode */
}

.dark-theme .moon-icon {
    display: none;
}
.dark-theme .sun-icon {
    display: block;
}

.dark-theme .theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------
   2. Reset & General Styles
   -------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Helper spacing classes */
.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* --------------------------------------------------
   3. Typography & Headings
   -------------------------------------------------- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--text-white) 30%, var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: var(--text-muted);
}

/* --------------------------------------------------
   4. Buttons & Interactive Elements
   -------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: none;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: var(--accent-gray);
    color: var(--text-white);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* --------------------------------------------------
   5. Header & Navigation (Glassmorphic)
   -------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 15px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 42px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-light);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-blue);
}

/* Dropdown styling */
.dropdown-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 10px 0;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow);
}

.dropdown-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    background-color: var(--bg-hover);
    color: var(--text-white);
    padding-left: 25px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------
   6. Hero Banner Section
   -------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(0, 74, 204, 0.15), transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(0, 130, 240, 0.1), transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--secondary-blue), var(--text-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: var(--text-light);
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.hero-image-container img {
    display: block;
    filter: brightness(0.9);
}

/* Glowing decoration behind hero image */
.hero-glow-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

/* --------------------------------------------------
   7. Features & Services Section
   -------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-service-card-hover);
    border-color: var(--border-service-card-hover);
    box-shadow: var(--shadow-service-card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background: rgba(0, 130, 240, 0.1);
    color: var(--secondary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: var(--secondary-blue);
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: var(--accent-gray);
    color: var(--text-light);
    border: 1px solid var(--border-glass);
}

.service-card:hover .tag {
    border-color: rgba(0, 130, 240, 0.2);
}

/* --------------------------------------------------
   8. Locations / Cities We Serve
   -------------------------------------------------- */
.locations-section {
    background: var(--bg-locations-gradient);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.location-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.location-card:hover {
    transform: scale(1.05);
    background-color: rgba(0, 130, 240, 0.08);
    border-color: var(--secondary-blue);
}

.location-card svg {
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.location-card h3 {
    font-size: 1.25rem;
}

/* --------------------------------------------------
   9. Contact Form & Footer
   -------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-card-info {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-card-info p {
    margin-bottom: 30px;
}

.form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-control {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-glass);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    color: var(--text-input);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 130, 240, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.status-message {
    padding: 12px 18px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: none;
}

.status-message.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--success);
    color: #34d399;
}

.status-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--danger);
    color: #f87171;
}

/* Footer Section */
.main-footer-section {
    background-color: var(--bg-footer);
    border-top: 1px solid var(--border-glass);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
}

.brand-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info-list li svg {
    color: var(--secondary-blue);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.contact-info-list a:hover {
    color: var(--text-white);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-blue);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

/* SEO Links Section */
.seo-links-section {
    border-top: 1px solid var(--border-seo-links);
    background-color: var(--bg-seo-links);
    padding: 40px 0;
}

.seo-title-accordion {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-white);
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.seo-location-group h4 {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-seo-item);
    padding-bottom: 5px;
}

.seo-location-group ul li {
    margin-bottom: 8px;
}

.seo-location-group a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.seo-location-group a:hover {
    color: var(--secondary-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --------------------------------------------------
   10. Dynamic Landing Page (service.php) Layout
   -------------------------------------------------- */
.dynamic-hero {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(0, 74, 204, 0.15), transparent 40%);
}

.dynamic-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumbs a:hover {
    color: var(--text-white);
}

.breadcrumbs span {
    color: var(--secondary-blue);
}

.detail-section-padding {
    padding: 60px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.detail-content-area h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.detail-content-area p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}

.features-list {
    margin: 35px 0;
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Testimonials / Reviews */
.reviews-section-detail {
    margin-top: 60px;
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.reviews-section-detail h3 {
    margin-bottom: 25px;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card {
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 25px;
}

.review-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
    color: var(--text-white);
}

.stars {
    color: #fbbf24;
}

/* Sidebar Info Card */
.sidebar-cta-card {
    background: var(--bg-sidebar-gradient);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    position: sticky;
    top: 100px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.sidebar-cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.sidebar-phone {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-blue);
    display: block;
    margin: 20px 0;
}

/* FAQs Section */
.faq-section {
    margin-top: 60px;
}

.faq-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.faq-item {
    background-color: var(--bg-faq);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 15px;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

/* --------------------------------------------------
   11. Media Queries (Responsive Styling)
   -------------------------------------------------- */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.1rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-wrapper {
        padding: 25px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-cta-card {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .main-header {
        padding: 10px 0;
    }

    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
    }

    /* Hamburger Menu 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);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark);
        border-left: 1px solid var(--border-glass);
        padding: 80px 30px 30px 30px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 15px;
        border: none;
        background: transparent;
    }

    .dropdown-item:hover .dropdown-menu {
        display: block;
    }

    .header-cta {
        display: none; /* Hide top CTA on small screens, users will call from body or mobile menu */
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-theme-toggle-wrapper {
        display: block !important;
    }
}

/* WhatsApp Button Hover Transition */
.btn-whatsapp:hover {
    background-color: #20ba5a !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.25);
}

/* Light-background Blinking Call Button styling */
.btn-call {
    background-color: #e0ecfb !important;
    color: #004acc !important;
    border: 2px solid #004acc !important;
    font-weight: 700 !important;
    box-shadow: 0 0 10px rgba(0, 74, 204, 0.15);
    animation: callPulseBlink 2.2s infinite;
    transition: var(--transition-smooth);
}
.btn-call:hover {
    background-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 74, 204, 0.3);
}

@keyframes callPulseBlink {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 74, 204, 0.4);
        background-color: #e0ecfb;
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 74, 204, 0);
        background-color: #ffffff;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 74, 204, 0);
        background-color: #e0ecfb;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 20px 15px;
    }
}
