:root {
    --primary: #fde101;    
    --secondary: #f9e501; 
    --tertiary: #067fe8;   
    --text-dark: #222222;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-white: #ffffff;
}

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

/* GLOBAL BUTTON RESET */
button { font-family: 'Inter', sans-serif; cursor: pointer; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    padding-bottom: 70px; /* Space for mobile bar */
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }

.section-title {
    text-align: center; font-size: 2.2rem; margin-bottom: 15px;
    color: var(--tertiary); text-transform: uppercase; font-weight: 800;
}

.seo-text {
    text-align: center; max-width: 800px; margin: 0 auto 40px auto;
    font-size: 1.1rem; color: #555; line-height: 1.8;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- TOP BAR (BANNER) --- */
.top-bar {
    background-color: #023e8a; /* Deep Blue */
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 1001; /* Above Header */
}
.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-tagline {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #eee;
    display: flex;
    align-items: center;
    gap: 6px; /* Reduced gap for mobile */
    width: 100%;
    justify-content: center; /* Center on Mobile */
    white-space: nowrap; /* Force Single Line */
    font-size: 0.7rem; /* Smaller font to fit on mobile */
}
.top-bar-tagline i { color: var(--primary); }

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

/* Top Bar Socials Styling */
.top-socials-group {
    display: flex;
    gap: 15px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255,255,255,0.2);
    align-items: center;
}

.top-social-link {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.top-social-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Top Bar Buttons */
.top-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
}

.top-btn-call {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2); 
}
.top-btn-call:hover {
    background-color: var(--tertiary); /* #067fe8 */
    border-color: var(--tertiary);
    color: #fff;
}

.top-btn-wa {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.top-btn-wa:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: #fff;
}

.top-btn-quote {
    background-color: var(--primary);
    color: var(--text-dark);
    border: 2px solid var(--primary);
}
.top-btn-quote:hover {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}


