/* ===== CSS Variables ===== */
:root {
    --antique-gold: #C58A20;
    --rich-gold: #D9A441;
    --deep-purple: #26113F;
    --warm-ivory: #FFF8EA;
    --soft-champagne: #F7EBD2;
    --ruby: #B51F45;
    --royal-blue: #1261A0;
    --emerald: #176B4D;
    --orange: #C96512;
    --purple-accent: #6B2D8C;
    --teal: #087A8C;
    --text-dark: #1F1A2E;
    --text-medium: #4A4458;
    --text-light: #6E6680;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 30px rgba(38, 17, 63, 0.08);
    --shadow-medium: 0 8px 40px rgba(38, 17, 63, 0.12);
    --shadow-card: 0 12px 40px rgba(38, 17, 63, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-medium);
    background-color: var(--warm-ivory);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-purple);
    margin: 0 0 1rem;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--antique-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--rich-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

address {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

/* ===== Typography Helpers ===== */
.accent {
    color: var(--antique-gold);
    font-style: italic;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--antique-gold);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: var(--antique-gold);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--antique-gold), var(--rich-gold));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 138, 32, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 138, 32, 0.4);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--deep-purple);
}

.btn-gold {
    background: var(--rich-gold);
    color: var(--deep-purple);
}

.btn-gold:hover {
    background: var(--antique-gold);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 234, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 138, 32, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
    background: rgba(255, 248, 234, 0.98);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--deep-purple);
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-abbr {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--antique-gold);
    letter-spacing: 0.05em;
}

.logo-name {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--deep-purple);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Phone icon: mirrored and consistent colour across all sections */
.fa-phone-alt {
    display: inline-block;
    transform: scaleX(-1);
    color: var(--rich-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-call {
    background: linear-gradient(135deg, var(--deep-purple), #3d1f5e);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    display: none;
}

.call-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.call-number {
    font-size: 0.85rem;
    font-weight: 700;
}

.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    background: var(--soft-champagne);
    z-index: 1002;
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--deep-purple);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 248, 234, 0.98);
    backdrop-filter: blur(16px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--deep-purple);
    font-weight: 600;
}

.mobile-nav-link:hover {
    color: var(--antique-gold);
}

.mobile-call {
    margin-top: 2rem;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

/* ===== Category Sidebar / V-Shaped Sub-Menu ===== */
.category-sidebar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 220px;
    height: calc(100vh - 80px);
    background: rgba(255, 248, 234, 0.96);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(197, 138, 32, 0.12);
    z-index: 900;
    overflow-y: auto;
    padding: 1.5rem 0.75rem;
    box-shadow: 2px 0 20px rgba(38, 17, 63, 0.06);
}

.category-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.category-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0.6rem 0.5rem;
    border-radius: var(--radius-md);
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
}

.category-item:hover,
.category-item:focus {
    background: rgba(197, 138, 32, 0.08);
    color: var(--deep-purple);
    transform: translateX(4px);
}

.category-item:focus-visible {
    outline: 2px solid var(--rich-gold);
    outline-offset: 2px;
}

.category-item.active {
    background: linear-gradient(135deg, rgba(197, 138, 32, 0.12), rgba(217, 164, 65, 0.08));
    color: var(--deep-purple);
    box-shadow: inset 3px 0 0 var(--antique-gold);
}

.category-item.active .category-icon {
    background: var(--antique-gold);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(197, 138, 32, 0.25);
}

.category-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 138, 32, 0.1);
    color: var(--antique-gold);
    font-size: 1rem;
    margin-bottom: 0.35rem;
    transition: var(--transition);
    border: 1px solid rgba(197, 138, 32, 0.15);
}

.category-item:hover .category-icon {
    background: rgba(197, 138, 32, 0.18);
    transform: scale(1.08);
}

.category-label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

/* V-shaped chevron between category items */
.category-item:not(:last-child)::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--antique-gold);
    margin-top: 0.3rem;
    opacity: 0.45;
}

main,
.footer {
    margin-left: 220px;
}

