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

:root {
    --primary: hsl(142, 72%, 29%);
    --primary-hover: hsl(142, 72%, 20%);
    --accent: hsl(135, 45%, 95%);
    --accent-dark: hsl(142, 70%, 15%);
    --dark: hsl(210, 11%, 10%);
    --dark-grey: hsl(210, 10%, 20%);
    --light: hsl(135, 20%, 98%);
    --grey: hsl(210, 10%, 60%);
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

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

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

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

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* LOADER */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.loader-bar-wrap {
    width: 200px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    animation: loading 1.5s infinite ease-in-out;
}

.loader-text {
    font-size: 0.9rem;
    color: var(--grey);
    font-weight: 500;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* NAVBAR & TICKER */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

#navbar.scrolled .nav-inner {
    padding: 16px 0;
}

#navbar.scrolled .nav-logo {
    color: var(--dark);
}

#navbar.scrolled .nav-links a {
    color: var(--dark-grey);
}

.ticker {
    background-color: var(--dark);
    color: var(--white);
    font-size: 0.8rem;
    padding: 8px 0;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-block;
    animation: ticker 40s linear infinite;
    padding-left: 100%;
}

.ticker-item {
    display: inline-block;
    padding-right: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.ticker-item span {
    color: var(--primary);
    margin-right: 8px;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.nav-inner {
    padding: 24px 0;
    transition: var(--transition);
}

.nav-logo {
    display: flex;
    align-items: center;
    color: var(--white);
    font-family: var(--font-heading);
}

.nav-logo .logo-main {
    color: var(--white) !important;
    transition: var(--transition);
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-logo .logo-sub {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: var(--transition);
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
}

#navbar.scrolled .nav-logo .logo-main {
    color: var(--dark) !important;
}

#navbar.scrolled .nav-logo .logo-sub {
    color: var(--dark-grey) !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

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

.nav-links a:hover {
    color: var(--primary) !important;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

#navbar.scrolled .hamburger span {
    background-color: var(--dark);
}

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

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

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

/* MOBILE NAV */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: var(--white);
    z-index: 1050;
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.mobile-nav a:hover {
    color: var(--primary);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55; /* Higher opacity to make the background image fully visible */
    filter: brightness(0.85); /* Slightly darker brightness to make white text pop natively */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft premium vignette gradient: clears the black background so the image is fully visible */
    background: linear-gradient(to right, rgba(12, 12, 12, 0.65) 30%, rgba(12, 12, 12, 0.25) 100%),
                linear-gradient(to bottom, rgba(12, 12, 12, 0.2) 0%, rgba(12, 12, 12, 0.8) 100%);
}

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

.hero-text {
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-eyebrow span {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.65); /* High-contrast text drop shadow */
}

.hero-title em {
    font-style: normal;
    color: var(--primary);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); /* Description text drop shadow */
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* FLOATING SERVICES CARD */
.hero-services-bar {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
}

.hero-services-title {
    font-size: 1.1rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.hero-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.hero-service-item:hover {
    transform: translateY(-5px);
    background-color: var(--accent);
    border-color: rgba(76, 175, 80, 0.2);
}

.hero-service-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.hero-service-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
}

/* SECTION HEADERS */
.section {
    padding: 100px 0;
}

.section-tag {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header {
    max-width: 650px;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

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

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

.about-images {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-single {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.about-content h2 {
    font-size: 2.8rem;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--grey);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

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

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

.feature-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

/* RESPONSIBILITY BANNER */
.responsibility-banner {
    background-color: var(--accent);
    border-radius: var(--border-radius);
    padding: 60px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.responsibility-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.responsibility-banner h3 {
    font-size: 2rem;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.responsibility-banner p {
    color: var(--dark-grey);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* SERVICES & PRICING BULLET SECTION */
.services-bullets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.bullets-list-wrap {
    display: flex;
    flex-direction: column;
}

.bullets-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.bullet-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark-grey);
}

.bullet-icon {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.before-after-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.before-after-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--light);
}

.before-after-img-wrap {
    position: relative;
    height: 200px;
}

.before-after-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 4px 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}

.before-after-badge.after {
    background-color: var(--primary);
}

/* CHEAPEST CARDS SECTION */
.cheapest-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cheapest-card {
    position: relative;
    height: 380px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.cheapest-card:hover {
    transform: translateY(-8px);
}

.cheapest-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    z-index: 1;
}

.cheapest-card:hover .cheapest-card-bg {
    transform: scale(1.08);
}

.cheapest-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.85));
    z-index: 2;
}

.cheapest-card-content {
    position: relative;
    z-index: 3;
}

.cheapest-card-title {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.cheapest-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.cheapest-card .btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    border-radius: 6px;
    width: 100%;
}

/* REVIEWS CAROUSEL SECTION */
.google-reviews-section {
    background-color: var(--light);
    padding: 100px 0;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.google-reviews-brand-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.google-reviews-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--grey);
    font-weight: 500;
}

.google-reviews-stars-block {
    margin-bottom: 24px;
}

.rating-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
    line-height: 1;
}

