/*
 * Fine Landscaping - Modern Starter Stylesheet
 * Non-AMP Version with full CSS capabilities
 * Version: 1.0
 */

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
    --primary-green: #2d5a27;
    --primary-green-light: #4a8c3f;
    --primary-green-dark: #1e3d1a;
    --accent-orange: #ff6b35;
    --accent-orange-dark: #e55a2b;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* =====================================================
   BASE STYLES
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

ul, ol {
    list-style: none;
}

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

p {
    margin-bottom: 15px;
    color: var(--text-medium);
}

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
    background: var(--primary-green-dark);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

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

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

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

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

.social-links a {
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

/* =====================================================
   MAIN HEADER
   ===================================================== */
.main-header {
    background: var(--bg-white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

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

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

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
}

.main-header.scrolled .logo img {
    width: 50px;
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav > ul > li > a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after {
    width: 100%;
}

.main-nav > ul > li > a:hover {
    color: var(--primary-green);
}

.main-nav > ul > li > a i {
    font-size: 10px;
    transition: var(--transition);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
}

.dropdown li a:hover {
    background: var(--bg-light);
    color: var(--primary-green);
    padding-left: 25px;
}

/* Header CTA Button */
.header-cta .btn-cta {
    background: var(--primary-green);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cta .btn-cta:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition);
}

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav ul {
    padding: 20px;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav > ul > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown.active > a i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 10px 0;
    color: var(--text-medium);
    font-size: 14px;
}

.mobile-menu-contact {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.mobile-menu-contact .btn-cta {
    display: block;
    text-align: center;
    background: var(--primary-green);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
}

/* =====================================================
   FOOTER
   ===================================================== */
.main-footer {
    background: var(--primary-green-dark);
    color: #fff;
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

/* Footer About */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-green-light);
}

.footer-about p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

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

/* Footer Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--accent-orange);
}

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

/* Footer Contact */
.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info li i {
    color: var(--accent-orange);
    font-size: 18px;
    margin-top: 3px;
}

.contact-info li span,
.contact-info li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info li a:hover {
    color: var(--accent-orange);
}

.trust-badges {
    margin-top: 20px;
}

.payment-badge {
    max-width: 180px;
    border-radius: 8px;
}

/* Footer Reviews Bar */
.footer-reviews-bar {
    background: var(--primary-green);
    padding: 20px 0;
}

.reviews-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.reviews-text {
    font-weight: 600;
}

.reviews-stars {
    color: #ffc107;
    display: flex;
    gap: 3px;
}

.reviews-score {
    font-weight: 700;
    font-size: 1.1rem;
}

.reviews-count {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.reviews-link {
    background: rgba(255,255,255,0.15);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-link:hover {
    background: rgba(255,255,255,0.25);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin: 0;
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

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

/* =====================================================
   WHATSAPP BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
}

/* =====================================================
   SERVICE PAGE STYLES
   ===================================================== */
.service-hero {
    background: linear-gradient(rgba(45, 90, 39, 0.9), rgba(45, 90, 39, 0.9)), 
                url('images/hero-bg.jpg') center/cover fixed;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.service-hero .hero-desc {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.95);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge i {
    color: #90EE90;
}

/* Contact Options Bar */
.contact-options-bar {
    background: #fff;
    padding: 30px 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
}

.contact-options-title {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.contact-option i {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-option-label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-option-value {
    font-size: 1rem;
    font-weight: 700;
}

.contact-option.call {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: #fff;
}

.contact-option.email {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    color: #fff;
}

.contact-option.whatsapp {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: #fff;
}

.contact-option.form {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c5a);
    color: #fff;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: #fff;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin: 40px 0 20px;
}

.intro-text h2:first-child {
    margin-top: 0;
}

.intro-text h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin: 35px 0 15px;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.service-item i {
    color: var(--primary-green-light);
    font-size: 18px;
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.benefit-card {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    font-size: 45px;
    color: var(--primary-green-light);
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: var(--primary-green);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: #fff;
}

.reviews-section h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.reviews-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.reviews-widget {
    max-width: 900px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.reviews-widget iframe {
    width: 100%;
    min-height: 400px;
    border: none;
}

.review-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--bg-light);
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.platform-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.platform-badge .rating {
    font-weight: 700;
    color: var(--primary-green);
}

.platform-badge .stars {
    color: #ffc107;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.gallery-section h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 30px;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-link {
    text-align: center;
    margin-top: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green-light);
}

.faq-item h4 {
    color: var(--primary-green);
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--primary-green-light);
    margin-top: 3px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-orange);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary-green);
}

.btn-green {
    background: var(--primary-green);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-green:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    color: #fff;
}

/* Areas Section */
.areas-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.areas-section h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.area-tag {
    background: #fff;
    color: var(--primary-green);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 1024px) {
    .top-bar-item {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        justify-content: center;
        width: 100%;
    }
    
    .top-bar-right {
        display: none;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero {
        padding: 60px 15px;
    }
    
    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-option {
        padding: 20px 15px;
    }
    
    .contact-option i {
        font-size: 26px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-badges {
        gap: 10px;
    }
    
    .hero-badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: left;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .reviews-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-options-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .contact-option {
        padding: 15px 10px;
    }
    
    .contact-option-value {
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