@media (min-width: 992px) {
    .category-sidebar {
        width: 240px;
        padding: 1.25rem 1rem;
    }

    .category-icon {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
    }

    .category-label {
        font-size: 0.875rem;
    }

    main,
    .footer {
        margin-left: 240px;
    }
}

@media (min-width: 640px) and (max-width: 991px) {
    .category-sidebar {
        width: 180px;
        padding: 1.25rem 0.5rem;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .category-label {
        font-size: 0.75rem;
    }

    main,
    .footer {
        margin-left: 180px;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(38, 17, 63, 0.82), rgba(38, 17, 63, 0.65));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem 1.5rem;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.hero-logo-wrap {
    margin-bottom: 1.5rem;
}

.hero-logo {
    height: 150px;
    width: auto;
    margin: 0;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.hero-title .accent {
    font-family: var(--font-script);
    font-weight: 400;
    font-size: 1.15em;
    color: var(--rich-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 0 2rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rich-gold), transparent);
}

.lotus-icon {
    width: 36px;
    height: 36px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--rich-gold);
    border-radius: 2px;
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ===== Home Sub-Menu / Quick Links ===== */
.home-menu {
    background: linear-gradient(180deg, var(--warm-ivory) 0%, #FFFFFF 100%);
}

.home-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.home-menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197, 138, 32, 0.18);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-decoration: none;
}

.home-menu-card:hover,
.home-menu-card:focus {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--rich-gold);
    background: linear-gradient(180deg, #FFFFFF 0%, var(--soft-champagne) 100%);
}

.home-menu-card:focus-visible {
    outline: 2px solid var(--rich-gold);
    outline-offset: 3px;
}

.home-menu-icon {
    width: 58px;
    height: 58px;
    padding: 0.85rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(197, 138, 32, 0.1);
    border: 1px solid rgba(197, 138, 32, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.home-menu-card:hover .home-menu-icon {
    background: rgba(197, 138, 32, 0.18);
    transform: scale(1.05);
}

.home-lotus {
    width: 100%;
    height: 100%;
}

.home-menu-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--deep-purple);
    margin: 0 0 0.35rem;
    transition: var(--transition);
}

.home-menu-card:hover h3 {
    color: var(--antique-gold);
}

.home-menu-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 480px) {
    .home-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .home-menu-card {
        padding: 1.25rem 0.75rem;
    }

    .home-menu-icon {
        width: 48px;
        height: 48px;
        padding: 0.7rem;
    }

    .home-menu-card h3 {
        font-size: 1rem;
    }

    .home-menu-card p {
        font-size: 0.8rem;
    }
}

/* ===== About Section ===== */
.about {
    background: var(--warm-ivory);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.about-content {
    position: relative;
}

.about-content .lead {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--deep-purple);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.about-visual {
    position: absolute;
    top: -2rem;
    right: -1rem;
    width: 120px;
    height: 120px;
    opacity: 0.4;
    pointer-events: none;
}

.about-lotus {
    width: 100%;
    height: 100%;
    animation: slowRotate 30s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--antique-gold);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--soft-champagne);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--antique-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.highlight-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Services Section ===== */
.services {
    background: linear-gradient(180deg, var(--soft-champagne) 0%, var(--warm-ivory) 100%);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(38, 17, 63, 0.5) 100%);
}

.service-content {
    padding: 1.75rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    position: absolute;
    top: -28px;
    right: 1.75rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--antique-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 6px 20px rgba(197, 138, 32, 0.3);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-highlights {
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-highlights li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.service-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--antique-gold);
    font-weight: 700;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--deep-purple);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    align-self: flex-start;
}

.service-cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-cta:hover {
    color: var(--antique-gold);
    border-bottom-color: var(--antique-gold);
}

.service-cta:hover::after {
    transform: translateX(4px);
}

/* Service accent colors */
.service-card[data-accent="ruby"] .service-icon { background: var(--ruby); box-shadow: 0 6px 20px rgba(181, 31, 69, 0.3); }
.service-card[data-accent="blue"] .service-icon { background: var(--royal-blue); box-shadow: 0 6px 20px rgba(18, 97, 160, 0.3); }
.service-card[data-accent="emerald"] .service-icon { background: var(--emerald); box-shadow: 0 6px 20px rgba(23, 107, 77, 0.3); }
.service-card[data-accent="orange"] .service-icon { background: var(--orange); box-shadow: 0 6px 20px rgba(201, 101, 18, 0.3); }
.service-card[data-accent="purple"] .service-icon { background: var(--purple-accent); box-shadow: 0 6px 20px rgba(107, 45, 140, 0.3); }
.service-card[data-accent="teal"] .service-icon { background: var(--teal); box-shadow: 0 6px 20px rgba(8, 122, 140, 0.3); }

.service-card[data-accent="ruby"] { border-bottom: 4px solid var(--ruby); }
.service-card[data-accent="blue"] { border-bottom: 4px solid var(--royal-blue); }
.service-card[data-accent="emerald"] { border-bottom: 4px solid var(--emerald); }
.service-card[data-accent="orange"] { border-bottom: 4px solid var(--orange); }
.service-card[data-accent="purple"] { border-bottom: 4px solid var(--purple-accent); }
.service-card[data-accent="teal"] { border-bottom: 4px solid var(--teal); }

/* ===== Featured CTA ===== */
.featured-cta {
    padding: 5rem 0;
    background: var(--warm-ivory);
}

.cta-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(197, 138, 32, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--antique-gold), var(--rich-gold), var(--antique-gold));
}

.cta-ornament {
    margin-bottom: 1.5rem;
}

.ornament-svg {
    width: 180px;
    height: 54px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 1.75rem;
    font-size: 1.05rem;
}

/* ===== Why Us Section ===== */
.why-us {
    background: var(--deep-purple);
    color: rgba(255, 255, 255, 0.85);
}

.why-us .section-title,
.why-us .section-label {
    color: var(--white);
}

.why-us .section-label::before {
    background: var(--rich-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 138, 32, 0.2);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.feature-block:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--antique-gold);
    transform: translateY(-4px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(217, 164, 65, 0.15);
    color: var(--rich-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.feature-title {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.feature-block p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Process Section ===== */
.process {
    background: var(--warm-ivory);
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--antique-gold), var(--rich-gold), var(--antique-gold));
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    display: flex;
    align-items: flex-start;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--antique-gold), var(--rich-gold));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(197, 138, 32, 0.3);
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    flex: 1;
}

.timeline-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Gallery Section ===== */
.gallery {
    background: linear-gradient(180deg, var(--warm-ivory) 0%, var(--soft-champagne) 100%);
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    background: var(--white);
    border: 1px solid rgba(197, 138, 32, 0.2);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--deep-purple);
    color: var(--white);
    border-color: var(--deep-purple);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(38, 17, 63, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-category {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--warm-ivory);
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
    border-left: 4px solid var(--antique-gold);
}

.quote-icon {
    font-size: 1.75rem;
    color: var(--antique-gold);
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.testimonial-card cite {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--antique-gold);
    font-style: normal;
}

.testimonial-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 2rem;
}

/* ===== Strong CTA ===== */
.strong-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--deep-purple) 0%, #1a0b2e 100%);
    text-align: center;
}

.strong-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.strong-cta-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.25rem;
}

.strong-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.strong-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--warm-ivory);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-logo {
    height: 120px;
    width: auto;
    margin: 0 auto 1rem;
}

.contact-brand-name {
    font-size: 1.5rem;
    color: var(--deep-purple);
    margin-bottom: 0.25rem;
}

