/* 
 * The English Mechanic Website
 * Production-Ready
 * Mobile-First Responsive Design with Premium Animations
 * Version: 1.0
 */

/* ============================================
   CSS VARIABLES - Easy Theme Customization
   ============================================ */
:root {
    --sage-green: #012169;
    --dark-green: #001040;
    --uk-red: #C8102E;
    --uk-red-dark: #a00d24;
    --black: #1a1a1a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-gray: #4a5568;
    --border-gray: #e2e8f0;
    --facebook-blue: #1877F2;
    --whatsapp-green: #25D366;
    --google-red: #EA4335;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   SCROLL ANIMATION SETUP
   ============================================ */
/* Content is visible by default, animations enhance on scroll */
.fade-in-up,
.fade-in-left,
.fade-in-right,
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Only apply initial hidden state when JS is loaded */
.js-loaded .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-loaded .fade-in-left {
    opacity: 0;
    transform: translateX(-30px) translateY(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-loaded .fade-in-right {
    opacity: 0;
    transform: translateX(30px) translateY(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-loaded .fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered animations for grid items */
.stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.js-loaded .stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for stagger effect */
.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION - PRODUCTION READY
   ============================================ */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    position: relative;
}

/* BANNER LOGO */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-banner-img {
    height: 72px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(1, 33, 105, 0.2));
    transition: all 0.4s ease;
}

.logo-container:hover .logo-banner-img {
    filter: drop-shadow(0 4px 16px rgba(1, 33, 105, 0.4));
}

/* DESKTOP NAVIGATION */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--uk-red);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--sage-green);
}

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

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
    background: none;
    border: none;
    z-index: 1001;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--sage-green);
}

/* MOBILE OVERLAY */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-green);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 
                    0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.6; transform: translateX(10%); }
}

.hero-home {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), 
                url('project-1.jpg') center/cover no-repeat fixed;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* NEW Hero Design - White background with faded image right-to-left */
.hero-home-new {
    background: var(--white);
    padding: 0;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Remove default hero gradient and pseudo-elements for this variant */
.hero-home-new::before {
    display: none;
}

/* Full background image positioned right */
.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    background: url('hero-background.png') center/cover no-repeat;
    z-index: 0;
}

/* Gradient overlay that fades the image from right to left into white */
.hero-fade-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    background: linear-gradient(to right, 
        var(--white) 0%, 
        rgba(255, 255, 255, 0.85) 20%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.1) 80%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    z-index: 1;
}

.hero-content-new {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 3.5rem 2rem 3rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
    max-width: 600px;
    margin: 0 auto 0 0;
    padding-left: max(2rem, calc((100vw - 1400px) / 2 + 2rem));
}

.hero-home-new .hero-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(1, 33, 105, 0.2));
}

.hero-home-new .hero-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
}

.hero-home-new .hero-description {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-gray);
    max-width: 520px;
    margin: 0;
}

.page-header {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--white);
    color: var(--sage-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.btn-primary-green {
    background: var(--uk-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-green::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-green:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-green:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.5);
    background: var(--uk-red-dark);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--sage-green);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-size: 2.5rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* ============================================
   HOME PAGE - SERVICES PREVIEW
   ============================================ */
.services-preview {
    padding: 5rem 2rem;
    background: var(--white);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 3rem auto;
}

.service-preview-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-preview-card:hover {
    transform: translateY(-12px);
}

.service-preview-image {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-preview-card:hover .service-preview-image {
    box-shadow: var(--shadow-hover);
}

.service-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-preview-card:hover .service-preview-image img {
    transform: scale(1.1);
}

.service-preview-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.3) 100%);
    transition: all 0.4s ease;
}

.service-preview-card:hover .service-preview-image::after {
    background: linear-gradient(180deg, transparent 0%, rgba(1, 33, 105, 0.5) 100%);
}

.service-preview-card h3 {
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-preview-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.learn-more-section {
    text-align: center;
    margin-top: 3rem;
}

.coverage-home {
    padding: 5rem 2rem;
    background: var(--light-gray);
    text-align: center;
}

.coverage-home h2 {
    margin-bottom: 2rem;
}

/* ============================================
   STATISTICS & REVIEWS SECTION
   ============================================ */
.stats-reviews-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.stat-item {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #eaecf4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(1, 33, 105, 0.1);
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-green) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(1, 33, 105, 0.3);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--sage-green);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.stat-item:hover .stat-number {
    color: var(--sage-green);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.reviews-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--sage-green);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.testimonial-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sage-green);
    background: var(--white);
}

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-card .stars i {
    transition: all 0.3s ease;
}

.testimonial-card:hover .stars i {
    transform: scale(1.1);
}

