/* --- CSS Variables & Reset --- */
:root {
    /* Theme Colors */
    --primary-red: #B71C1C; /* Deep premium red */
    --primary-red-dark: #7f0000;
    --pearl-white: #FAF9F6; /* Warm off-white */
    --text-dark: #222222;
    --text-light: #777777;
    --white: #ffffff;
    --shadow: 0 5px 25px rgba(0,0,0,0.08);
    
    /* Dimensions */
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background-color: var(--pearl-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-red);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.4s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Top Navigation Header (Glossy Effect) --- */
header {
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-placeholder {
    width: 60px;
    height: 60px;
    background-color: var(--pearl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-red);
    overflow: hidden;
}
.brand-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand h2 {
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

/* Desktop Nav */
.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--primary-red);
    bottom: -4px;
    left: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-red);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s;
}
.menu-toggle:hover { color: var(--primary-red); }

/* --- Main Content Area --- */
main {
    width: 100%;
    position: relative;
}

section {
    padding: 6rem 8%;
    position: relative;
}

/* --- Home / Hero Section --- */
#home {
    padding: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    /* Will-change optimization for animation */
    will-change: opacity; 
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); 
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 0 5%;
    animation: slideUp 1s ease-out;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-red);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--white);
}

/* --- Section Titles --- */
.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    margin: 10px auto 0;
}

.section-title p {
    color: var(--text-light);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-top: 10px;
}

/* --- About Us Section --- */
#about {
    background-color: var(--pearl-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.stat-box {
    background: var(--white);
    padding: 1.5rem;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-bottom: 3px solid var(--primary-red);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-number,
.stat-plus {
    font-size: 2.2rem;
    font-weight: 600;
    color: #b71c1c;
}

.stat-plus {
    font-size: 1.8rem;
}
.stat-plus {
    position: relative;
    top: -2px;
}


/* --- Gallery Section --- */
#gallery {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    aspect-ratio: 1 / 1;
    background-color: #f0f0f0; 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(183, 28, 28, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.8rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active { display: flex; }

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 0 0 5px rgba(255,255,255,0.1);
}

.lightbox-controls {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-top: 1rem;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
}
.lightbox-controls:hover { opacity: 1; }

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.7;
}
.close-lightbox:hover { opacity: 1; color: var(--primary-red); }

/* --- Feedback Section --- */
#feedback {
    background-color: var(--pearl-white);
}

.feedback-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
}
.feedback-slider::-webkit-scrollbar { display: none; }

.feedback-card {
    min-width: 300px;
    max-width: 300px;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    scroll-snap-align: center;
    border-top: 3px solid var(--primary-red);
    flex-shrink: 0;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

.stars { color: #FFD700; font-size: 0.8rem; }
.feedback-card p { font-size: 0.9rem; color: var(--text-light); font-style: italic; }

/* --- Contact Section --- */
#contact {
    background-color: var(--white);
    padding-bottom: 5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--pearl-white);
    padding: 3rem;
    border-radius: 2px;
}

.contact-info h3 { margin-bottom: 2rem; font-size: 1.5rem; }

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-right: 20px;
    margin-top: 4px;
}
.info-item div strong { display: block; margin-bottom: 5px; font-family: 'Poppins', sans-serif; font-weight: 600; }

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 2px;
    overflow: hidden;
    background-color: #ddd;
}

/* --- Fully Responsive Enquiry Form --- */
.floating-enquiry {
    position: fixed;
    bottom: 40px;
    left: 40px; 
    z-index: 1100;
}

.float-trigger {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(183, 28, 28, 0.4);
    transition: transform 0.3s;
    z-index: 1101; 
}
.float-trigger:hover { transform: scale(1.05); }

/* Modal Backdrop */
.enquiry-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.enquiry-overlay.open { opacity: 1; visibility: visible; }

.enquiry-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9); 
    width: 90%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

.enquiry-panel.open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); 
    visibility: visible;
}

.enquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.enquiry-header h3 {
    margin: 0;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 5px;
}

.close-form {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}
.close-form:hover { color: var(--primary-red); }

.form-group { margin-bottom: 15px; }

.form-group label { 
    display: block; 
    font-size: 0.8rem; 
    margin-bottom: 5px; 
    color: var(--text-dark); 
    font-weight: 500; 
    font-family: 'Poppins', sans-serif;
}

/* --- Responsive Inputs --- */
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px; /* 16px prevents iOS auto-zoom */
    background: #fafafa;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

.form-group input:focus, .form-group textarea:focus { 
    outline: 1px solid var(--primary-red); 
    background: #fff; 
}

.form-group textarea { resize: none; height: 80px; }

.btn-submit {
    width: 100%;
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s;
}
.btn-submit:hover { background-color: #128C7E; }

/* --- Animations --- */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .about-grid, .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .stats-container { grid-template-columns: repeat(3, 1fr); }
    .section-title h2 { font-size: 1.8rem; }
}

@media (max-width: 992px) {
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        gap: 25px;
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 900;
        text-align: center;
    }

    .nav-links.active { transform: translateY(0); }
    .nav-links a { font-size: 1rem; }
}

@media (max-width: 768px) {
    section { padding: 5rem 5%; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .stats-container { grid-template-columns: 1fr; gap: 15px; }
    .contact-container { padding: 2rem 1.5rem; }
    
    /* Responsive Enquiry Form */
    .floating-enquiry { bottom: 30px; left: 20px; } 
    .enquiry-panel { 
        width: 92%; 
        padding: 20px;
        max-height: 85vh;
    }
    .feedback-card { min-width: 280px; }
}
/* --- FOOTER STYLES (Pearl White Theme Version) --- */

.site-footer {
    /* Pearl White / Light Grey Background matching Contact Section */
    background-color: #f9f9f9; 
    /* Dark Text Color matching "Get In Touch" section */
    color: #333333; 
    padding: 4rem 5% 0;
    /* Red top border to separate footer from main content */
    border-top: 3px solid var(--primary-red, #B71C1C); 
    font-family: var(--font-body, 'Poppins', sans-serif);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Column Headings */
.footer-col h4 {
    color: #333333; /* Dark Color */
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-weight: 700;
}

/* Red Underline for styling */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-red, #B71C1C); 
}

/* About Column */
.footer-brand h3 {
    color: #333333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--font-body, sans-serif);
    font-weight: 700;
}

.footer-about p {
    color: #555555; /* Slightly lighter dark grey for readability */
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

/* Red circles with white icons for high contrast on light background */
.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-red, #B71C1C);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px); 
    background-color: #9e1616; /* Darker Red on Hover */
    text-decoration: none;
}

/* Quick Links */
.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #333333; /* Dark Color */
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-red, #B71C1C); /* Red on Hover */
    padding-left: 5px;
    text-decoration: none;
}

/* Contact Info */
.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555555;
    font-size: 0.95rem;
}

/* Icons are Red to match "Get In Touch" section style */
.footer-contact ul li i {
    color: var(--primary-red, #B71C1C);
    margin-top: 4px;
}

/* Copyright Bottom Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #e0e0e0; /* Subtle line */
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #666666; /* Muted grey for copyright */
}

.footer-bottom span {
    color: #333333; /* Brand Name in Dark */
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%); 
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact ul li {
        justify-content: center;
    }
}