/* ==========================================================================
   GreenLeaf Home Cleaning - Main Stylesheet
   Design Tokens & Modern CSS Architecture
   ========================================================================== */

:root {
    /* Color Palette */
    --primary-dark: #133E32;
    --primary: #1B5E43;
    --primary-light: #2E7D32;
    --accent: #10B981;
    --accent-hover: #059669;
    --accent-soft: #E6F7F0;
    --accent-glow: rgba(16, 185, 129, 0.2);
    
    --bg-main: #FFFFFF;
    --bg-alt: #F4FBF7;
    --bg-card: #FFFFFF;
    --bg-dark: #0F2D24;
    
    --text-main: #1F2937;
    --text-muted: #4B5563;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;
    
    --border: #E5E7EB;
    --border-focus: #10B981;
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max: 1240px;
    --section-space: 100px;
    --section-space-sm: 60px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(19, 62, 50, 0.04);
    --shadow-md: 0 12px 28px rgba(19, 62, 50, 0.08);
    --shadow-lg: 0 20px 45px rgba(19, 62, 50, 0.12);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Layout Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.grid {
    display: grid;
    gap: 2.5rem;
}

.section-padding {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
}

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

.text-center {
    text-align: center;
}

/* Typography & Section Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    line-height: 1.25;
    font-weight: 700;
}

.section-header {
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--accent-soft);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

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

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(27, 94, 67, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 67, 0.35);
}

.btn-secondary {
    background-color: var(--bg-main);
    color: var(--primary-dark);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--accent-soft);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-white);
    box-shadow: 0 4px 14px var(--accent-glow);
}

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

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Header & Sticky Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.header.scrolled {
    padding: 0.85rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

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

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
}

.logo-sub {
    color: var(--accent);
    font-weight: 600;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.975rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.3rem 0;
}

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

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

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

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

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

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

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    padding-top: 170px;
    padding-bottom: 90px;
    background: linear-gradient(180deg, #F0FDF8 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background-color: var(--accent-soft);
    color: var(--primary-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust-bullets {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

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

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 4px solid #FFFFFF;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-stars {
    color: #F59E0B;
    font-size: 1rem;
    letter-spacing: 2px;
}

.floating-card-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.floating-card-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-floating-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-floating-badge svg {
    stroke: var(--accent);
}

/* Trust / Statistics Section */
.stats-section {
    padding: 40px 0;
    background-color: var(--primary-dark);
    color: var(--text-white);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    border-radius: 50%;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

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

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

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--accent);
    color: var(--text-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.exp-years {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 100px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.5rem;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1rem;
    color: var(--text-main);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--accent-soft);
    color: var(--primary);
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.4);
}

.highlight-card {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF8 100%);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon-bg {
    width: 60px;
    height: 60px;
    background-color: var(--accent-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
}

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

.service-highlights {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-highlights li {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.25rem;
}

.service-highlights li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

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

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background-color: var(--bg-card);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.why-icon-box {
    width: 65px;
    height: 65px;
    background-color: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.why-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

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

/* Promotional CTA Banner Section */
.promo-cta-section {
    padding: 40px 0;
}

.promo-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1B5E43 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem 4rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.promo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.promo-title {
    color: var(--text-white);
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.promo-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
}

.promo-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    flex-shrink: 0;
}

.promo-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.promo-phone-link:hover {
    color: var(--accent);
}

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

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

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.star-rating {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 0.5;
    color: var(--accent-soft);
    font-weight: 800;
}

.review-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text-white);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.reviewer-name {
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Contact Section */
.contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-info-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-soft);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text .label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.contact-text .val {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.contact-text a.val:hover {
    color: var(--accent);
}

.whatsapp-cta-card {
    background-color: #F0FDF4;
    border: 1px dashed #25D366;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wa-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wa-content strong {
    display: block;
    font-size: 1rem;
    color: #166534;
}

.wa-content p {
    font-size: 0.85rem;
    color: #15803D;
}

/* Booking Form */
.form-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.form-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.form-group {
    margin-bottom: 1.35rem;
    position: relative;
}

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

.required {
    color: #EF4444;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    font-size: 0.975rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: #FAFAFA;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--border-focus);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-control.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.error-msg {
    display: none;
    font-size: 0.8rem;
    color: #EF4444;
    margin-top: 0.35rem;
    font-weight: 500;
}

.error-msg.visible {
    display: block;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

.footer-container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-heading {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-links ul, .footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a, .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.925rem;
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: var(--text-white);
}

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

.footer-bottom {
    padding: 25px 0;
    background-color: #0B221B;
    font-size: 0.875rem;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
}

.location-badge {
    color: var(--accent);
    font-weight: 500;
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 45, 36, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 1.5rem;
}

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

.modal-card {
    background-color: var(--bg-card);
    padding: 2.75rem 2.25rem;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.modal-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.modal-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.modal-note {
    font-size: 0.9rem !important;
    background-color: var(--bg-alt);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.75rem !important;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1100px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }

    .stat-card:nth-child(3), .stat-card:nth-child(4) {
        border-bottom: none;
    }

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

    .promo-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .promo-actions {
        align-items: center;
    }
}

@media (max-width: 868px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background-color: var(--bg-card);
        box-shadow: var(--shadow-lg);
        padding: 100px 2.5rem 2.5rem 2.5rem;
        transition: var(--transition-smooth);
        z-index: 1050;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }

    .nav-link {
        font-size: 1.15rem;
    }

    .nav-cta {
        display: none;
    }

    .hero-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-floating-card, .hero-floating-badge {
        display: none;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

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

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

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

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

    .form-card, .contact-info-card {
        padding: 1.75rem 1.25rem;
    }
}
