/* 
 * Ferreira Plastering Website
 * Production-Ready for Hostinger Hosting
 * Mobile-First Responsive Design
 * Author: Senior IT Engineer
 * Version: 2.0
 */

/* ============================================
   CSS VARIABLES - Easy Theme Customization
   ============================================ */
:root {
    --sage-green: #7a9079;
    --dark-green: #5a6f59;
    --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);
}

/* ============================================
   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: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

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

/* LARGER LOGO - MORE PROMINENT */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    z-index: 1001;
    transition: transform 0.3s ease;
}

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

.logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(122, 144, 121, 0.3));
    transition: filter 0.3s ease;
}

.logo-container:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(122, 144, 121, 0.5));
}

.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 0.85rem;
    color: var(--sage-green);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
}

/* 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(--sage-green);
    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.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ============================================
   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-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);
}

.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 with Full Logo - Centered */
.hero-home-new {
    background: var(--sage-green);
    padding: 8rem 2rem;
    min-height: 600px;
}

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

.hero-logo-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--white);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.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.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    border: none;
}

.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);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.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: transform 0.3s ease;
}

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

.service-preview-image {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-md);
}

.service-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.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: background 0.3s ease;
}

.service-preview-card:hover .service-preview-image::after {
    background: linear-gradient(180deg, transparent 0%, rgba(122, 144, 121, 0.4) 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;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--sage-green);
}

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

.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.3s ease;
    border: 2px solid transparent;
}

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

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

.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(--sage-green) 0%, var(--dark-green) 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(122, 144, 121, 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(122, 144, 121, 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: #7a9079;
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(122, 144, 121, 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: #7a9079;
}

.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;
    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: block;
    }

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

    /* Logo sizing for mobile */
    .logo-img {
        width: 75px;
        height: 75px;
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }

    .logo-text span {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    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 {
        padding: 5rem 1.5rem;
        min-height: 500px;
    }

    .hero-logo {
        max-width: 320px;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .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-img {
        width: 65px;
        height: 65px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text span {
        font-size: 0.7rem;
    }

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

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

    /* New Hero Logo - Small Mobile */
    .hero-logo {
        max-width: 280px;
    }

    .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;
    }
}