.tagline {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--antique-gold);
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--soft-champagne);
    color: var(--antique-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.enquiry-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-group label span {
    color: var(--ruby);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(197, 138, 32, 0.25);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--warm-ivory);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--antique-gold);
    box-shadow: 0 0 0 3px rgba(197, 138, 32, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: var(--soft-champagne);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 3rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-light);
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Footer ===== */
.footer {
    background: var(--deep-purple);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-brand-name {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.1rem;
}

.footer-brand-sub {
    color: var(--rich-gold);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links li,
.footer-contact p,
.footer-contact address {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--rich-gold);
}

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

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--antique-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.theme-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.theme-toggle-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0.5rem 0.35rem 0.35rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.toggle-track {
    position: relative;
    width: 38px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    transition: var(--transition);
}

.toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.theme-toggle[aria-pressed="true"] .toggle-track {
    background: var(--antique-gold);
}

.theme-toggle[aria-pressed="true"] .toggle-thumb {
    left: 20px;
}

.toggle-text {
    min-width: 86px;
    text-align: left;
}

/* ===== Floating Action Buttons ===== */
.floating-actions {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.fab:hover {
    transform: scale(1.1);
}

.fab-call {
    background: var(--antique-gold);
    color: var(--white);
}

.fab-call .fa-phone-alt {
    color: var(--white);
}

.fab-whatsapp {
    background: #25D366;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(38, 17, 63, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--antique-gold);
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox-prev {
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== Responsive - Tablet ===== */
@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

    .strong-cta-actions {
        flex-direction: row;
        justify-content: center;
    }

    .contact-actions {
        flex-wrap: nowrap;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Responsive - Desktop ===== */
@media (min-width: 992px) {
    .section {
        padding: 6rem 0;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .btn-call {
        display: inline-flex;
    }

    .header-container {
        height: 90px;
    }

    .logo-img {
        height: 68px;
    }

    .hero {
        padding-top: 90px;
    }

    .category-sidebar {
        top: 90px;
        height: calc(100vh - 90px);
    }

    .hero-logo {
        height: 200px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline {
        padding: 2rem 0;
    }

    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-items {
        gap: 3rem;
    }

    .timeline-item {
        padding-left: 0;
        width: 50%;
    }

    .timeline-item:nth-child(odd) {
        align-self: flex-start;
        padding-right: 70px;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        align-self: flex-end;
        padding-left: 70px;
    }

    .timeline-item:nth-child(odd) .timeline-marker {
        left: auto;
        right: -25px;
    }

    .timeline-item:nth-child(even) .timeline-marker {
        left: -25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 2fr 3fr;
        gap: 4rem;
    }

    .contact-brand {
        text-align: left;
    }

    .contact-logo {
        margin: 0 0 1rem;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 2fr 1fr;
        gap: 3rem;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Focus visible styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--antique-gold);
    outline-offset: 2px;
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .category-sidebar,
    .floating-actions,
    .scroll-indicator,
    .mobile-menu-toggle {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ===== Responsive - Mobile Category Menu ===== */
@media (max-width: 639px) {
    .category-sidebar {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        min-height: unset;
        margin-top: 0;
        border-right: none;
        border-bottom: 1px solid rgba(197, 138, 32, 0.12);
        box-shadow: 0 4px 12px rgba(38, 17, 63, 0.06);
        background: rgba(255, 248, 234, 0.98);
        padding: 0.35rem 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        z-index: 950;
    }

    .category-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .category-label {
        font-size: 0.65rem;
    }

    .category-item {
        padding: 0.35rem 0.4rem;
        min-width: 64px;
    }

    .hero {
        padding-top: 148px;
    }

    .category-sidebar::-webkit-scrollbar {
        display: none;
    }

    .category-menu {
        flex-direction: row;
        align-items: stretch;
        gap: 0.5rem;
        padding: 0 1rem;
        width: max-content;
        min-width: 100%;
    }

    .category-item {
        flex-direction: column;
        width: auto;
        min-width: 78px;
        padding: 0.65rem 0.5rem;
        border-radius: var(--radius-md);
    }

    .category-item:hover,
    .category-item:focus,
    .category-item.active {
        transform: none;
        box-shadow: none;
        background: linear-gradient(135deg, rgba(197, 138, 32, 0.12), rgba(217, 164, 65, 0.08));
    }

    .category-item.active {
        box-shadow: inset 0 -3px 0 var(--antique-gold);
    }

    .category-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }

    .category-label {
        font-size: 0.7rem;
    }

    /* Remove vertical chevrons in horizontal mode */
    .category-item:not(:last-child)::after {
        display: none;
    }

    main,
    .footer {
        margin-left: 0;
    }
}
