@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* DESIGN TOKENS & VARIABLES */
:root {
    --color-bg-primary: #FCFBF9;     /* Ivory/marble white background */
    --color-bg-secondary: #F7F3EC;   /* Soft warm cream sections */
    --color-bg-dark: #1E1713;        /* Charcoal brown for footer/contrast */
    --color-maroon: #58111A;         /* Deep maroon/wine accent */
    --color-maroon-hover: #7E1E28;   /* Lighter maroon */
    --color-gold: #C8A96E;           /* Antique gold */
    --color-gold-dark: #A8843E;      /* Rich dark gold */
    --color-gold-light: #E5D5B8;     /* Warm light gold */
    --color-text-main: #2E2620;      /* Charcoal brown text */
    --color-text-muted: #6B5C54;     /* Warm taupe secondary text */
    --color-text-white: #FCFBF9;     /* Ivory white text */
    --color-border: #EADBCC;         /* Soft gold-cream border */
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
    
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s ease-out;
    
    --shadow-soft: 0 10px 30px rgba(46, 38, 32, 0.05);
    --shadow-medium: 0 15px 40px rgba(46, 38, 32, 0.1);
    --shadow-gold: 0 8px 24px rgba(200, 169, 110, 0.15);
    
    --max-width: 1440px;
    --header-height: 90px;
}

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

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

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

p {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* CONTAINER */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ROYAL SECTIONS & DIVIDERS */
section {
    padding: 8rem 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

.section-bg-cream {
    background-color: var(--color-bg-secondary);
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 3rem auto;
    gap: 15px;
    width: 100%;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    height: 1px;
    background: linear-gradient(to var(--direction, right), transparent, var(--color-gold), transparent);
    flex-grow: 1;
}

.gold-divider::before {
    --direction: left;
}

.gold-divider svg {
    fill: var(--color-gold);
    width: 24px;
    height: 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header span {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold-dark);
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--color-maroon);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-maroon);
    color: var(--color-text-white);
}

.btn-primary:hover {
    background-color: var(--color-maroon-hover);
    box-shadow: 0 10px 20px rgba(88, 17, 26, 0.15);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-gold);
    color: var(--color-text-main);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-primary);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-bg-primary);
}

.btn-gold:hover {
    background-color: var(--color-gold-dark);
    box-shadow: var(--shadow-gold);
}

/* SHARED HEADER/NAVBAR */
header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition-medium);
}

header.scrolled {
    background-color: rgba(252, 251, 249, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    height: 75px;
    border-bottom: 1px solid var(--color-border);
}

.navbar-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Design */
.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-maroon);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-gold);
    transition: var(--transition-medium);
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold-dark);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icons-group {
    display: flex;
    gap: 1rem;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    transition: var(--transition-medium);
}

.nav-icon:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 25px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-medium);
}

/* Mobile Nav Styles */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-bg-primary);
        box-shadow: -10px 0 30px rgba(46, 38, 32, 0.05);
        flex-direction: column;
        padding: 8rem 2.5rem 2rem 2.5rem;
        transition: var(--transition-medium);
        z-index: 999;
        gap: 1.8rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-actions .btn {
        display: none; /* Hide Enquiry btn in header on tablet/mobile */
    }
}

/* FLOATING ELEMENTS */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: var(--transition-medium);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* HERO SLIDER (index.html) */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.slide.active .slide-img-bg {
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--transition-slow), transform 1s var(--transition-slow);
    transition-delay: 0.4s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content span {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 1rem;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.15rem;
    color: rgba(252, 251, 249, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btn-group {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .hero-btn-group {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Slider Navigation */
.slider-arrows {
    position: absolute;
    bottom: 50px;
    right: 4rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(252, 251, 249, 0.3);
    background-color: transparent;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-medium);
}

.arrow:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(252, 251, 249, 0.05);
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 4rem;
    z-index: 10;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(252, 251, 249, 0.4);
    cursor: pointer;
    transition: var(--transition-medium);
}

.dot.active {
    background-color: var(--color-gold);
    transform: scale(1.4);
}

@media (max-width: 768px) {
    .slider-arrows {
        right: 1.5rem;
        bottom: 30px;
    }
    .slider-dots {
        left: 1.5rem;
        bottom: 30px;
    }
}

/* STATS BAR */
.stats-bar {
    background-color: var(--color-maroon);
    padding: 3rem 0;
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    color: var(--color-text-white);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 0.3rem;
}

.stat-item p {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(252, 251, 249, 0.7);
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
    }
    .stat-item h3 {
        font-size: 2.2rem;
    }
}

/* ABOUT PREVIEW */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-preview-img-container {
    position: relative;
    border: 1px solid var(--color-border);
    padding: 1.2rem;
    background-color: var(--color-bg-primary);
}

.about-preview-img-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
    z-index: 1;
}

