@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette derived directly from Brand Logo */
    --primary: #043685;        /* Deep Logo Navy Blue */
    --primary-light: #0747a6;  /* Slate Royal Navy */
    --primary-hover: #022359;  /* Dark Blue Hover */
    --secondary: #00A3E0;      /* Vibrant Logo Cyan / Sky Blue */
    --secondary-hover: #0082b3;
    --accent: #F36C00;         /* Energetic Logo Sun Orange */
    --accent-light: #fff4eb;   /* Soft Warm Amber Light */
    --accent-hover: #d45e00;   /* Deep Orange Hover */
    --brand-green: #22AC38;    /* Leaf Green Swoosh from Logo */
    --brand-green-hover: #1b8c2d;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #20ba5a;
    --light-bg: #f4f8fc;       /* Light Ice/Sky neutral background */
    --card-bg: #ffffff;
    --border-color: #e1e9f5;
    --text-dark: #042557;      /* Dark Navy Text */
    --text-body: #2c3e55;      /* Dark Slate Body Text */
    --text-muted: #5e7390;     /* Muted Slate Text */
    --white: #ffffff;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(4, 54, 133, 0.05), 0 1px 2px rgba(4, 54, 133, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(4, 54, 133, 0.08), 0 2px 4px -2px rgba(4, 54, 133, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(4, 54, 133, 0.12), 0 4px 6px -4px rgba(4, 54, 133, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(4, 54, 133, 0.15), 0 8px 10px -6px rgba(4, 54, 133, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--white);
    color: var(--text-body);
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 85px; /* Offset for header (top-bar removed) */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Global Sections Grid/Spacing */
section {
    padding: 5rem 0;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--brand-green));
    border-radius: 4px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(4, 54, 133, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 54, 133, 0.4);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(243, 108, 0, 0.35);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 108, 0, 0.45);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border-color: var(--border-color);
    background-color: transparent;
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: rgba(0, 86, 179, 0.05);
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: var(--white);
    background-color: transparent;
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Top Information Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    z-index: 1001;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item svg {
    color: var(--accent);
}

.top-bar-item a:hover {
    color: var(--accent);
}

.top-bar-right {
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-right span::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: 0 0 8px var(--whatsapp-green);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* Header & Floating Circle/Pill Navbar */
.header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    max-width: 1280px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(0, 86, 179, 0.15);
    border-radius: 50px; /* Floating Circle/Pill Rounded Corners */
    padding: 0.55rem 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    top: 10px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 35px rgba(0, 86, 179, 0.2);
    border-color: rgba(0, 168, 204, 0.3);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    flex-direction: column;
    max-width: 320px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.logo-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.08) rotate(4deg);
    border-color: var(--accent);
}

.logo span {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-body);
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Language Switcher Button in Header Navigation */
.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(11, 43, 82, 0.06), rgba(0, 168, 204, 0.12));
    color: var(--primary);
    border: 1.5px solid var(--accent);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lang-switch-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 43, 82, 0.2);
}

.lang-switch-btn svg {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.lang-switch-btn:hover svg {
    transform: rotate(15deg);
}

/* Hide Google Translate top bar frame */
.goog-te-banner-frame,
.goog-te-banner,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Off-screen position for Google Translate widget container so it stays active in DOM */
#google_translate_element,
.goog-te-gadget {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* RTL Layout Enhancements when Arabic is selected */
html[dir="rtl"] body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html[dir="rtl"] .header-nav {
    flex-direction: row;
}

/* Medium Desktop Responsive Adjustments to prevent navbar wrapping/overlapping */
@media (max-width: 1280px) and (min-width: 769px) {
    .nav-menu {
        gap: 0.85rem;
    }
    .nav-link {
        font-size: 0.8rem;
    }
    .header-actions {
        gap: 0.5rem;
    }
    .header-actions .btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(10, 25, 47, 0.45), rgba(10, 25, 47, 0.6)), url('../images/hero_bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 8rem 0;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-content {
    background: rgba(10, 25, 47, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    width: 100%;
    text-align: left !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

.hero-content h1 {
    font-size: 3.15rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-align: left !important;
}

.hero-content h1 span {
    color: var(--accent);
    display: block;
}

.hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.25rem;
    max-width: 620px;
    text-align: left !important;
    margin-left: 0 !important;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(0, 168, 204, 0.15);
    border: 1px solid rgba(0, 168, 204, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.highlight-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.highlight-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    border-radius: var(--border-radius-lg);
    border: 6px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    background-color: var(--primary-light);
}

.hero-image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.01);
    transition: var(--transition);
    border-radius: 0;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    color: var(--primary);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 5px solid var(--accent);
}

.hero-badge-icon {
    font-size: 2rem;
    color: var(--secondary);
}

.hero-badge-text h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.hero-badge-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Service Cards Overview (Post-Hero Cards with Image Banners) */
.services-cards-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 168, 204, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-prominent {
    border: 1.5px solid rgba(0, 168, 204, 0.4);
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.1);
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--primary-light);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--primary);
    font-size: 0.725rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-card-body {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--accent-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-card-list {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-grow: 1;
}

.service-card-list li {
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-color);
}

.service-card-list li svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-card-list li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-card-list li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.service-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Why Choose Us & Statistics Banner */
.why-us-section {
    padding: 5rem 0;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

@media (max-width: 992px) {
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 1.5rem;
    }
    .stat-box:nth-child(3), .stat-box:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 576px) {
    .stats-banner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stat-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 1.2rem;
    }
    .stat-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 168, 204, 0.2);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(0, 86, 179, 0.05);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--accent-light);
    color: var(--secondary);
}

.feature-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.25rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1.25rem auto;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Emergency CTA Section */
.emergency-cta {
    background: linear-gradient(135deg, #07162c 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 80%, rgba(0, 168, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.emergency-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.emergency-cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.emergency-cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.emergency-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.emergency-cta-phone {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
}

/* Service Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.area-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.area-item svg {
    color: var(--secondary);
}

.area-item:hover {
    border-color: var(--accent);
    background-color: var(--accent-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.areas-main-location {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.areas-main-location svg {
    color: var(--secondary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.about-feature-item svg {
    color: var(--accent);
}

.about-visual {
    position: relative;
}

.about-visual-card {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-visual-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--accent);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-lg);
    line-height: 1.1;
}

.about-visual-badge span {
    font-size: 0.75rem;
    font-weight: 400;
}

/* Contact Us & Request Form */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-desc {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--accent-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-detail-text p, .contact-detail-text a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-detail-text a:hover {
    color: var(--secondary);
}

.contact-actions-inline {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

/* Form success notification widget */
.notification-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--primary);
    color: var(--white);
    border-left: 5px solid var(--accent);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transform: translateY(120%);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-widget.show {
    transform: translateY(0);
}

.notification-widget svg {
    color: var(--accent);
}

/* Service Areas Section (All Pages) */
.service-areas-section {
    padding: 5rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

.area-item {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.25s ease;
}

.area-item svg {
    color: #10B981; /* Fresh emerald checkmark */
    flex-shrink: 0;
}

.area-item:hover {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--secondary);
}

.areas-main-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(11, 21, 40, 0.04) 0%, rgba(0, 168, 204, 0.08) 100%);
    border: 1.5px dashed var(--secondary);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    text-align: center;
}

.areas-main-location svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Google Map Section */
.map-section {
    padding: 0;
    height: 420px;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 43, 82, 0.12);
}

.map-overlay-badge:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(11, 43, 82, 0.3);
}

/* Floating Contact Buttons (Ultra-Realistic 3D & Pulse Animations) */
.floating-contact-left {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
}

.float-btn-whatsapp-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-btn-whatsapp-container:hover {
    transform: scale(1.06);
}

.float-btn-whatsapp-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 2px 2px rgba(255, 255, 255, 0.4);
    position: relative;
    flex-shrink: 0;
}

/* Concentric Pulse Waves for WhatsApp */
.float-btn-whatsapp-icon::before,
.float-btn-whatsapp-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    pointer-events: none;
    z-index: -1;
}

.float-btn-whatsapp-icon::after {
    animation-delay: 0.75s;
}

@keyframes waPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Online Active Green Dot Badge */
.float-btn-whatsapp-icon .online-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background-color: #00FF66;
    border: 2.5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.8);
    z-index: 3;
}

.float-btn-whatsapp-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.float-btn-whatsapp-container:hover .float-btn-whatsapp-icon svg {
    transform: rotate(-10deg) scale(1.1);
}

.float-btn-whatsapp-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #128C7E;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(18, 140, 126, 0.1);
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.float-btn-whatsapp-container:hover .float-btn-whatsapp-text {
    background-color: #25D366;
    color: #ffffff;
    border-color: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.floating-contact-right {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.float-btn-call-new {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #0066FF 0%, #0044CC 100%);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 2px 2px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
}

/* Concentric Pulse Waves for Call Button */
.float-btn-call-new::before,
.float-btn-call-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #0066FF;
    animation: callPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    pointer-events: none;
}

.float-btn-call-new::after {
    animation-delay: 0.75s;
}

@keyframes callPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.float-btn-call-new svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
    animation: phoneRingtone 3s infinite ease-in-out;
}

@keyframes phoneRingtone {
    0%, 80%, 100% {
        transform: rotate(0deg) scale(1);
    }
    85% {
        transform: rotate(15deg) scale(1.15);
    }
    90% {
        transform: rotate(-15deg) scale(1.15);
    }
    95% {
        transform: rotate(10deg) scale(1.15);
    }
}

.float-btn-call-new:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #1A75FF 0%, #0052E6 100%);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.55);
}

/* Page Hero Header subpages */
.page-hero {
    background: linear-gradient(rgba(7, 22, 44, 0.35), rgba(7, 22, 44, 0.5)), url('../images/hero_bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 5rem 0;
    position: relative;
}

.page-hero.ac-hero {
    background: linear-gradient(rgba(7, 22, 44, 0.35), rgba(7, 22, 44, 0.5)), url('../images/ac_hero_bg.png') no-repeat center center;
    background-size: cover;
}

.page-hero.wm-hero {
    background: linear-gradient(rgba(7, 22, 44, 0.35), rgba(7, 22, 44, 0.5)), url('../images/wm_hero_bg.png') no-repeat center center;
    background-size: cover;
}

.page-hero.ref-hero {
    background: linear-gradient(rgba(7, 22, 44, 0.35), rgba(7, 22, 44, 0.5)), url('../images/refrigerator_diagnostics.png') no-repeat center center;
    background-size: cover;
}

.page-hero.areas-hero,
.page-hero.about-hero,
.page-hero.contact-hero {
    background: linear-gradient(rgba(7, 22, 44, 0.35), rgba(7, 22, 44, 0.5)), url('../images/hvac_technician_hero.png') no-repeat center center;
    background-size: cover;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.page-hero-content {
    text-align: left !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

@media (max-width: 992px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        text-align: left !important;
    }
    .page-hero-content {
        text-align: left !important;
        align-items: flex-start !important;
    }
    .page-hero-image-wrapper {
        max-width: 480px;
        margin: 2rem 0 0 0;
    }
    .page-hero-content p {
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    .hero-cta-buttons {
        justify-content: flex-start !important;
    }
}

.page-hero-content h1 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    text-align: left !important;
}

.page-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    text-align: left !important;
    margin-left: 0 !important;
}

.page-hero-image-card {
    border-radius: 16px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    background-color: var(--primary-light);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-hero-image-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.page-hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Distinct Hero CTA Buttons with Gap and Borders */
.hero-cta-buttons, .hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem !important; /* Prevents buttons from sticking together */
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.hero-cta-btn, .hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-width: 165px;
    padding: 0.85rem 1.8rem !important;
    border-radius: 50px !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.hero-cta-btn.btn-accent, .hero-buttons .btn-accent {
    background: linear-gradient(135deg, #00a8cc 0%, #0088a8 100%);
    border: 2.5px solid #5ce1e6 !important; /* Bright cyan border */
    color: #ffffff !important;
}

.hero-cta-btn.btn-accent:hover, .hero-buttons .btn-accent:hover {
    background: linear-gradient(135deg, #0088a8 0%, #006680 100%);
    border-color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.5);
}

.hero-cta-btn.btn-whatsapp, .hero-buttons .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 2.5px solid #63f599 !important; /* Bright green border */
    color: #ffffff !important;
}

.hero-cta-btn.btn-whatsapp:hover, .hero-buttons .btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0b685c 100%);
    border-color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Detailed Services Subpages layouts */
.service-details-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.service-details-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-details-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-details-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-details-feature-item {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    display: flex;
    gap: 0.85rem;
}

.service-details-feature-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.service-details-feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.service-details-feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

.service-details-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-cta-card {
    background-color: var(--primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.sidebar-cta-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 168, 204, 0.1);
    top: -50px;
    right: -50px;
}

.sidebar-cta-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.sidebar-cta-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
}