/* --- HEADER REDESIGN (SPLIT LAYOUT) --- */
.site-header {
    background: var(--tertiary); 
    color: var(--text-light); 
    padding: 10px 0; 
    z-index: 1000; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.site-header ul li a { 
    color: var(--text-light); 
    font-weight: 800; 
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.site-header ul li a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}

.site-logo-img {
    height: auto;
    max-height: 90px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}
.site-logo-img:hover { transform: scale(1.05); }

/* HEADER BUTTON */
.btn-nav { 
    background: var(--primary) !important;
    color: var(--text-dark) !important;
    padding: 12px 28px;
    display: inline-block !important;
    border-radius: 6px;
    border: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.btn-nav:hover { 
    background: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(253, 225, 1, 0.4) !important;
}

/* --- MOBILE MENU --- */
.hamburger { 
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 5px; 
    background: transparent !important; 
    border: none; 
    cursor: pointer; 
    padding: 10px; 
    color: #ffffff; 
    font-size: 2rem; 
}

.mobile-menu {
    background: var(--tertiary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.active { max-height: 500px; }
.mobile-menu ul { padding: 20px 0; }
.mobile-menu ul li { padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Default Visibility */
.desktop-only { display: none; }
.mobile-only { display: block; }


/* --- HERO SECTION --- */
.hero {
    /* Set a fallback background color */
    background: #034485;
    color: var(--text-light); 
    padding: 60px 0; 
    position: relative;
    /* Important for absolute positioning of children */
    overflow: hidden; 
}

/* Container for Background Slides */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth Fade */
}

/* Active Slide */
.hero-slide.active {
    opacity: 1;
}

/* Static Gradient Overlay (Always on top of images) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Adjust opacity here (0.75 / 0.65) to make text readable */
    background: linear-gradient(135deg, rgba(3, 68, 133, 0.75) 0%, rgba(6, 127, 232, 0.65) 100%);
    pointer-events: none;
}

/* Layout Content (On top of overlay) */
.hero-layout { 
    display: flex; 
    flex-direction: column; 
    gap: 40px; 
    position: relative; 
    z-index: 2; 
}
.hero-text { text-align: center; }

.hero h1 { font-size: 2.2rem; margin-bottom: 15px; line-height: 1.2; color: var(--primary); text-transform: uppercase; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); min-height: 3.6rem; }
.headline-problem { color: var(--primary); display: block; }
.headline-solution { color: white; display: block; font-size: 0.8em; margin-top: 10px; }

.fade-text {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.fade-text.hidden {
    opacity: 0;
}

.hero-sub { font-size: 1.1rem; margin-bottom: 20px; text-shadow: 1px 1px 2px rgba(0,0,0,0.2); }
.hero-buttons-mobile { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

/* Hero Dots */
.hero-dots {
    display: flex;
    justify-content: center; /* Centered on mobile */
    gap: 10px;
    margin-bottom: 20px;
}
.hero-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
.hero-dot.active {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

/* Forms */
.hero-form-wrapper, .contact-form-box, .modal-form-box {
    background: white; color: var(--text-dark); padding: 30px;
    border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); 
    border: 1px solid #eee; position: relative; z-index: 10;
}
.hero-form-wrapper { border-top: 6px solid var(--primary); }
.hero-form-header { text-align: center; margin-bottom: 20px; font-weight: 700; color: var(--tertiary); }
.form-progress { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding: 0 10px; }

/* Darkened inactive text for accessibility */
.step-indicator { width: 30px; height: 30px; background: #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #555; font-size: 14px; }
.step-indicator.active { background: var(--tertiary); color: white; }
.step-line { flex: 1; height: 2px; background: #eee; margin: 0 10px; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.4s; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; text-align: left; }
.form-group input:not([type="radio"]):not([type="file"]), .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; }

/* File Upload Style */
.form-group input[type="file"] {
    width: 100%; padding: 10px; border: 1px dashed #ccc; background: #fafafa; border-radius: 6px;
}

/* Info Note (Commercial/Domestic) */
.type-info-note {
    font-size: 0.85rem;
    margin-top: 8px;
    font-style: italic;
    color: #333;
    background: #fffbe6;
    padding: 8px;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
    display: none; /* Hidden by default */
}

/* --- RADIO GHOST BUTTONS --- */
.radio-group {
    display: flex; 
    gap: 10px;
    width: 100%;
}
.radio-group input[type="radio"] {
    display: none; /* Hide default radio */
}
.radio-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    color: #555;
    background: white;
}
.radio-group input[type="radio"]:checked + .radio-btn {
    border-color: var(--tertiary);
    background-color: var(--tertiary);
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- BUTTON STYLES --- */
.btn { padding: 15px 20px; border-radius: 6px; font-weight: 700; text-transform: uppercase; border: none; cursor: pointer; width: 100%; display: inline-block; text-align: center;}

/* Submit Button - Now Yellow */
.btn-submit { 
    background: var(--primary); 
    color: var(--text-dark); 
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}
.btn-submit:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-next { background: var(--tertiary); color: white; }
.btn-prev { background: #e0e0e0; color: #333; margin-bottom: 10px; }
.btn-primary { background: var(--primary); color: var(--text-dark); } 

.step-nav { display: flex; gap: 10px; }
.step-nav .btn { margin: 0; }

/* --- SERVICES TABS --- */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.tab-btn {
    background: white;
    border: 2px solid #ddd;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.tab-btn.active {
    background: var(--tertiary);
    color: white;
    border-color: var(--tertiary);
    box-shadow: 0 4px 10px rgba(6, 127, 232, 0.3);
}
.tab-btn:hover:not(.active) {
    border-color: var(--tertiary);
    color: var(--tertiary);
}

/* --- SECTIONS --- */
.about-content-wrapper { display: flex; flex-direction: column; gap: 30px; }
.about-img-col img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* --- USPs in About Section --- */
.feature-list { 
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 15px; 
    padding: 0;
}
.feature-list li {
    background: white; padding: 10px 15px; border-radius: 6px; border: 1px solid #e0e0e0;
    font-weight: 600; color: #555; display: flex; align-items: center;
}
.feature-list li::before {
    content: '✓'; color: var(--tertiary); font-size: 1.5rem; line-height: 0; margin-right: 10px;
}

.services-grid, .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.service-card { background: white; padding: 20px 10px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); text-align: center; border: 1px solid #eee; cursor: pointer; }
.service-icon { font-size: 2rem; color: var(--tertiary); margin-bottom: 10px; }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); background: white; }
.gallery-item img { width: 100%; height: 150px; object-fit: cover; }

/* --- GALLERY CAPTIONS & BADGES --- */
.caption { 
    padding: 10px; 
    font-size: 0.8rem; 
    text-align: center; 
    color: #555; 
    border-top: 3px solid #eee; 
    font-weight: 600;
}

/* Red Line */
.caption.before { border-top: 4px solid #dc3545; }
/* Green Line */
.caption.after { border-top: 4px solid #28a745; }

/* Badges */
.gallery-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 2;
}
.gallery-label.before { background-color: #dc3545; }
.gallery-label.after { background-color: #28a745; }

/* --- LOCATION SECTION --- */
.location-wrapper { display: flex; flex-direction: column; gap: 30px; }
.location-map-col, .location-areas-col { flex: 1; }

.address-box {
    background: white; padding: 20px; border-radius: 10px; border: 1px solid #eee;
    display: flex; gap: 15px; align-items: center; margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.address-box i { font-size: 2rem; color: var(--primary); }

.map-frame { width: 100%; height: 300px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.areas-list { 
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 15px; 
}
.areas-list li {
    background: white; padding: 10px 15px; border-radius: 6px; border: 1px solid #e0e0e0;
    font-weight: 600; color: #555; display: flex; align-items: center;
}
.areas-list li::before {
    content: '•'; color: var(--tertiary); font-size: 1.5rem; line-height: 0; margin-right: 10px;
}

.accordion { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }
.accordion-item { background: white; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; }
.accordion-header { width: 100%; text-align: left; padding: 20px; background: white; border: none; font-size: 1rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.accordion-content { max-height: 0; overflow: hidden; padding: 0 20px; transition: max-height 0.3s ease, padding 0.3s ease; background: #fcfcfc; }
.accordion-item.active .accordion-content { max-height: 300px; padding-bottom: 20px; border-top: 1px solid #eee; }

/* --- TESTIMONIALS CAROUSEL STYLES --- */
.carousel-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 70px; 
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin: 0;
    padding: 0;
    list-style: none;
}

.carousel-slide {
    min-width: 100%; /* Mobile: 1 at a time */
    box-sizing: border-box;
    padding: 10px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary);
    height: 100%; 
    display: flex;
    flex-direction: column;
    position: relative; 
    padding-bottom: 60px; 
}

.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.stars { color: #ffc107; margin-bottom: 0; letter-spacing: 2px; }
.verified-badge { font-size: 0.8rem; color: #666; display: flex; align-items: center; gap: 5px; font-weight: 600; }
.review-source-icon { position: absolute; bottom: 20px; right: 20px; width: 24px; height: auto; }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    color: var(--tertiary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.carousel-btn:hover { background: var(--primary); color: #333; }
.prev-btn { left: 0; }
.next-btn { right: 0; }

/* --- CONTACT SECTION BUTTONS --- */
.contact-wrapper-new { display: flex; flex-direction: column; gap: 50px; }
.contact-direct { text-align: center; padding: 20px; background: white; border-radius: 15px; border: 1px solid #eee; z-index: 5; position: relative; }

/* Mobile Default: Stacked */
.direct-buttons { display: flex; flex-direction: column; gap: 15px; width: 100%; margin-top: 40px; }

.btn-big-icon { 
    display: flex; align-items: center; justify-content: center; gap: 15px; 
    padding: 20px; 
    border-radius: 6px; 
    font-weight: 800; font-size: 1rem; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    z-index: 20; position: relative; cursor: pointer; 
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-big-icon:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.btn-phone { background: white; border: 2px solid var(--tertiary); color: var(--tertiary); }
.btn-phone:hover { background: var(--tertiary); color: white; }
.btn-whatsapp { background: #25D366; color: white; border: 2px solid #25D366; }
.btn-whatsapp:hover { background: #1ebc57; border-color: #1ebc57; }

.trust-badges { margin-top: 25px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; color: #666; font-size: 0.85rem; font-weight: 600; width: 100%; }
.badge-item { display: flex; align-items: center; gap: 5px; }

/* Modal */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 9999; justify-content: center; align-items: center; }
.modal-content { width: 95%; max-width: 500px; position: relative; }
.close-modal { position: absolute; top: -15px; right: -10px; background: white; color: #333; width: 35px; height: 35px; border-radius: 50%; border: none; font-weight: bold; font-size: 1.2rem; cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.2); z-index: 20; }

footer { background-color: #1a1a1a; color: #e0e0e0; text-align: center; padding: 50px 0; }
.footer-links a { color: #bbb; margin: 0 10px; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.small { font-size: 0.8rem; opacity: 0.6; margin-top: 20px; }

/* --- FOOTER SOCIALS --- */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.socials-label {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 225, 1, 0.3);
    border-color: var(--primary);
}

/* Sticky Mobile Bar */
.sticky-mobile-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: white; display: flex; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 9999; height: 60px; }
.sticky-btn { flex: 1; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; gap: 10px; border: none; }
.call-btn { background: var(--tertiary); color: white; }
.wa-btn { background: #25D366; color: white; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: white; padding: 20px; box-shadow: 0 -5px 20px rgba(0,0,0,0.15); z-index: 10000; display: none; border-top: 4px solid var(--tertiary); }
.cookie-content { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.cookie-buttons { display: flex; gap: 10px; }
.btn-cookie { padding: 8px 20px; border-radius: 4px; font-weight: bold; border: none; cursor: pointer; }
.btn-accept { background: var(--tertiary); color: white; }
.btn-reject { background: #eee; color: #333; }
.cookie-settings-btn { position: fixed; bottom: 80px; right: 20px; width: 40px; height: 40px; background: white; border: 1px solid #ddd; border-radius: 50%; display: none; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); cursor: pointer; z-index: 990; color: var(--tertiary); font-size: 1.2rem; }
.cookie-settings-btn:hover { background: #f9f9f9; }

/* --- Mobile Specific Carousel Overrides --- */
@media (max-width: 767px) {
    .carousel-btn { display: none !important; } /* Hide Arrows */
    
    .carousel-container { 
        padding: 0 15px; /* Standard padding */
    }
    
    .carousel-track {
        display: flex;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .carousel-slide {
        min-width: 100%; /* Show Full Review */
        flex: 0 0 100%;  /* Force 100% width */
        padding: 0 5px; /* Tiny gap between cards during swipe */
    }
    
    .review-card {
        height: auto; /* Let content define height on mobile */
        min-height: auto; /* REMOVED FIXED MIN-HEIGHT to fix whitespace */
        padding-bottom: 20px; /* Reduced bottom padding */
    }
    
    .site-logo-img {
        max-height: 90px; /* INCREASED LOGO SIZE ON MOBILE */
    }
    
    /* Ensure Hero Text is Centered on Mobile */
    .hero-text { text-align: center; padding-right: 0; }
}

/* --- DESKTOP MEDIA QUERY (768px+) --- */
@media (min-width: 768px) {
    /* Reveal Desktop Elements */
    .desktop-only { display: block; }
    .mobile-only { display: none; }
    
    /* FIX: Ensure Top Bar Actions are Visible and FLEX on Desktop */
    .top-bar-actions.desktop-only { display: flex !important; }
    
    /* Tagline back to left align on desktop */
    .top-bar-tagline { 
        width: auto; 
        justify-content: flex-start; 
        font-size: 0.85rem; /* RESTORE ORIGINAL SIZE ON DESKTOP */
    }

    /* Grid Layout for Header */
    .header-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr; /* Equal space left/right */
        align-items: center;
        min-height: 90px;
        width: 100%;
    }

    /* Ensure Nav containers fill their grid cells */
    .nav-left, .nav-right {
        width: 100%;
    }

    /* Nav Alignments - BALANCED SPACING WITH PADDING GAP */
    .nav-left ul { 
        display: flex; 
        width: 100%; 
        justify-content: space-between; /* Spreads items evenly */
        padding-right: 80px; /* INCREASED GAP: Pushes "Our Work" away from logo */
    }
    
    .nav-right ul { 
        display: flex; 
        width: 100%; 
        justify-content: space-between; /* Spreads items evenly */
        padding-left: 80px; /* INCREASED GAP: Pushes "Reviews" away from logo */
        align-items: center; 
    }
    
    .logo-center { justify-self: center; }
    
    /* Increase Logo Size for Desktop */
    .site-logo-img { max-height: 100px; }

    /* General Layouts */
    .hamburger { display: none; }
    .mobile-menu { display: none !important; } /* Ensure menu is hidden */
    
    .hero { padding: 100px 0; }
    .hero-layout { flex-direction: row; align-items: center; justify-content: space-between; }
    .hero-text { text-align: left; flex: 1; padding-right: 50px; }
    .hero-dots { justify-content: flex-start; } /* Left align dots on Desktop */

    .hero h1 { font-size: 3.5rem; }
    .hero-buttons-mobile { display: none; }
    .hero-form-wrapper { flex: 1; max-width: 500px; }
    .about-content-wrapper { flex-direction: row; align-items: center; }
    .about-list-col, .about-img-col { flex: 1; }
    
    .services-grid, .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .gallery-item img { height: 220px; }
    
    .location-wrapper { flex-direction: row; align-items: flex-start; gap: 50px; }
    
    .carousel-slide { min-width: 33.3333%; padding: 10px; }
    .carousel-container { padding: 0 70px; } 
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
    
    .contact-wrapper-new { flex-direction: row; align-items: center; }
    .contact-direct { flex: 1; text-align: left; padding: 40px; border: none; background: transparent; }
    
    .direct-buttons { flex-direction: row; gap: 20px; }
    .trust-badges { justify-content: center; }
    
    .contact-form-box { flex: 1; }
    .cookie-content { flex-direction: row; align-items: center; justify-content: space-between; }
    .sticky-mobile-bar { display: none; }
    body { padding-bottom: 0; }
    .cookie-settings-btn { bottom: 20px; right: 20px; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }