@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,700;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary: #1B4332; /* Forest Green */
    --primary-light: #6EA820; /* Brand Green from original site */
    --accent: #D4AF37; /* Metallic Gold */
    --accent-light: #F1D38E;
    --bg-main: #FDFCF8; /* Soft Cream */
    --bg-dark: #081C15;
    --text-main: #2D3436;
    --text-muted: #7D7D7D; /* Matched from original */
    --text-light: #FFFFFF;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --transition-smooth: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.1);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(10px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    animation: fadeInBody 1.2s ease-out;
}

@keyframes fadeInBody {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; }

/* Reusable Components */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-light) !important;
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(27, 67, 50, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary) !important;
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 1s forwards;
}

/* Header & Nav */
/* Header & Nav */
header#header {
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 15px 0;
}

header#header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-brand img {
    height: 60px;
    transition: all 0.4s ease;
}

header#header.scrolled .navbar-brand img {
    height: 45px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition-smooth);
}

header#header.scrolled .nav-link {
    color: var(--primary) !important;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.enquire-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    padding: 12px 28px !important;
    border-radius: 50px;
    color: white !important;
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero-bg.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .display-3 {
    font-family: var(--font-serif);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero .badge {
    background-color: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(5px);
    color: var(--primary-light) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-family: var(--font-sans);
    letter-spacing: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.scroll-indicator .mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--accent);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 0; }
    20% { opacity: 1; }
    80% { transform: translate(-50%, 15px); opacity: 0; }
    100% { opacity: 0; }
}

.bg-cream {
    background-color: #F8F5F0;
}

/* Category Cards */
.category-card {
    cursor: pointer;
    background: #000;
}

.category-card img {
    opacity: 0.85;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 45%, transparent 100%) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.category-overlay h3 {
    color: #fff !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.8);
    margin-bottom: 8px;
    font-size: 2rem;
}

.category-overlay p {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
    margin-bottom: 15px;
}

.category-overlay .btn {
    pointer-events: auto;
    align-self: flex-start;
}

/* Testimonials Carousel */
#testimonials .section-tag {
    color: var(--primary-light);
    font-family: var(--font-sans);
    font-weight: 700;
}

#testimonials h2 {
    font-family: var(--font-serif);
    color: var(--primary);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 60px 40px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-card .quote-icon {
    color: var(--accent);
    font-size: 3rem;
    margin-bottom: 25px;
    opacity: 0.3;
}

.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.testimonial-card .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 25px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card .client-name {
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary);
    border-radius: 50%;
    padding: 15px;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Sections General */
section {
    padding: var(--section-padding);
}

.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent-light);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

.form-label {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-control, .form-select {
    padding: 12px 20px;
    border-radius: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        padding: 80px 30px;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        display: block !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1050;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .nav-item {
        margin-bottom: 15px;
    }

    .nav-link {
        color: var(--primary) !important;
        font-size: 1.1rem;
        padding: 10px 0 !important;
    }

    .navbar-toggler {
        border: none;
        padding: 10px;
        z-index: 1100;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Toggler Icon Animation */
    .navbar-toggler-icon {
        background-image: none !important;
        position: relative;
        width: 24px;
        height: 2px;
        background: white;
        display: block;
        transition: all 0.3s;
    }

    header#header.scrolled .navbar-toggler-icon {
        background: var(--primary);
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: inherit;
        left: 0;
        transition: all 0.3s;
    }

    .navbar-toggler-icon::before { top: -8px; }
    .navbar-toggler-icon::after { top: 8px; }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
        background: var(--primary);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        top: 0;
        background: var(--primary);
    }
}

@media (max-width: 768px) {
    .logo { font-size: 1.2rem; }
    .hero h1 { font-size: 2.5rem; }
    .about .container { grid-template-columns: 1fr; gap: 40px; }
    .contact .container > div:last-child { grid-template-columns: 1fr; }
    #enquiryForm { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
    .hero { height: auto; padding: 120px 0 60px; }
    .footer-grid { grid-template-columns: 1fr; }
}