.rating-stars {
    color: #FFC107;
    font-size: 1.4rem;
    margin: 8px 0;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--grey);
    font-weight: 500;
}

.btn-write-review {
    display: inline-block;
    background-color: #4285F4;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-write-review:hover {
    background-color: #357ae8;
    transform: translateY(-2px);
}

.google-reviews-right {
    position: relative;
    overflow: hidden;
}

.google-reviews-nav {
    display: flex;
    gap: 10px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}

.google-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.google-nav-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.google-reviews-track-wrap {
    padding-top: 60px;
    width: 100%;
    overflow: hidden;
}

.google-reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-review-card {
    min-width: calc(33.333% - 16px);
    width: calc(33.333% - 16px);
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

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

.google-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.google-review-info h3 {
    font-size: 0.95rem;
    color: var(--dark);
}

.google-review-info span {
    font-size: 0.75rem;
    color: var(--grey);
}

.google-review-stars-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-stars-yellow {
    color: #FFC107;
    font-size: 0.9rem;
}

.google-review-verified {
    font-size: 0.75rem;
    color: #4CAF50;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.google-review-text {
    font-size: 0.88rem;
    color: var(--dark-grey);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.contact-card-content h3 {
    font-size: 0.95rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-card-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.contact-form-wrap {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

/* WHATSAPP BANNER */
.whatsapp-banner {
    background-color: var(--accent);
    border-radius: var(--border-radius);
    padding: 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
}

.whatsapp-banner-content h2 {
    font-size: 2.4rem;
    color: var(--accent-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.whatsapp-banner-content p {
    color: var(--dark-grey);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.whatsapp-banner-img {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.whatsapp-banner-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* FOOTER */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-logo .logo-main {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.footer-logo .logo-sub {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--grey);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 320px;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

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

/* FLOATING PHONE BUTTON */
.floating-phone-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.floating-phone-btn:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.phone-icon-svg {
    width: 18px;
    height: 18px;
}

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

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

/* GALLERY / LIGHTBOX */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 175, 80, 0.85);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-modal.open {
    opacity: 1;
    visibility: visible;
}

.gm-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gm-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.gm-caption {
    color: var(--white);
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.gm-close, .gm-prev, .gm-next {
    position: absolute;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.gm-close:hover, .gm-prev:hover, .gm-next:hover {
    color: var(--white);
}

.gm-close {
    top: -50px;
    right: 0;
}

.gm-prev {
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.gm-next {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .hero-grid-wrapper { grid-template-columns: 1fr !important; gap: 40px !important; }
    .hero-title { font-size: 3.2rem; }
    .hero-services-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .cheapest-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .cheapest-card { height: 350px; }
    .google-reviews-grid { grid-template-columns: 1fr; gap: 40px; }
    .google-review-card { min-width: calc(50% - 12px); width: calc(50% - 12px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-grid-wrapper { grid-template-columns: 1fr !important; gap: 30px !important; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2.2rem; }
    .nav-links, .nav-actions .btn { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.6rem; }
    .hero-services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-bullets-grid { grid-template-columns: 1fr; gap: 40px; }
    .bullets-columns { grid-template-columns: 1fr; }
    .google-review-card { min-width: 100%; width: 100%; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 30px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .whatsapp-banner { grid-template-columns: 1fr; gap: 40px; padding: 30px; }
    .whatsapp-banner-img img { height: 200px; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
    .gm-prev, .gm-next { display: none; }
    .gm-content { max-width: 95%; }
}

/* ==========================================================================
   MEGA DROPDOWN STYLES (18 services, 2-column layout)
   ========================================================================== */
.nav-dropdown-item {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--white);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 680px; /* Expansive 2-column width */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-dropdown-item:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    color: var(--dark-grey) !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    padding: 6px 0 !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    transition: var(--transition) !important;
}

.nav-dropdown-menu a::after {
    display: none !important; /* Hide hover underline for dropdown links */
}

.nav-dropdown-menu a:hover {
    color: var(--primary) !important;
    transform: translateX(6px);
}

.dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
    vertical-align: middle;
    opacity: 0.7;
}

.nav-dropdown-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