.testimonial-card:hover .stars i:nth-child(1) { transition-delay: 0s; }
.testimonial-card:hover .stars i:nth-child(2) { transition-delay: 0.05s; }
.testimonial-card:hover .stars i:nth-child(3) { transition-delay: 0.1s; }
.testimonial-card:hover .stars i:nth-child(4) { transition-delay: 0.15s; }
.testimonial-card:hover .stars i:nth-child(5) { transition-delay: 0.2s; }

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--black);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.reviews-cta-center {
    text-align: center;
    margin-top: 2rem;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--uk-red) 0%, var(--uk-red-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.95;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--sage-green);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

.commitment-list {
    list-style: none;
    margin-top: 1.5rem;
}

.commitment-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.commitment-list i {
    color: var(--sage-green);
    font-size: 1.3rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-container {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.why-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-green);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-item h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.coverage-area {
    padding: 5rem 2rem;
    background: var(--white);
}

.coverage-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

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

.area-badge {
    background: var(--light-gray);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
}

.area-badge:hover {
    background: var(--sage-green);
    color: var(--white);
    border-color: var(--sage-green);
    transform: scale(1.05);
}

.area-badge i {
    color: var(--sage-green);
}

.area-badge:hover i {
    color: var(--white);
}

.coverage-cta {
    text-align: center;
    margin-top: 3rem;
}

.coverage-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-detailed {
    padding: 5rem 2rem;
    background: var(--white);
}

.service-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding-bottom: 5rem;
    border-bottom: 2px solid var(--border-gray);
}

.service-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-detail.reverse .service-detail-content {
    order: 2;
}