.sidebar-cta-card .btn {
    width: 100%;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 2;
}

.sidebar-cta-card .btn:last-child {
    margin-bottom: 0;
}

.sidebar-cta-phone {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 1rem;
}

/* Footer styling */
.footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 4.5rem 0 2rem 0;
    border-top: 5px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-logo-desc {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo-desc .logo {
    color: var(--white);
}

.footer-logo-desc .logo span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo-desc .logo-icon {
    color: var(--accent);
}

.footer-logo-desc p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    font-size: 0.9rem;
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Responsiveness Layout Media Queries */

@media (max-width: 1024px) {
    body {
        padding-top: 75px; /* Offset for header */
    }
    
    .top-bar-left {
        gap: 1rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-highlights {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-badge {
        left: 0;
        bottom: -15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-details-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-details-sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none; /* Hide contacts from slim top bar on mobile */
    }
    
    .top-bar-content {
        justify-content: center;
    }
    
    .header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 0.5rem 1.25rem;
        border-radius: 35px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        background-color: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 24px;
        flex-direction: column;
        padding: 1.25rem;
        gap: 0.75rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 998;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        font-size: 1.05rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header-actions {
        display: none; /* Hide header buttons, rely on Top Slim Bar / Floating contacts / Hero CTAs */
    }
    
    .hero-content h1 {
        font-size: 2.35rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
        .floating-contact-left {
        bottom: 16px;
        left: 16px;
    }
    .floating-contact-right {
        bottom: 16px;
        right: 16px;
    }
    .float-btn-whatsapp-text {
        display: none !important;
    }
    .float-btn-whatsapp-icon, .float-btn-call-new {
        width: 50px !important;
        height: 50px !important;
    }
    .float-btn-whatsapp-icon svg, .float-btn-call-new svg {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }
    
    .logo {
        font-size: 1rem;
        gap: 0.35rem;
    }
    
    .logo-container strong {
        font-size: 0.95rem;
    }
    
    .logo-container span {
        font-size: 0.65rem;
    }
    
    .hero-content h1 {
        font-size: 1.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .service-details-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Gallery Section & Cards Styles */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.gallery-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 86, 179, 0.2);
}
.gallery-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.04);
}
.gallery-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}
.gallery-card-content h3 {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
}
.gallery-card-content p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
    flex-grow: 1;
}
.gallery-card-location {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Full-Width Continuous Horizontal Reviews Marquee Ticker */
.reviews-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    width: 100%;
}

.reviews-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.reviews-marquee-track {
    display: flex;
    gap: 1.75rem;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    width: 360px;
    flex-shrink: 0;
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    white-space: normal;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1);
    border-color: rgba(0, 86, 179, 0.2);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-stars-new {
    color: #ffc107;
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.google-logo-card {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.review-text-new {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.review-card-bottom {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
}

.review-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.reviewer-role {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
}

/* Write a Google Review Button */
.write-review-container {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-write-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 86, 179, 0.25);
}

/* FAQ Section Styles */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item[open] {
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.35rem 1.75rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 1rem;
    user-select: none;
    list-style: none;
}

summary.faq-question::-webkit-details-marker,
summary.faq-question::marker {
    display: none;
    content: "";
}

.faq-question svg {
    color: var(--secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-question svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 1.75rem 1.35rem 1.75rem;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.65;
    border-top: 1px dashed var(--border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.faq-answer p {
    margin-bottom: 0;
}