.about-preview-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-medium);
}

.about-preview-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-preview-content .subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold-dark);
    margin-bottom: 0.5rem;
}

.about-preview-content h2 {
    font-size: 2.75rem;
    color: var(--color-maroon);
    margin-bottom: 1.8rem;
}

.about-preview-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.about-preview-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-item span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-main);
}

@media (max-width: 992px) {
    .about-preview {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-preview-img {
        height: 380px;
    }
}

/* CATEGORIES GRID */
.categories-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    padding: 0.8rem;
    position: relative;
    transition: var(--transition-medium);
    cursor: pointer;
    display: block;
}

.category-card-inner {
    position: relative;
    overflow: hidden;
    height: 340px;
}

.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 23, 19, 0.9) 10%, rgba(30, 23, 19, 0.2) 60%, rgba(30, 23, 19, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition-medium);
}

.category-card-content {
    color: var(--color-text-white);
    transform: translateY(15px);
    transition: transform var(--transition-medium);
}

.category-card h3 {
    font-size: 1.6rem;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.85rem;
    color: rgba(252, 251, 249, 0.75);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.category-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.category-card:hover .category-card-img {
    transform: scale(1.08);
}

.category-card:hover .category-card-content {
    transform: translateY(0);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(88, 17, 26, 0.95) 20%, rgba(88, 17, 26, 0.4) 70%, rgba(88, 17, 26, 0) 100%);
}

.category-card:hover p {
    opacity: 1;
}

/* WHY CHOOSE US */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.why-card {
    text-align: center;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    padding: 3rem 2rem;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-gold-dark);
    background-color: var(--color-bg-secondary);
    transition: var(--transition-medium);
}

.why-icon-container svg {
    width: 32px;
    height: 32px;
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--color-maroon);
    margin-bottom: 0.8rem;
}

.why-card p {
    font-size: 0.88rem;
}

.why-card:hover {
    border-color: var(--color-maroon);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.why-card:hover .why-icon-container {
    background-color: var(--color-maroon);
    color: var(--color-bg-primary);
    border-color: var(--color-maroon);
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* TESTIMONIALS CAROUSEL */
.testimonials {
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 320px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.8s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    z-index: 2;
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-gold-light);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--color-maroon);
}

.testimonial-author span {
    font-weight: 300;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1.3rem;
    }
    .testimonials-slider {
        height: 400px;
    }
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.test-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: var(--transition-medium);
}

.test-dot.active {
    background-color: var(--color-gold-dark);
    transform: scale(1.4);
}

/* CTA BANNER SECTION */
.cta-banner-section {
    padding: 0;
}

.cta-banner {
    background: linear-gradient(rgba(88, 17, 26, 0.92), rgba(88, 17, 26, 0.92)), url('../assets/hero_palace.jpg') center/cover;
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    padding: 6rem 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--color-bg-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(252, 251, 249, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 2.2rem;
    }
}

/* ABOUT PAGE (about.html) */
.page-banner {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 5rem;
    background: linear-gradient(rgba(30, 23, 19, 0.8), rgba(30, 23, 19, 0.8)), url('../assets/hero_palace.jpg') center/cover;
    color: var(--color-text-white);
    text-align: center;
    border-bottom: 1px solid var(--color-gold);
}

.page-banner span {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.8rem;
}

.page-banner h1 {
    font-size: 3.5rem;
}

/* Story section split */
.about-heritage {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-heritage-content h2 {
    font-size: 2.5rem;
    color: var(--color-maroon);
    margin-bottom: 1.5rem;
}

.about-heritage-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.heritage-accent-box {
    border-left: 2px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-text-main);
}

/* Mission, Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.mv-card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.mv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: var(--color-gold);
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--color-maroon);
    margin-bottom: 1.2rem;
}

@media (max-width: 992px) {
    .about-heritage {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline/Milestones */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--color-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--color-bg-primary);
    border: 2px solid var(--color-gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left-item {
    left: 0;
}

.right-item {
    left: 50%;
}

.right-item::after {
    left: -8px;
}

.timeline-content {
    padding: 2rem;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.timeline-content .year {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-maroon);
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item::after {
        left: 23px;
        right: auto;
    }
    .right-item {
        left: 0%;
    }
}

/* PRODUCTS PAGE (products.html) */
.catalog-section {
    padding: 6rem 0 8rem 0;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
}

/* Filter Sidebar */
.filter-sidebar {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    padding: 2.5rem 1.8rem;
    align-self: start;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.filter-sidebar h3 {
    font-size: 1.4rem;
    color: var(--color-maroon);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.8rem;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.filter-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--color-maroon);
    background-color: var(--color-bg-secondary);
    font-weight: 500;
}

.mobile-filter-container {
    display: none;
    margin-bottom: 2rem;
}

.mobile-filter-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-main);
}

