/* GLANZ Temizlik Hizmetleri - Modern & Advanced Design System (2026) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #002060;
    --primary-light: #0d348a;
    --primary-dark: #00133a;
    --accent-color: #00a8cc; /* Clean fresh cyan for cleaning and hygiene */
    --accent-gold: #d4af37; /* Premium touch */
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.75);
    --border-glass: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(0, 32, 96, 0.05), 0 2px 4px -1px rgba(0, 32, 96, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 32, 96, 0.08), 0 4px 6px -2px rgba(0, 32, 96, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 32, 96, 0.1), 0 10px 10px -5px rgba(0, 32, 96, 0.04);
    --shadow-premium: 0 30px 60px -15px rgba(0, 32, 96, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-family: 'Outfit', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* Base Layout Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.main-header.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(0,32,96,0.10);
    padding: 0.7rem 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.logo img {
    height: 76px; /* Larger, premium desktop brand presence */
    width: auto;
    display: block;
    transition: height 0.3s ease;
}
.main-header.scrolled .logo img { height: 58px; }

/* ── Desktop nav wrapper ── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
    margin: 0; padding: 0;
}

/* Nav links */
.nav-link {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.4rem 0;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--accent-color);
    transition: width 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--accent-color); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* CTA button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff !important;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,32,96,0.25);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,168,204,0.35);
}

/* ── Dropdown (Desktop hover) ── */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,32,96,0.14);
    border: 1px solid rgba(0,32,96,0.07);
    min-width: 270px;
    list-style: none;
    padding: 0.6rem 0;
    z-index: 2000;
    /* HIDDEN by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
}
/* Show on hover (desktop) */
.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Show on .open (mobile JS) */
.dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu li a {
    display: block;
    padding: 0.55rem 1.3rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
    padding-left: 1.7rem;
}
.dropdown-menu .dropdown-all {
    display: block;
    padding: 0.55rem 1.3rem 0.7rem;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0,32,96,0.06);
    margin-bottom: 0.3rem;
}
.dropdown-menu .dropdown-all:hover { color: var(--primary-color); }

/* Dropdown chevron animation */
.dropdown-toggle .fa-chevron-down {
    margin-left: 4px;
    transition: transform 0.25s ease;
    font-size: 0.65rem;
    vertical-align: middle;
}
.dropdown.open .dropdown-toggle .fa-chevron-down { transform: rotate(180deg); }

/* ── Mobile toggle button ── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    z-index: 2500;
}
.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



/* Hero Section */
.hero-section {
    position: relative;
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.03) 0%, rgba(0, 168, 204, 0.05) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(0, 168, 204, 0.1);
    color: var(--primary-light);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 168, 204, 0.2);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.hero-img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
}

.hero-experience-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    border: 1px solid rgba(0, 32, 96, 0.05);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections Common Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: 2.6rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.2;
}

/* Services Grid & Cards */
.services-section {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 32, 96, 0.02);
    display: flex;
    flex-direction: column;
}

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

.service-card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-card-icon-floating {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--bg-light);
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon-floating {
    background: var(--accent-color);
    transform: rotate(360deg);
}

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

.service-card-title {
    font-size: 1.35rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.service-card-btn i {
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-btn {
    color: var(--accent-color);
}

.service-card:hover .service-card-btn i {
    transform: translateX(5px);
}

/* Why Choose Us & Working Process */
.why-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.why-item {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 32, 96, 0.02);
    transition: var(--transition-smooth);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-item-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.why-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.why-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Process Section */
.process-section {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

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

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(0, 32, 96, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.process-step:hover .process-number {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1);
}

.process-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.process-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Equipment Section */
.equipment-section {
    padding: 7rem 0;
    background: linear-gradient(185deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.equipment-section .section-title {
    color: var(--bg-white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.equipment-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.equipment-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.equipment-card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.equipment-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.equipment-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Interior Pages Header */
.interior-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.interior-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: var(--accent-color);
}

/* Service Detail Layout */
.service-detail-section {
    padding: 7rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
}

.service-detail-main img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.service-detail-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.service-detail-text {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
}

.service-features-list {
    margin-bottom: 3rem;
}

.service-features-list h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.feature-check-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Sidebar Services Navigation */
.service-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 32, 96, 0.02);
    margin-bottom: 2.5rem;
}

.sidebar-widget-title {
    font-size: 1.35rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 0.8rem;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 0.8rem;
}

.sidebar-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
}

.sidebar-menu li a:hover,
.sidebar-menu li.active a {
    background: var(--primary-color);
    color: var(--bg-white);
}

.sidebar-contact-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.sidebar-contact-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar-contact-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Contact Page Form & details */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    padding: 7rem 0;
}

.contact-info-card {
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-color);
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-info-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 32, 96, 0.02);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1.5px solid rgba(0, 32, 96, 0.1);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 168, 204, 0.15);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Footer style */
.main-footer {
    background: #000c24;
    color: rgba(255, 255, 255, 0.7);
    padding: 6rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.footer-socials a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--bg-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.footer-contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-contact-info i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

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

/* Call to Action Sticky Bar & Action Buttons for Mobile */
.action-fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.fab-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.fab-whatsapp {
    background-color: #25d366;
}

.fab-phone {
    background-color: var(--primary-color);
}

/* Dynamic Mobile Quick Action Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 -5px 20px rgba(0, 32, 96, 0.1);
    z-index: 999;
    grid-template-columns: 1fr 1fr;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--bg-white);
}

.mobile-action-btn.call {
    background-color: var(--primary-color);
}

.mobile-action-btn.whatsapp {
    background-color: #25d366;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-desc {
        margin: 0 auto 2.5rem;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .service-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    /* Container spacing */
    .container {
        padding: 0 1.2rem;
    }

    /* Header adjustments for mobile */
    .main-header {
        padding: 0.8rem 0;
        background: rgba(255, 255, 255, 0.95) !important; /* Force clean solid background on mobile so content never overlaps behind transparent logo */
        box-shadow: 0 2px 15px rgba(0, 32, 96, 0.08);
        border-bottom: 1px solid rgba(0, 32, 96, 0.05);
    }
    .logo img {
        height: 52px; /* Balanced larger brand presence on mobile screens */
    }
    .main-header.scrolled .logo img {
        height: 44px;
    }

    /* Show hamburger, hide desktop CTA */
    .mobile-toggle { 
        display: flex; 
    }
    .nav-cta { 
        display: none; 
    }

    /* Nav drawer slides in from right */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(290px, 80vw);
        height: 100vh;
        background: #fff;
        box-shadow: -8px 0 40px rgba(0,32,96,0.18);
        z-index: 1500;
        overflow-y: auto;
        transition: right 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0.3s;
        padding: 4.5rem 0 2rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        visibility: hidden; /* Prevent screen reader and click issues when closed */
    }
    .nav-menu.open { 
        right: 0; 
        visibility: visible;
    }



    /* Nav list stacked */
    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
        padding: 0 0.5rem;
    }
    .nav-list > li {
        border-bottom: 1px solid rgba(0,32,96,0.06);
    }
    .nav-link {
        display: block;
        padding: 0.85rem 0.8rem;
        font-size: 0.95rem;
        font-weight: 600;
    }
    .nav-link::after { 
        display: none; 
    }

    /* Mobile dropdown — accordion */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: hidden;
        pointer-events: none;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        background: rgba(0, 168, 204, 0.03) !important;
        min-width: 100% !important;
        padding: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0s 0.3s !important;
    }
    .dropdown.open > .dropdown-menu {
        visibility: visible !important;
        pointer-events: auto !important;
        max-height: 600px !important;
        transition: max-height 0.3s ease !important;
    }
    .dropdown-menu li a {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.88rem !important;
    }
    .dropdown-menu li a:hover {
        padding-left: 1.5rem !important;
    }
    .dropdown-menu .dropdown-all {
        padding: 0.6rem 1.2rem 0.7rem !important;
    }

    /* Mobile nav CTA button */
    .nav-cta {
        display: flex;
        margin: 1.5rem 1rem 0;
        padding: 0.8rem 1.2rem;
        border-radius: 10px;
        justify-content: center;
        font-size: 0.95rem;
    }

    /* Hero section responsive tweaks */
    .hero-section {
        padding: 7rem 0 4rem; /* Safe padding that accounts for the fixed mobile header */
    }
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    .hero-title {
        font-size: 2.1rem !important; /* Prevent text clipping on narrow viewports */
        line-height: 1.25;
    }
    .hero-desc {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.8rem;
    }
    .hero-btns {
        flex-direction: column; /* Stack buttons on mobile to avoid overflow */
        gap: 1rem;
        width: 100%;
    }
    .hero-btns .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    .hero-image-wrapper {
        margin-top: 2rem;
    }
    .hero-experience-card {
        position: relative !important;
        left: 0 !important;
        bottom: 0 !important;
        margin: 1.5rem auto 0 !important;
        width: fit-content;
        box-shadow: var(--shadow-md);
        padding: 1rem 1.2rem;
    }

    /* Grid layouts */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .action-fab-container {
        display: none;
    }
    .mobile-action-bar {
        display: grid;
    }
    body {
        padding-bottom: 60px;
    }
}

/* Global Responsive & Android-specific Fixes */
img, iframe, video {
    max-width: 100%;
}

.process-stepHighlight {
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem !important;
    }
    .section-title {
        font-size: 1.7rem !important;
    }
    .why-list {
        grid-template-columns: 1fr;
    }
}

