/* Drainmitro CSS - Urban Company Inspired Premium Service Website */

:root {
    --primary-green: #00C853;
    --primary-green-hover: #00e676;
    --primary-dark: #009624;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-dark: #0F172A;
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-secondary: #64748B;
    --border-color: #E2E8F0;
    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --border-radius-sm: 10px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 35px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-green: 0 10px 25px -5px rgba(0, 200, 83, 0.3);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 90px 0;
    position: relative;
}

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

.bg-dark {
    background-color: var(--bg-dark);
    color: #FFFFFF;
}

/* Typography & Visual Details */
.highlight-text {
    background: linear-gradient(135deg, var(--primary-green) 0%, #009624 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons (Manrope SemiBold / Bold) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-whatsapp {
    background-color: var(--primary-green);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.2);
}

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

.btn-secondary {
    background-color: #FFFFFF;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.btn-call {
    background-color: var(--text-main);
    color: #FFFFFF !important;
}

.btn-call:hover {
    background-color: #1E293B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Sticky Header */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 15px;
}

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

.logo-img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 200, 83, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #00C853, #008037);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-list li a {
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-heading);
    color: var(--text-muted);
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--primary-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    font-size: 22px;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 150px 0 90px;
    background: radial-gradient(circle at 85% 15%, rgba(0, 200, 83, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 15% 85%, rgba(15, 23, 42, 0.03) 0%, transparent 60%);
    overflow: hidden;
}

.hero-container {
    text-align: center;
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 200, 83, 0.1);
    color: #008037;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 200, 83, 0.2);
    letter-spacing: 0.3px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
    line-height: 1.15;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
    max-width: 700px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--primary-green);
    font-size: 14px;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

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

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

.title-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), #009624);
    margin: 20px auto 0;
    border-radius: 4px;
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-green);
    opacity: 0;
    transition: var(--transition-smooth);
}

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

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

.card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: rgba(0, 200, 83, 0.08);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .card-icon-wrap {
    background-color: var(--primary-green);
    color: #FFFFFF;
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--primary-green);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: auto;
}

.btn-learn-more i {
    transition: var(--transition-smooth);
    font-size: 12px;
}

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

/* Service Learn More Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    max-width: 560px;
    width: 100%;
    padding: 36px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: none;
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background-color: #E2E8F0;
    color: var(--text-main);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: rgba(0, 200, 83, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
}

.modal-body {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    background-color: var(--bg-secondary);
    padding: 18px;
    border-radius: var(--border-radius-sm);
}

.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
}

.modal-feature-item i {
    color: var(--primary-green);
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-actions .btn {
    flex: 1;
}

/* Why Choose Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(0, 200, 83, 0.2);
}

.why-badge-check {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(0, 200, 83, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.why-card-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.why-card-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* How It Works Section */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

.step-number-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), #009624);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 15px rgba(0, 200, 83, 0.25);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-green);
    margin: 15px 0;
}

