:root {
    /* Premium Warm Light Theme */
    --primary: #E58B2E; /* Warm logo orange */
    --primary-hover: #CA7422;
    --secondary: #8C7861; 
    --accent: #F2EBE5; /* Very soft beige for subtle highlights */
    --bg-dark: #FAF8F5; /* Alabaster Off-white - much richer than pure white */
    --bg-card: #FFFFFF; /* Pure White for cards to pop against alabaster */
    --text-main: #2D2A26; /* Espresso Charcoal - softer than black */
    --text-muted: #7A7571; /* Warm grey text */
    --glass-bg: rgba(250, 248, 245, 0.85); /* Frosty alabaster */
    --glass-border: rgba(45, 42, 38, 0.05); /* Extremely subtle border */
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --section-spacing: 100px; /* slightly smaller for local business */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .heading-font {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    font-weight: 500;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

section {
    padding: var(--section-spacing) 10%;
    position: relative;
}

/* Scroll Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Common Layout Utilities */
.container { max-width: 1400px; margin: 0 auto; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: var(--primary);
    color: #FFFFFF;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(229, 139, 46, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0;
    background: var(--text-main);
    z-index: -1;
    transition: var(--transition-fast);
}

.btn-primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(45, 42, 38, 0.15); }
.btn-primary:hover::after { height: 100%; }

.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.15;
    color: var(--text-main);
}

/* Header Separated from page */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #121212;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

nav.nav-hidden {
    transform: translateY(-100%);
}

.logo img { max-height: 45px; object-fit: contain; }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    color: #FFFFFF;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--primary);
    transition: var(--transition-fast);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFFFFF;
}

/* Hero Template General Adjustment */
.hero {
    min-height: 500px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 5%;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.hero .hero-content { position: relative; z-index: 2; max-width: 900px; color: #FFFFFF; }

/* Grid System */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Enhanced Footer */
footer {
    background: #121212;
    color: #FFFFFF;
    padding: 80px 10% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-info p { color: #E0E0E0; margin-top: 25px; max-width: 300px; line-height: 1.8; font-size: 0.95rem; }
.footer-links h4 { margin-bottom: 30px; font-size: 1.1rem; color: #FFFFFF; font-weight: 500; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #CCCCCC; font-size: 0.95rem; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); color: #AAAAAA; font-size: 0.85rem; }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* Responsiveness - Mobile Friendly */
@media (max-width: 1024px) {
    .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; }
    .hero .hero-content h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-spacing: 60px; }
    
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    
    /* Sticky Mobile Header */
    nav { padding: 0.6rem 5%; }
    
    /* Mobile Menu Implementation */
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #121212;
        flex-direction: column;
        align-items: center;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links a { padding: 20px 0; width: 100%; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); }
    .nav-links a::after { display: none; }
    
    section { padding: var(--section-spacing) 5%; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-info p, .footer-info { margin-left: auto; margin-right: auto; }
    .footer-info img { margin: 0 auto; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
    
    .section-title { font-size: 2rem; }
    
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 28px; }
}