.service-detail.reverse .service-detail-image {
    order: 1;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-detail h2 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail h3 {
    font-size: 1.5rem;
    color: var(--sage-green);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.service-detail p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.service-features i {
    color: var(--sage-green);
    font-size: 1.2rem;
}

.service-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-container {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-services {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.additional-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-green);
}

.additional-card i {
    font-size: 3rem;
    color: var(--sage-green);
    margin-bottom: 1.5rem;
}

.additional-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.additional-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.cta-buttons-center {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-container h2 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(1, 33, 105, 0.1);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.contact-info-sidebar h2 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h3 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--sage-green);
}

.contact-note {
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.social-connect {
    margin-top: 2rem;
    text-align: center;
}

.social-connect h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links-large a {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-large a:hover {
    transform: translateY(-3px);
}

.social-links-large a:nth-child(1) {
    background: var(--facebook-blue);
}

.social-links-large a:nth-child(1):hover {
    background: #0d5dbf;
}

.social-links-large a:nth-child(2) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links-large a:nth-child(2):hover {
    background: linear-gradient(45deg, #d67d2d 0%, #c95834 25%, #b91f38 50%, #a91c58 75%, #9a1476 100%);
}

.social-links-large a:nth-child(3) {
    background: var(--light-gray);
    border: 2px solid var(--border-gray);
}

.social-links-large a:nth-child(3):hover {
    background: var(--border-gray);
}

.social-links-large a:nth-child(3) img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.social-links-large a:nth-child(4) {
    background: var(--google-red);
}

.social-links-large a:nth-child(4):hover {
    background: #c5362c;
}

.map-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.map-container {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.map-placeholder {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-gray);
    box-shadow: var(--shadow-md);
}

.map-placeholder iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.why-contact {
    padding: 5rem 2rem 3rem;
    background: var(--white);
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.why-contact-item {
    text-align: center;
    padding: 2rem;
}

.why-contact-item i {
    font-size: 3rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.why-contact-item h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.why-contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   GALLERY & REVIEWS PLACEHOLDER PAGES
   ============================================ */
.gallery-section,
.reviews-section {
    padding: 5rem 2rem;
    background: var(--white);
    min-height: 400px;
}

.coming-soon {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.coming-soon i {
    font-size: 5rem;
    color: var(--sage-green);
    margin-bottom: 2rem;
}

.coming-soon h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.coming-soon p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* ============================================
   GALLERY PAGE - PROFESSIONAL LAYOUT
   ============================================ */
.gallery-main {
    padding: 5rem 2rem;
    background: var(--white);
}

.gallery-category {
    margin-bottom: 5rem;
}

.gallery-category-title {
    font-size: 2rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 33, 105, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.gallery-cta {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-cta h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ============================================
   LIGHTBOX FOR GALLERY
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.lightbox-close:hover {
    color: #012169;
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(1, 33, 105, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    padding: 20px 25px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #012169;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 15px 20px;
        font-size: 24px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-img {
        max-width: 95%;
    }
}

/* ============================================
   REVIEWS PAGE - PROFESSIONAL LAYOUT
   ============================================ */
.reviews-main {
    padding: 5rem 2rem;
    background: var(--white);
}

.reviews-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
}

.review-card-full {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
}

.review-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-green);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.review-card-full h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.checkatrade-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.checkatrade-cta h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 700;
}

.checkatrade-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.checkatrade-link:hover {
    transform: scale(1.05);
}

.checkatrade-link img {
    max-width: 300px;
    height: auto;
}

.checkatrade-note {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
}

.reviews-contact-cta {
    text-align: center;
    padding: 3rem 2rem;
}

.reviews-contact-cta h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.reviews-contact-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--sage-green);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--sage-green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(1, 33, 105, 0.4);
}

.social-links a i,
.social-links a img {
    position: relative;
    z-index: 1;
}
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Social Media Brand Colors */
.social-links a:nth-child(1) {
    background: var(--facebook-blue);
}

.social-links a:nth-child(1):hover {
    background: #0d5dbf;
}

.social-links a:nth-child(2) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(45deg, #d67d2d 0%, #c95834 25%, #b91f38 50%, #a91c58 75%, #9a1476 100%);
}

.social-links a:nth-child(3) {
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:nth-child(3):hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-links a:nth-child(3) img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.social-links a:nth-child(4) {
    background: var(--google-red);
}

.social-links a:nth-child(4):hover {
    background: #c5362c;
}

.social-links a:nth-child(5) {
    background: var(--whatsapp-green);
}

.social-links a:nth-child(5):hover {
    background: #1da851;
}

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

.footer-logo img {
    width: 120px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid,
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail.reverse .service-detail-content,
    .service-detail.reverse .service-detail-image {
        order: initial;
    }

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

    .footer-logo {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* =======================================
       FIXED MOBILE MENU - PRODUCTION READY
       ======================================= */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        gap: 2rem;
        align-items: flex-start;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        padding: 1rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-overlay {
        display: none;
    }

    .mobile-overlay.active {
        display: block;
    }

    /* Logo sizing for mobile */
    .logo-banner-img {
        height: 56px;
        max-width: 260px;
    }

    nav {
        padding: 0.8rem 1.5rem;
    }

    .hero {
        padding: 4rem 1.5rem;
        min-height: 450px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* New Hero with Logo - Mobile */
    .hero-home-new {
        min-height: auto;
    }

    .hero-bg-image {
        width: 100%;
        opacity: 0.25;
    }

    .hero-fade-overlay {
        width: 100%;
        background: linear-gradient(to bottom,
            var(--white) 0%,
            rgba(255, 255, 255, 0.8) 40%,
            rgba(255, 255, 255, 0.5) 70%,
            rgba(255, 255, 255, 0.3) 100%
        );
    }

    .hero-content-new {
        padding: 3rem 1.5rem;
        max-width: 100%;
        margin: 0 auto;
        align-items: center;
        text-align: center;
        padding-left: 1.5rem;
    }

    .hero-home-new .hero-heading {
        font-size: 2rem;
    }

    .hero-home-new .hero-logo {
        width: 80px;
        height: 80px;
    }

    .hero-home-new .hero-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .page-header {
        padding: 4rem 1.5rem 3rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

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

    .services-preview,
    .about-section,
    .why-choose,
    .coverage-area,
    .services-detailed,
    .additional-services,
    .contact-page,
    .map-section,
    .why-contact,
    .cta-section,
    .coverage-home,
    .stats-reviews-section {
        padding: 4rem 1.5rem;
    }

    .services-preview-grid,
    .why-grid,
    .additional-grid,
    .why-contact-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .service-preview-image {
        height: 280px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .cta-buttons-center {
        flex-direction: column;
        gap: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .container {
        padding: 0 1.5rem;
    }

    .about-img-container,
    .service-img-container {
        max-width: 100%;
    }

    .map-placeholder iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .logo-banner-img {
        height: 46px;
        max-width: 210px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .service-preview-image {
        height: 240px;
    }

    /* New Hero Logo - Small Mobile */
    .hero-home-new .hero-heading {
        font-size: 1.7rem;
    }

    .hero-home-new .hero-logo {
        width: 70px;
        height: 70px;
    }

    .hero-home-new .hero-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .checkatrade-link img {
        max-width: 250px;
    }
}

/* ============================================
   PERFORMANCE & ACCESSIBILITY
   ============================================ */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
}

/* Print styles */
@media print {
    header,
    .whatsapp-float,
    .mobile-menu-btn,
    footer {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* Restored sitewide reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.reveal-visible {
        opacity: 1 !important;
        transform: none !important;
    }
}