/* Live Counter Section */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-card {
    padding: 24px 16px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.counter-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.counter-value-wrap {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-suffix {
    color: var(--primary-green);
    margin-left: 2px;
}

.counter-card p {
    font-size: 14px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-lead {
    font-size: 17px;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.about-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.about-feature-item i {
    color: var(--primary-green);
    font-size: 16px;
}

.about-visual-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    color: #FFFFFF;
    position: relative;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.3);
}

.about-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 200, 83, 0.15);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-visual-card h3 {
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 16px;
}

.about-visual-card p {
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-stats-mini {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-mini-item h4 {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 800;
}

.stat-mini-item span {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
}

/* Customer Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 200, 83, 0.2);
}

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

.review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 200, 83, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    font-family: var(--font-heading);
}

.reviewer-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    color: var(--primary-green);
    font-size: 12px;
}

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

/* Before & After Section */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.before-after-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.before-after-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.before-after-img-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    background-color: #E2E8F0;
    overflow: hidden;
}

.before-after-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.before-after-card:hover img {
    transform: scale(1.03);
}

.ba-badge {
    position: absolute;
    top: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.ba-badge-before {
    left: 14px;
    background-color: rgba(15, 23, 42, 0.85);
    color: #FFFFFF;
}

.ba-badge-after {
    right: 14px;
    background-color: var(--primary-green);
    color: #FFFFFF;
}

.before-after-details {
    padding: 24px;
}

.before-after-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.before-after-details p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.ba-meta-tags {
    display: flex;
    gap: 10px;
}

.ba-tag {
    font-size: 12px;
    background-color: var(--bg-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Areas We Serve Section */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.area-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.area-card i {
    color: var(--primary-green);
    font-size: 16px;
}

.area-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    flex-grow: 1;
}

.area-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-green);
    box-shadow: 0 0 8px var(--primary-green);
}

.area-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.areas-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.carousel-dots,
.mobile-areas-card {
    display: none;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 28px;
}

.faq-content p {
    padding-bottom: 22px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item-active {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-soft);
}

.faq-item-active .faq-toggle {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.faq-item-active .faq-content {
    max-height: 300px;
    transition: max-height 0.4s ease-in-out;
}

/* Contact Section */
.contact-clean-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card-box {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.contact-card-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(0, 200, 83, 0.3);
}

.contact-card-box .contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background-color: rgba(0, 200, 83, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card-box .contact-details h4 {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-card-box .contact-details a,
.contact-card-box .contact-details p {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
}

.contact-card-box .contact-details a:hover {
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .contact-clean-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: #0F172A;
    color: #94A3B8;
    padding: 80px 0 0;
    border-top: 1px solid #1E293B;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-text {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-green) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background-color: var(--primary-green);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: #F8FAFC;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

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

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

.footer-contact p a:hover {
    color: #FFFFFF;
}

.footer-contact i {
    color: var(--primary-green);
    font-size: 15px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #1E293B;
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: #FFFFFF;
}

/* Floating Action Bar for Mobile & Quick Trigger */
.floating-actions {
    position: fixed;
    bottom: 20px;
    left: 4%;
    right: 4%;
    width: 92%;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

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

    .section-header h2 {
        font-size: 28px;
    }

    /* Horizontal Touch Swipe Carousels for Mobile */
    .services-grid,
    .reviews-grid,
    .before-after-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding-bottom: 10px;
        grid-template-columns: none;
    }

    .services-grid::-webkit-scrollbar,
    .reviews-grid::-webkit-scrollbar,
    .before-after-grid::-webkit-scrollbar {
        display: none;
    }

    .services-grid .service-card,
    .reviews-grid .review-card,
    .before-after-grid .before-after-card {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: start;
        box-sizing: border-box;
    }

    /* Carousel Pagination Dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #CBD5E1;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .carousel-dot.active {
        background-color: var(--primary-green);
        width: 24px;
        border-radius: 12px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .steps-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .counter-value-wrap {
        font-size: 36px;
    }

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

    /* Mobile Areas Card Simplification */
    .areas-grid,
    .areas-note {
        display: none !important;
    }

    .mobile-areas-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #FFFFFF;
        border-radius: var(--border-radius);
        padding: 32px 24px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-sm);
        margin: 0 auto;
        max-width: 480px;
    }

    .mobile-areas-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background-color: #E8F5E9;
        color: var(--primary-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 16px;
        box-shadow: 0 4px 12px rgba(0, 200, 83, 0.2);
    }

    .mobile-areas-card h3 {
        font-family: var(--font-heading);
        font-size: 22px;
        font-weight: 800;
        color: var(--text-main);
        margin: 0 0 8px;
    }

    .mobile-areas-card p {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.5;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
    }

    .floating-actions {
        display: grid;
    }

    body {
        padding-bottom: 70px;
    }

    /* Mobile Drawer Nav */
    .mobile-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        padding: 24px;
        display: none;
        box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .nav-active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .nav-list li a {
        display: block;
        padding: 6px 0;
        font-size: 15px;
    }

    .header-actions {
        display: none; /* Show CTA in nav list on mobile */
    }
}

/* ==========================================================================
   Booking Page & Form Styles
   ========================================================================== */

.booking-section {
    padding-top: 140px;
    padding-bottom: 90px;
    background-color: var(--bg-secondary);
    min-height: 90vh;
}

.booking-card {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    max-width: 860px;
    margin: 0 auto;
    transition: var(--transition-smooth);
}

.booking-header {
    text-align: center;
    margin-bottom: 36px;
}

.booking-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-main);
}

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

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

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

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

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-group label .required-star {
    color: #EF4444;
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 15px;
    background-color: var(--bg-secondary);
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-green);
    background-color: #FFFFFF;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.15);
}

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

/* Error States */
.form-group.has-error .form-control {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.form-group.has-error .form-control:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.error-message {
    color: #EF4444;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
    display: none;
    align-items: center;
    gap: 6px;
}

.form-group.has-error .error-message {
    display: flex;
}

/* Location Helper Button */
.label-action-btn {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
    padding: 0;
}

.label-action-btn:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Custom Photo Upload Area */
.photo-upload-wrapper {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    text-align: center;
    background-color: var(--bg-secondary);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.photo-upload-wrapper:hover, .photo-upload-wrapper.dragover {
    border-color: var(--primary-green);
    background-color: rgba(0, 200, 83, 0.03);
}

.photo-upload-icon {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.photo-upload-text {
    font-size: 14px;
    color: var(--text-muted);
}

.photo-upload-text span {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

.photo-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.photo-preview-container {
    margin-top: 14px;
    display: none;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.photo-preview-thumb {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.photo-preview-info {
    flex: 1;
    text-align: left;
}

.photo-preview-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.photo-preview-size {
    font-size: 12px;
    color: var(--text-secondary);
}

.btn-remove-photo {
    background: #FEE2E2;
    color: #EF4444;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-remove-photo:hover {
    background: #EF4444;
    color: #FFFFFF;
}

/* Terms Checkbox */
.visit-charge-info-box {
    background-color: #F0FDF4;
    border-left: 4px solid var(--primary-green);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
    border-top: 1px solid rgba(0, 200, 83, 0.15);
    border-right: 1px solid rgba(0, 200, 83, 0.15);
    border-bottom: 1px solid rgba(0, 200, 83, 0.15);
}

.visit-charge-info-box .charge-text {
    font-weight: 500;
    line-height: 1.4;
}

.visit-charge-info-box .charge-highlight {
    font-weight: 700;
    color: var(--primary-dark);
}

.terms-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.terms-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-green);
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.terms-wrapper label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
    margin-bottom: 0;
    white-space: nowrap;
}

.terms-wrapper label a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .terms-wrapper label {
        white-space: normal;
    }
}

/* Submit Button Loading State */
.btn-submit-booking {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 50px;
    margin-top: 10px;
}

.btn-submit-booking.is-loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-submit-booking .spinner-icon {
    display: none;
    animation: fa-spin 1s infinite linear;
}

.btn-submit-booking.is-loading .spinner-icon {
    display: inline-block;
}

/* Confirmation Page Styles */
.confirmation-wrapper {
    display: none;
    text-align: center;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.confirmation-badge-wrap {
    margin-bottom: 20px;
}

.confirmation-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #E8F5E9;
    color: var(--primary-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.2);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.confirmation-wrapper h2 {
    font-size: 28px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.confirmation-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.job-id-box {
    background: linear-gradient(135deg, #F0FDF4 0%, #E8F5E9 100%);
    border: 2px dashed var(--primary-green);
    border-radius: var(--border-radius);
    padding: 18px 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.job-id-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: var(--text-secondary);
    display: block;
    text-align: left;
}

.job-id-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.btn-copy-id {
    background: #FFFFFF;
    border: 1px solid var(--primary-green);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-copy-id:hover {
    background: var(--primary-green);
    color: #FFFFFF;
}

.summary-details-card {
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 24px;
    text-align: left;
    margin-bottom: 30px;
}

.summary-details-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.summary-item label {
    font-size: 13px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 2px;
}

.summary-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.confirmation-notice-box {
    background-color: #EFF6FF;
    border-left: 4px solid #3B82F6;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 32px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.confirmation-notice-box i {
    font-size: 20px;
    color: #3B82F6;
}

.confirmation-notice-box p {
    font-size: 15px;
    font-weight: 600;
    color: #1E40AF;
    margin: 0;
}

.confirmation-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Service Card Button Addition */
.service-card-actions {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-actions .btn-book-service {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 50px;
}

/* Responsive Booking Form */
@media (max-width: 768px) {
    .booking-card {
        padding: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .job-id-box {
        flex-direction: column;
        gap: 8px;
    }
    
    .confirmation-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .confirmation-actions .btn {
        width: 100%;
    }
}

/* Views Switching System for Worker & Customer Panels */
.worker-view,
.customer-view {
    display: none;
}

.worker-view.active,
.customer-view.active {
    display: block;
}

/* ==========================================================================
   CENTERED MODAL DIALOG & OVERLAY SYSTEM
   ========================================================================== */
.admin-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999 !important;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.admin-modal-overlay.active {
    display: flex !important;
}

.admin-modal-card {
    background-color: #FFFFFF !important;
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 500px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35) !important;
    display: flex !important;
    flex-direction: column !important;
    animation: modalPopIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    position: relative !important;
    z-index: 100000 !important;
    margin: auto !important;
}

@keyframes modalPopIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.admin-modal-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid #E2E8F0 !important;
    background: #FFFFFF !important;
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}

.admin-modal-header h3 {
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
}

.admin-modal-close {
    background: #F1F5F9 !important;
    border: none !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #64748B !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.admin-modal-close:hover {
    background: #E2E8F0 !important;
    color: #0F172A !important;
}

.admin-modal-body {
    padding: 20px !important;
    flex: 1 !important;
    overflow-y: auto !important;
}

.admin-modal-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    padding: 14px 20px !important;
    border-top: 1px solid #E2E8F0 !important;
    background: #F8FAFC !important;
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
}