/* ==========================================================================
   MINI'S CORNER LAUNDRY SERVICE - MODERN DESIGN SYSTEM & CORE STYLES
   ========================================================================== */

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

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Brand Colors */
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --primary-light: #e0f2fe;
    --primary-gradient: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.25);
    --secondary: #0f172a;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Neutrals */
    --white: #ffffff;
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #ffffff;
    --bg-alt: #f1f5f9;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-light: #e2e8f0;
    --border-subtle: #f1f5f9;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.08), 0 4px 10px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 40px -8px rgba(2, 132, 199, 0.15), 0 10px 20px -6px rgba(15, 23, 42, 0.05);

    /* Transitions & Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-page);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--text-muted);
}

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

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

ul {
    list-style: none;
}

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

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 2;
}

.container-fluid {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

/* --- Top Notification Bar --- */
.top-bar {
    background: #0b1329;
    color: #e2e8f0;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
}

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

.top-bar-item a {
    color: #f1f5f9;
}

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

.top-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(2, 132, 199, 0.25);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 12px;
}

/* --- Navigation & Header --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 14px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Logo */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo-img {
    height: 74px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.logo:hover .brand-logo-img {
    transform: scale(1.04);
}

.drawer-header .brand-logo-img {
    height: 56px;
    max-width: 200px;
}

.footer-logo {
    background: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    display: inline-flex;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .brand-logo-img {
    height: 60px;
    max-width: 210px;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
    transition: var(--transition-bounce);
}

.logo:hover .logo-icon {
    transform: scale(1.08) rotate(-4deg);
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-text p {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Desktop Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu li a.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 700;
}

/* Header Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.call-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition);
}

.call-pill-icon {
    width: 32px;
    height: 32px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-fast);
}

.call-pill:hover {
    background: #ecfdf5;
    border-color: #a7f3d0;
    transform: translateY(-1px);
}

.call-pill:hover .call-pill-icon {
    background: #10b981;
    color: var(--white);
}

.call-pill-info span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
}

.call-pill-info strong {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 700;
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-alt);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active {
    background: var(--primary-light);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 16px;
    cursor: pointer;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.drawer-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.drawer-menu a i {
    width: 22px;
    color: var(--primary);
}

.drawer-menu a.active, .drawer-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.drawer-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.45);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
    color: var(--white);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 34px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* --- Section Structure & Headers --- */
section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 36px;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

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

/* ==========================================================================
   HERO BANNER SLIDER SYSTEM & TRANSPARENT BACKGROUND IMAGE
   ========================================================================== */
.hero-slider-section {
    padding: 45px 0 65px;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.75) 0%, rgba(248, 250, 252, 0.72) 100%);
    overflow: hidden;
    position: relative;
}

/* Transparent Background Image Overlay - Enhanced Visibility */
.hero-bg-watermark {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero_laundry.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.32;
    filter: saturate(1.15) brightness(0.98);
    pointer-events: none;
    z-index: 1;
}

.hero-slider-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero-slides-track {
    position: relative;
    width: 100%;
    min-height: 530px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s;
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
}

.hero-badge-pill i {
    color: #f59e0b;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-title .gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 17.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--secondary);
}

.hero-feature-item i {
    color: var(--primary);
    font-size: 15px;
}

/* Hero Visual / Card Illustration */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    position: relative;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hero-card-header h3 {
    font-size: 19px;
    font-weight: 700;
}

.hero-card-badge {
    background: #ecfdf5;
    color: #059669;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 700;
}

.hero-banner-img {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}

.hero-services-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.mini-service-box {
    background: var(--bg-alt);
    padding: 10px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.mini-service-box:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.mini-service-box i {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 3px;
    display: block;
}

.mini-service-box strong {
    display: block;
    font-size: 12.5px;
    color: var(--secondary);
}

.mini-service-box span {
    font-size: 11px;
    color: var(--primary-dark);
    font-weight: 700;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-light);
    animation: floatAnim 4s ease-in-out infinite;
}

.floating-badge-1 {
    bottom: -15px;
    left: -20px;
}

.floating-badge-2 {
    top: -15px;
    right: -15px;
    animation-delay: 2s;
}

.fb-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.fb-icon.green { background: #ecfdf5; color: #10b981; }
.fb-icon.gold { background: #fef3c7; color: #d97706; }

.fb-text strong {
    display: block;
    font-size: 12.5px;
    color: var(--secondary);
    line-height: 1.2;
}

.fb-text span {
    font-size: 10.5px;
    color: var(--text-muted);
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Slider Controls: Arrows & Dots */
.hero-slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    padding: 0 10px;
}

.slider-arrow-btn {
    pointer-events: auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.slider-arrow-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.4);
}

.slider-dots-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(15, 23, 42, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    width: 32px;
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.4);
}

/* --- Trust Strip --- */
.trust-strip {
    background: var(--white);
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   SERVICES GRID SECTION & CARD PHOTOGRAPHY
   ========================================================================== */
.services {
    background: var(--bg-page);
}

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

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

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

.service-card-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e2e8f0;
}

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

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

.service-price-tag-overlay {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #38bdf8;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-icon-floating {
    position: absolute;
    bottom: -18px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
    border: 2px solid var(--white);
    z-index: 3;
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon-floating {
    transform: scale(1.1) rotate(-6deg);
}

.service-card-body {
    padding: 30px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-features-mini {
    margin-bottom: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.service-features-mini li {
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features-mini li i {
    color: #10b981;
    font-size: 12px;
}

/* ==========================================================================
   HOME PAGE ABOUT US SECTION STYLING
   ========================================================================== */
.home-about-section {
    padding: 90px 0;
    background: var(--white);
    position: relative;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.home-about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    background: var(--bg-alt);
}

.about-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-img-badge .aib-number {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: #e0f2fe;
}

.about-img-badge .aib-text {
    display: flex;
    flex-direction: column;
}

.about-img-badge .aib-text strong {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.about-img-badge .aib-text span {
    font-size: 11px;
    color: #bae6fd;
}

.about-floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    animation: float 4s ease-in-out infinite;
}

.about-floating-card .afc-icon {
    width: 38px;
    height: 38px;
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.about-floating-card .afc-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.about-floating-card .afc-text span {
    font-size: 11px;
    color: #94a3b8;
}

.about-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.quick-stat-box {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px 10px;
    text-align: center;
    transition: var(--transition-fast);
}

.quick-stat-box:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.quick-stat-box .qs-num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.quick-stat-box .qs-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 600;
}

.home-about-content {
    display: flex;
    flex-direction: column;
}

.home-about-title {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.home-about-lead {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.home-about-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.home-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
    margin-bottom: 30px;
}

.haf-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.haf-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.haf-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3px;
}

.haf-info p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

.home-about-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* --- Interactive Laundry Calculator --- */
.calculator-section {
    background: linear-gradient(135deg, #0b1329 0%, #0f172a 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.calc-info h2 {
    color: var(--white);
    font-size: 34px;
    margin-bottom: 14px;
}

.calc-info p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 24px;
}

.calc-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #e2e8f0;
}

.calc-highlight-item i {
    color: var(--accent);
}

.calculator-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    width: 100%;
    box-sizing: border-box;
}

.calc-input-group {
    margin-bottom: 18px;
    width: 100%;
    box-sizing: border-box;
}

.calc-input-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.calc-counter {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.calc-counter button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calc-counter button:hover {
    background: var(--primary);
}

.calc-counter input {
    flex-grow: 1;
    min-width: 0;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    border: none;
    outline: none;
}

.calc-total-box {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.calc-total-box .total-label {
    font-size: 14px;
    color: #94a3b8;
}

.calc-total-box .total-amount {
    font-size: 30px;
    font-weight: 800;
    color: #38bdf8;
}

/* --- How It Works / Process --- */
.process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.process-card:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.process-step-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(2, 132, 199, 0.12);
}

.process-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   WHY CHOOSE US HOME SECTION
   ========================================================================== */
.why-choose-home {
    background: var(--bg-alt);
    padding: 90px 0;
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.why-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.why-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition-bounce);
}

.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card-icon.blue {
    background: #e0f2fe;
    color: #0284c7;
}

.why-card-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.why-card-icon.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.why-card-icon.amber {
    background: #fef3c7;
    color: #d97706;
}

.why-card-icon.rose {
    background: #ffe4e6;
    color: #e11d48;
}

.why-card-icon.cyan {
    background: #cffafe;
    color: #0891b2;
}

.why-card-num {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(15, 23, 42, 0.08);
}

.why-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.why-card-features {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.why-card-features li {
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.why-card-features li i {
    color: #10b981;
    font-size: 11px;
}

.why-choose-banner {
    background: linear-gradient(135deg, #0284c7 0%, #0f172a 100%);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-xl);
}

.why-banner-content h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 6px;
}

.why-banner-content p {
    color: #e2e8f0;
    font-size: 14.5px;
    margin: 0;
}

.why-banner-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* --- Pricing Section --- */
.pricing-preview {
    background: var(--bg-page);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card-preview:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-preview.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.pricing-card-preview.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.popular-badge-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.35);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.pricing-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-heading);
    line-height: 1;
}

.pricing-amount span {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features-list li {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features-list li i {
    color: #10b981;
}

/* --- Testimonials --- */
.testimonials {
    background: var(--white);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card-item {
    background: var(--bg-page);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card-item:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.user-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section-home {
    background: var(--bg-alt);
    position: relative;
}

.faq-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 820px;
    margin: 0 auto;
}

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

.faq-item-card:hover {
    border-color: var(--primary-light);
}

.faq-question-btn {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    border: none;
    transition: var(--transition-fast);
}

.faq-question-btn:hover {
    color: var(--primary);
}

.faq-question-btn i {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 14px;
}

.faq-item-card.active .faq-question-btn i {
    transform: rotate(180deg);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: #f8fafc;
    padding: 0 24px;
}

.faq-item-card.active .faq-answer-panel {
    padding: 0 24px 22px 24px;
    border-top: 1px solid var(--border-light);
}

.faq-answer-panel p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    padding-top: 14px;
}

/* --- Contact & Booking Section --- */
.contact-section-home {
    background: var(--bg-page);
}

.contact-home-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: stretch;
}

.contact-cards-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-quick-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-quick-card:hover {
    border-color: var(--primary-light);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.cqc-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cqc-icon.phone { background: #ecfdf5; color: #10b981; }
.cqc-icon.whatsapp { background: #dcfce7; color: #16a34a; }
.cqc-icon.location { background: #e0f2fe; color: #0284c7; }
.cqc-icon.clock { background: #fef3c7; color: #d97706; }

.cqc-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.cqc-info p, .cqc-info a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cqc-info a {
    color: var(--primary-dark);
    font-weight: 600;
}

.cqc-info a:hover {
    text-decoration: underline;
}

.booking-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.booking-form-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.booking-form-card p {
    font-size: 14px;
    margin-bottom: 24px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 14.5px;
    transition: var(--transition-fast);
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

/* --- Map Embed --- */
.map-container-wrap {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.map-container-wrap iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

/* --- Footer --- */
footer {
    background: #0b1329;
    color: #94a3b8;
    padding-top: 80px;
    margin-top: auto;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about-col .logo {
    margin-bottom: 18px;
}

.footer-about-col .logo-text h1 {
    color: var(--white);
}

.footer-about-col p {
    color: #94a3b8;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
}

.footer-social-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    font-size: 14.5px;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 15px;
}

.footer-contact-item a {
    color: #e2e8f0;
}

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

.footer-bottom-bar {
    padding: 24px 0;
    font-size: 13.5px;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-bar a {
    color: #94a3b8;
}

.footer-bottom-bar a:hover {
    color: var(--white);
}

/* --- Floating Utilities --- */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--secondary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 990;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-bounce);
    z-index: 995;
    text-decoration: none;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.7;
    animation: pulseWave 2s infinite;
    z-index: -1;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

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

/* Floating Call Button */
.call-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 58px;
    height: 58px;
    background: #0284c7;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
    transition: var(--transition-bounce);
    z-index: 995;
    text-decoration: none;
}

.call-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #0284c7;
    opacity: 0.7;
    animation: pulseCallWave 2s infinite;
    z-index: -1;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.65);
    color: var(--white);
}

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

/* Mobile Quick Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-light);
    padding: 10px 16px;
    z-index: 980;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

.mobile-bottom-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 8px;
}

.mobile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 6px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.mobile-action-btn i {
    font-size: 16px;
}

.mobile-action-btn.call {
    background: #ecfdf5;
    color: #059669;
}

.mobile-action-btn.whatsapp {
    background: #dcfce7;
    color: #16a34a;
}

.mobile-action-btn.book {
    background: var(--primary-gradient);
    color: var(--white);
    flex-direction: row;
    font-size: 12px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (FULL COMPREHENSIVE RESPONSIVENESS)
   ========================================================================== */

/* Intermediate Laptops & Tablets (Max 1199px) */
@media (max-width: 1199px) {
    .nav-actions .call-pill {
        display: none !important;
    }

    .nav-menu {
        gap: 4px;
    }

    .nav-menu li a {
        padding: 6px 10px;
        font-size: 14px;
    }

    .brand-logo-img {
        height: 62px;
        max-width: 220px;
    }

    .services-grid, .pricing-cards-grid, .testimonials-grid, .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid, .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets & Mobile Navigation Breakpoint (Max 992px) */
@media (max-width: 992px) {
    .nav-menu, 
    .nav-actions .call-pill,
    .nav-actions .btn {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .brand-logo-img {
        height: 54px;
        max-width: 190px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-slider-section {
        padding: 35px 0 45px;
    }

    .hero-slides-track {
        min-height: auto;
    }

    .hero-slider-controls {
        display: none;
    }

    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .why-choose-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .calculator-section {
        padding: 40px 24px;
        margin: 30px 0;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .calculator-card {
        padding: 24px 20px;
    }

    .contact-home-grid {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-bar {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .call-float {
        bottom: 80px;
        left: 18px;
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .scroll-top {
        bottom: 145px;
        right: 18px;
    }
}

/* Mobile Devices (Max 640px) */
@media (max-width: 640px) {
    .top-bar {
        display: none;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    section {
        padding: 50px 0;
    }

    .brand-logo-img {
        height: 48px;
        max-width: 165px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 14.5px;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .floating-badge {
        display: none;
    }

    .about-main-img {
        height: 240px;
    }

    .about-img-badge {
        top: 12px;
        left: 12px;
        padding: 8px 12px;
    }

    .about-img-badge .aib-number {
        font-size: 22px;
    }

    .about-quick-stats {
        gap: 8px;
    }

    .quick-stat-box {
        padding: 10px 6px;
    }

    .quick-stat-box .qs-num {
        font-size: 17px;
    }

    .section-header h2, .home-about-title {
        font-size: 24px;
    }

    .home-about-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-about-actions {
        flex-direction: column;
        width: 100%;
    }

    .home-about-actions .btn {
        width: 100%;
    }

    .about-floating-card {
        display: none;
    }

    .services-grid, 
    .pricing-cards-grid, 
    .testimonials-grid, 
    .process-grid, 
    .trust-grid, 
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .why-banner-actions .btn {
        width: 100%;
    }

    .calculator-section {
        padding: 28px 14px;
        margin: 20px 0;
        border-radius: var(--radius-md);
    }

    .calculator-card {
        padding: 20px 14px;
        border-radius: var(--radius-md);
    }

    .calc-counter button {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .calc-total-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pricing-card-preview.featured {
        transform: none;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Extra Small Mobile Screens (Max 380px) */
@media (max-width: 380px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .brand-logo-img {
        height: 42px;
        max-width: 140px;
    }

    .hero-title {
        font-size: 24px;
    }

    .about-quick-stats {
        grid-template-columns: 1fr;
    }

    .calculator-section {
        padding: 20px 10px;
    }

    .calculator-card {
        padding: 16px 10px;
    }

    .calc-counter button {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}