@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        display: none;
    }
    .mobile-filter-container {
        display: block;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
    transition: var(--transition-medium);
}

.product-img-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #EEE;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 23, 19, 0.4);
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-gold-dark);
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    z-index: 5;
}

.product-badge.new {
    background-color: var(--color-maroon);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-material {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.product-card h3 {
    font-size: 1.35rem;
    color: var(--color-text-main);
    margin-bottom: 0.8rem;
}

.product-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.product-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Load More Container */
.load-more-container {
    text-align: center;
    margin-top: 4rem;
}

/* PRODUCT DETAIL PAGE (product-detail.html) */
.detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    margin-bottom: 8rem;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-view {
    height: 500px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.main-image-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnails-strip {
    display: flex;
    gap: 1rem;
}

.thumbnail-img {
    width: 90px;
    height: 90px;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-fast);
    overflow: hidden;
}

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

.thumbnail-img.active,
.thumbnail-img:hover {
    border-color: var(--color-maroon);
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-info .category-badge {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.detail-info h1 {
    font-size: 3rem;
    color: var(--color-maroon);
    margin-bottom: 1.5rem;
}

.meta-table {
    margin: 2rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.meta-label {
    font-weight: 500;
    color: var(--color-text-main);
}

.meta-value {
    color: var(--color-text-muted);
}

.detail-description {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.detail-cta-group {
    display: flex;
    gap: 1.5rem;
}

.detail-cta-group .btn {
    flex: 1;
}

@media (max-width: 992px) {
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
@media (max-width: 768px) {
    .detail-cta-group {
        flex-direction: column;
    }
}

/* Related Products Carousel */
.related-products {
    border-top: 1px solid var(--color-border);
    padding-top: 6rem;
}

/* GALLERY / PROJECTS PAGE (gallery.html) */
.gallery-layout {
    columns: 3 350px;
    column-gap: 2rem;
}

.gallery-item {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    padding: 0.8rem;
    margin-bottom: 2rem;
    break-inside: avoid;
    transition: var(--transition-medium);
    cursor: pointer;
    position: relative;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform var(--transition-slow);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(88, 17, 26, 0.9);
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: var(--color-text-white);
}

.gallery-item-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.gallery-item-overlay p {
    color: rgba(252, 251, 249, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.gallery-item:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

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

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

/* LIGHTBOX MODAL */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 23, 19, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 3px solid var(--color-gold);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--color-text-white);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-white);
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    transition: var(--transition-fast);
}

.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--color-gold);
}

@media (max-width: 992px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* CONTACT PAGE (contact.html) & ENQUIRY */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    color: var(--color-maroon);
    margin-bottom: 1.2rem;
    position: relative;
}

.contact-block h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
}

.contact-block p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-main);
    transition: var(--transition-medium);
}

.social-icon:hover {
    background-color: var(--color-maroon);
    color: var(--color-bg-primary);
    border-color: var(--color-maroon);
    transform: translateY(-3px);
}

/* LUXURY FORM styling */
.enquiry-form-container {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    padding: 4rem 3rem;
}

.enquiry-form-container h3 {
    font-size: 2rem;
    color: var(--color-maroon);
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-main);
}

.form-control {
    padding: 1rem 1.2rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-maroon);
    box-shadow: 0 0 10px rgba(88, 17, 26, 0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .enquiry-form-container {
        padding: 3rem 1.5rem;
    }
}

/* MAP WRAPPER */
.map-section {
    padding: 0;
    height: 480px;
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* PROCESS TIMELINE */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::after {
    content: '';
    position: absolute;
    top: 55px;
    left: 12%;
    width: 76%;
    height: 1px;
    background-color: var(--color-border);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-maroon);
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
    border: 3px solid var(--color-gold);
    box-shadow: var(--shadow-soft);
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--color-maroon);
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.9rem;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .process-grid::after {
        display: none;
    }
}

/* FOOTER */
footer {
    background-color: var(--color-bg-dark);
    color: rgba(252, 251, 249, 0.7);
    padding: 6rem 0 3rem 0;
    border-top: 1px solid var(--color-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-about h3 {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(252, 251, 249, 0.65);
    margin-bottom: 1.8rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--color-text-white);
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(200, 169, 110, 0.3);
    background-color: rgba(252, 251, 249, 0.03);
    color: var(--color-text-white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.newsletter-btn {
    padding: 0 1.5rem;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background-color: var(--color-gold-dark);
    color: var(--color-text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(252, 251, 249, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(252, 251, 249, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.footer-socials a:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* FADE-IN SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--transition-slow), transform 1s var(--transition-slow);
}

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