/* ========================================
   CHANDAK AGENCIES - STYLESHEET
   Premium Minimal Business Website
   ======================================== */

/* Root Variables */
:root {
    /* Global design system */
    --beige: #F2E6D8;
    --black: #0F0F0F;
    --card-black: #1A1A1A;
    --red: #7A1E2C;
    --dark-red: #5F1521;
    --gold: #C6A75E;

    /* Semantic tokens */
    --bg-primary: var(--beige);
    --bg-secondary: #eadbca;
    --text-primary: var(--black);
    --text-secondary: #2b2b2b;
    --accent: var(--red);
    --dark: var(--black);
    --text-muted: #3a3a3a;

    /* compatibility / legacy mapping */
    --base-bg: var(--bg-primary);
    --secondary-bg: var(--bg-secondary);
    --accent-color: var(--accent);
    --accent-hover: var(--dark-red);
    --border-color: #d7c6b3;
    --light-bg: #f6ecdf;
    --card-bg-dark: var(--card-black);
    --secondary-color: var(--bg-secondary);
    --primary-color: var(--text-primary);
    --logo-red: var(--accent);

    /* Spacing system */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --section-padding: 100px;

    /* Effects */
    --shadow: 0 6px 18px rgba(17, 17, 17, 0.08);
    --shadow-lg: 0 14px 32px rgba(17, 17, 17, 0.16);
    --transition: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--beige);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

section {
    padding: var(--section-padding) 0;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    margin-top: 1rem;
    will-change: transform;
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--dark);
    color: var(--bg-primary);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
}

/* ========================================
   NAVIGATION BAR
   ======================================== */

.navbar {
    background-color: #c7b198;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.navbar-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 20px;
    position: relative;
    max-width: 100%;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.015em;
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand:hover {
    opacity: 0.8;
}

.logo-img {
    height: 92px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

.brand-block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.brand-name {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 4px;
    margin-bottom: 4px;
}

.brand-tagline {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--accent-color);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 0.3rem;
    transition: color 0.25s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(193, 18, 31, 0.22) 0%, rgba(193, 18, 31, 0) 42%),
        radial-gradient(circle at 16% 82%, rgba(198, 167, 94, 0.12) 0%, rgba(198, 167, 94, 0) 36%),
        linear-gradient(135deg, #141414 0%, #221316 48%, #2b161a 100%);
    min-height: 430px;
    display: flex;
    align-items: flex-start;
    position: relative;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(15, 15, 15, 0.52) 0%, rgba(15, 15, 15, 0.32) 55%, rgba(15, 15, 15, 0.24) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    width: 100%;
    min-height: 430px;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.hero-overlay::after {
    content: none;
}

.hero .container {
    max-width: 1240px;
    width: 100%;
    padding: 0 var(--space-5) 0 12px;
}

.hero-content {
    max-width: 720px;
    padding: 24px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    animation: fadeIn 0.75s ease;
}

.hero-logo {
    height: 122px;
    width: auto;
    max-width: 330px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.03);
}

.hero-kicker {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(242, 230, 216, 0.95);
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-headline {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.2rem, 5.4vw, 3.7rem);
    line-height: 1.06;
    max-width: 760px;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.03rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    max-width: 620px;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.24);
}

.hero-meta {
    display: block;
    margin: 8px 0 6px;
}

.hero-meta span {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 8px 8px 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 500;
}

.trust-bar {
    background: #5b3a29;
    color: #f3e7d8;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.trust-bar-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
}

.trust-icon {
    color: #d8b070;
    font-size: 0.95rem;
    line-height: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ========================================
   INTRODUCTION SECTION
   ======================================== */

.intro {
    padding: var(--section-padding) 0;
    background-color: var(--base-bg);
}

.intro h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.intro h2::after,
.why-choose h2::after,
.products-preview h2::after,
.cta h2::after,
.leadership h2::after,
.core-values h2::after,
.faq h2::after,
.category-header h2::after,
.bulk-orders h2::after,
.page-header h1::after {
    left: 50%;
    transform: translateX(-50%);
}

.intro-subtitle {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.intro-card {
    background: var(--secondary-bg);
    color: var(--text-primary);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--accent-color);
}

.intro-card h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.intro-card p {
    color: var(--text-secondary);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose {
    padding: var(--section-padding) 0;
    background-color: var(--secondary-bg);
}

.why-choose h2 {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: var(--base-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

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

.feature h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-secondary);
}

/* ========================================
   PRODUCTS PREVIEW SECTION
   ======================================== */

.products-preview {
    padding: var(--section-padding) 0;
    background-color: var(--base-bg);
}

.products-preview h2 {
    text-align: center;
}

.products-cta {
    display: block;
    width: fit-content;
    margin: 34px auto 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--secondary-bg);
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 15, 15, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--light-bg);
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-primary);
}

.product-card p {
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.product-card .btn {
    margin: 1rem 1.5rem;
    width: calc(100% - 3rem);
}

/* ========================================
   CALL TO ACTION SECTION
   ======================================== */

.cta {
    background: var(--base-bg);
    color: var(--text-primary);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(15, 15, 15, 0.08);
    margin-bottom: 0;
}

.cta h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 0.6rem;
}

.page-header h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent);
    transform: translateX(-50%);
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.page-header .brand-portfolio-showcase {
    margin-top: 2rem;
    margin-bottom: 0;
    max-width: 1180px;
}

.page-header .brand-portfolio-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* ========================================
   ABOUT VIDEO SECTION
   ======================================== */

.about-intro {
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.about-intro-split {
    min-height: 430px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    background: #5b3a29;
}

.about-intro-text h1 {
    color: #f3e5d7;
    position: relative;
    display: inline-block;
    padding-bottom: 0.6rem;
    margin-bottom: 1.2rem;
    font-size: clamp(2.2rem, 4.6vw, 3.8rem);
}

.about-intro-text h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent);
}

.about-intro-text p {
    color: #e4c48a;
    font-size: 1.24rem;
    margin: 0;
    max-width: 560px;
    line-height: 1.65;
}

.about-intro-text {
    padding: 56px clamp(22px, 5vw, 82px) 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-media {
    position: relative;
    border-top-left-radius: 260px;
    border-bottom-left-radius: 260px;
    overflow: hidden;
    min-height: 430px;
    background: #000;
}

.about-video-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

/* ========================================
   COMPANY OVERVIEW SECTION
   ======================================== */

.company-overview {
    padding: var(--section-padding) 0;
    background-color: var(--base-bg);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
}

.overview-text h2 {
    margin-bottom: 1.5rem;
}

.overview-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.gst-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0.3rem;
    margin-bottom: 0;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 15, 15, 0.14);
    background: rgba(242, 230, 216, 0.62);
    color: var(--text-primary);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat {
    background: var(--secondary-bg);
    color: var(--text-primary);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
}

/* ========================================
   MISSION & VISION SECTION
   ======================================== */

.mission-vision {
    padding: var(--section-padding) 0;
    background-color: var(--secondary-bg);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
}

.mission-card,
.vision-card {
    background: var(--base-bg);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-card h2,
.vision-card h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.mission-card p,
.vision-card p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   LEADERSHIP SECTION
   ======================================== */

.leadership {
    padding: var(--section-padding) 0;
    background-color: var(--base-bg);
}

.leadership h2 {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.team-member {
    background: var(--secondary-bg);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(15, 15, 15, 0.06);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-photo-wrap {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.15rem;
    padding: 7px;
    border-radius: 50%;
    background: #e7d8c4;
    border: 2px solid rgba(193, 18, 31, 0.14);
    box-shadow: 0 10px 25px rgba(15, 15, 15, 0.12);
}

.member-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 22%;
    background: #d8c6b0;
}

.photo-nand {
    object-position: center 20%;
}

.photo-arun {
    object-position: center 18%;
}

.photo-jayant {
    object-position: center 20%;
}

.photo-anand {
    object-position: center 23%;
}

.team-member h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-secondary);
}

/* ========================================
   CORE VALUES SECTION
   ======================================== */

.core-values {
    padding: var(--section-padding) 0;
    background-color: var(--secondary-bg);
}

.core-values h2 {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.value-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
}

/* ========================================
   PRODUCT CATEGORY SECTION
   ======================================== */

.product-category {
    padding: var(--section-padding) 0;
    background-color: var(--base-bg);
}

.product-category.alt-bg {
    background-color: var(--secondary-bg);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    color: var(--text-primary);
}

.category-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.catalog-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.catalog-highlight-note {
    margin: 1.7rem auto 1rem;
    max-width: 880px;
    text-align: center;
    font-size: 1.05rem;
}

.catalog-highlight-card {
    background: var(--bg-primary);
    border: 1px solid rgba(15, 15, 15, 0.12);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.catalog-highlight-media {
    width: 100%;
    height: clamp(250px, 30vw, 360px);
    border-radius: 10px;
    overflow: hidden;
    background: #efe3d4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-highlight-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.catalog-highlight-card h3 {
    margin: 0.9rem 0 0.1rem;
    font-size: 1.1rem;
    text-align: center;
}

@media (max-width: 1100px) {
    .catalog-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.brand-portfolio-showcase {
    margin: 0 auto 3.5rem;
    max-width: 1120px;
}

.brand-portfolio-frame {
    margin: 0;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(145deg, #f8eee2 0%, #e3d2be 100%);
    border: 1px solid rgba(15, 15, 15, 0.12);
    box-shadow: 0 18px 42px rgba(15, 15, 15, 0.18);
}

.brand-portfolio-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    filter: saturate(1.06) contrast(1.04);
}

.product-item {
    background: var(--secondary-bg);
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-category.alt-bg .product-item {
    background: var(--bg-secondary);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 15, 15, 0.12);
}

.product-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-primary);
}

.product-item p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    justify-content: center;
}

.spec {
    background-color: rgba(15, 15, 15, 0.08);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-item .price {
    padding: 0 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

/* ========================================
   BULK ORDERS SECTION
   ======================================== */

.bulk-orders {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-align: center;
}

.bulk-orders h2 {
    color: var(--text-primary);
}

.bulk-orders p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.bulk-orders .features-grid {
    background: none;
    margin: 2rem 0;
}

.bulk-orders .feature {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-top: none;
    border-left: 3px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

.bulk-orders .feature h3 {
    color: var(--accent-color);
}

.bulk-orders .feature p {
    color: var(--text-secondary);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-info {
    padding: 60px 0;
    background-color: var(--secondary-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-section {
    padding: var(--section-padding) 0;
    background-color: var(--base-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.enquiry-panel {
    height: 100%;
}

.contact-right-column {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.contact-map-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-map-panel .map-container {
    margin-bottom: 0.8rem;
    min-height: 300px;
    flex: 1;
}

.contact-panel {
    background: var(--secondary-bg);
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-panel h3 {
    margin-bottom: 0.75rem;
}

.contact-lines p {
    margin-bottom: 0.75rem;
    line-height: 1.75;
}

.contact-form-wrapper h2,
.map-wrapper h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background-color: var(--base-bg);
    color: var(--text-primary);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(177, 18, 38, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.form-group.checkbox input {
    margin-right: 0.5rem;
    width: auto;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.form-group.checkbox label {
    margin-bottom: 0;
    cursor: pointer;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(177, 18, 38, 0.08);
    color: var(--text-primary);
    display: block;
    border: 1px solid var(--accent);
}

.form-message.error {
    background-color: rgba(177, 18, 38, 0.12);
    color: var(--text-primary);
    display: block;
    border: 1px solid var(--accent);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.map-container iframe {
    filter: none;
}

.map-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: var(--section-padding) 0;
    background-color: var(--secondary-bg);
}

.faq h2 {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--base-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-secondary);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: #c7b198;
    color: var(--text-primary);
    padding: 34px 0 14px;
    border-top: 1px solid rgba(15, 15, 15, 0.16);
}

.footer .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 1.1fr 0.9fr;
    gap: 1.4rem;
    margin-bottom: 1.2rem;
    align-items: start;
}

.footer-content .footer-section:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    justify-self: start;
    margin-left: 0;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 0.35rem;
}

.footer-social-wrap {
    margin-top: 10px;
}

.footer-social-title {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social-icon-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--accent);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-social-icon-link:hover {
    transform: translateY(-2px) scale(1.06);
    background: var(--accent-hover);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.25rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-logo {
    height: 94px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    margin-bottom: 0;
    display: block;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(15, 15, 15, 0.14);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-credit {
    text-align: left;
}

.footer-copy {
    text-align: right;
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--accent-hover);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 390px;
    }

    .hero-overlay {
        min-height: 390px;
    }

    .hero-content {
        max-width: 100%;
        padding: 18px 0 24px;
    }

    .hero .container {
        padding: 0 15px 0 10px;
    }

    .hero-overlay::after {
        display: none;
    }

    .hero-logo {
        height: 104px;
    }

    .hero-kicker {
        font-size: 0.9rem;
    }

    .hero-headline {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .hero-description {
        font-size: 1rem;
        max-width: 95%;
    }

    .hero-meta span {
        font-size: 0.82rem;
    }

    .trust-bar-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .trust-item {
        font-size: 0.84rem;
    }

    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        min-height: 82px;
        padding: 12px 24px;
    }

    .nav-brand {
        gap: 8px;
        font-size: 1.35rem;
        position: static;
        transform: none;
    }

    .logo-img {
        height: 72px;
    }

    .brand-name {
        font-size: 1.18rem;
        padding-bottom: 3px;
        margin-bottom: 3px;
    }

    .brand-tagline {
        font-size: 0.64rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--beige);
        flex-direction: column;
        align-items: center;
        padding: 1.2rem 1rem 1.4rem;
        gap: 1rem;
        border-top: 1px solid rgba(242, 230, 216, 0.14);
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 0.25rem 0;
    }

    .hamburger {
        display: flex;
        right: 24px;
        top: 50%;
    }

    .overview-content {
        grid-template-columns: 1fr;
    }

    .about-intro-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about-intro-text h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .about-intro-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    .about-intro-text {
        padding: 36px 22px 28px;
    }

    .about-intro-media {
        min-height: 260px;
        border-top-left-radius: 165px;
        border-bottom-left-radius: 0;
    }

    .overview-stats {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        padding: 40px 0;
    }

    .mission-vision .container {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        padding: 1.5rem;
    }

    .contact-right-column {
        gap: 1rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .catalog-highlight-grid {
        grid-template-columns: 1fr;
    }

    .brand-portfolio-showcase {
        margin-bottom: 2.8rem;
    }

    .brand-portfolio-frame {
        padding: 10px;
        border-radius: 14px;
    }

    .brand-portfolio-image {
        border-radius: 10px;
    }

    .page-header .brand-portfolio-image { height: auto; }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-social-icons {
        gap: 12px;
    }

    .footer-social-icon-link {
        width: 40px;
        height: 40px;
    }

    .footer-social-icon {
        width: 22px;
        height: 22px;
    }

    .footer-credit,
    .footer-copy {
        text-align: center;
    }

    .cta {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero {
        min-height: 340px;
    }

    .hero-overlay {
        min-height: 340px;
    }

    .hero-logo {
        height: 90px;
    }

    .hero-content {
        padding: 14px 0 20px;
        gap: 12px;
    }

    .hero-kicker {
        font-size: 0.8rem;
        letter-spacing: 0.07em;
    }

    .hero-headline {
        font-size: 1.85rem;
        line-height: 1.12;
    }

    .about-intro-text h1 {
        font-size: 1.7rem;
    }

    .about-intro-text {
        padding: 30px 16px 22px;
    }

    .about-intro-media {
        min-height: 210px;
        border-top-left-radius: 120px;
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .hero-meta span {
        font-size: 0.76rem;
        padding: 5px 10px;
    }

    .hero .btn {
        width: 100%;
        margin-top: 4px;
    }

    .trust-bar {
        padding: 12px 0;
    }

    .trust-bar-content {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .trust-item {
        justify-content: flex-start;
        font-size: 0.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .nav-brand {
        font-size: 1.12rem;
        gap: 6px;
    }

    .brand-name {
        font-size: 1.04rem;
    }

    .brand-tagline {
        font-size: 0.58rem;
    }

    .logo-img {
        height: 62px;
    }

    .navbar-container {
        padding: 10px 16px;
    }

    .intro {
        padding: 40px 0;
    }

    .why-choose {
        padding: 40px 0;
    }

    .products-preview {
        padding: 40px 0;
    }

    .brand-portfolio-showcase {
        margin-bottom: 2.2rem;
    }

    .brand-portfolio-frame {
        padding: 8px;
        border-radius: 12px;
        box-shadow: 0 12px 28px rgba(15, 15, 15, 0.14);
    }

    .page-header .brand-portfolio-image { height: auto; }

    .stat h3 {
        font-size: 2rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .member-photo-wrap {
        width: 138px;
        height: 138px;
        padding: 5px;
    }

    .contact-form {
        padding: 1.25rem;
    }

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

    .footer-content .footer-section:first-child {
        align-items: flex-start;
        gap: 8px;
    }

    .footer-logo {
        height: 80px;
        max-width: 180px;
    }

    .footer-section p {
        font-size: 0.88rem;
    }

    .footer-social-title {
        font-size: 0.86rem;
        margin-bottom: 7px;
    }

    .footer-social-icons {
        gap: 10px;
    }

    .footer-social-icon-link {
        width: 36px;
        height: 36px;
    }

    .footer-social-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 390px) {
    .container {
        padding: 0 12px;
    }

    .hero-headline {
        font-size: 1.65rem;
        line-height: 1.14;
    }

    .hero-description {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .hero-meta span {
        font-size: 0.72rem;
        padding: 4px 9px;
        margin: 0 6px 6px 0;
    }

    h2 {
        font-size: 1.28rem;
    }

    p,
    .footer-section p {
        font-size: 0.86rem;
        line-height: 1.52;
    }

    .btn {
        font-size: 0.9rem;
        padding: 9px 16px;
    }

    .contact-panel {
        padding: 1.15rem;
    }

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

    .form-input {
        font-size: 0.95rem;
        padding: 0.68rem;
    }

    .footer {
        padding: 26px 0 12px;
    }

    .footer-content {
        gap: 0.85rem;
    }

    .footer-social-title {
        font-size: 0.82rem;
    }

    .footer-social-icon-link {
        width: 34px;
        height: 34px;
    }

    .footer-social-icon {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

::-webkit-scrollbar {
    width: 10px;
}

/* ==========================
   BRANDS PAGE SPECIFIC
   ==========================
*/

.brands-hero {
    padding: 100px 0;
    background: var(--bg-primary);
    text-align: center;
}

.brands-hero h1 {
    font-size: 3rem;
    color: var(--text-primary);
}

.brands-hero .lead {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.hero-divider {
    width: 100px;
    height: 6px;
    margin: 18px auto 0;
    border-radius: 4px;
    background: var(--accent);
}

.legacy-section .legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 18px;
    margin-top: 2rem;
}

.legacy-item {
    background: var(--secondary-bg);
    color: var(--text-primary);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.legacy-item h3 { margin-top: 8px; font-size: 1rem; }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.brand-card {
    background: var(--secondary-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.brand-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background-color: var(--bg-secondary);
    display: block;
}

.brand-body {
    padding: 16px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.brand-body h3 { color: var(--text-primary); margin-bottom: 8px; }
.brand-body p { color: var(--text-muted); flex: 1 1 auto; }

.brand-body .btn {
    align-self: flex-start;
    margin-top: 12px;
    background-color: var(--accent);
    color: #ffffff;
    border: 1px solid var(--accent);
    transition: transform 0.3s ease, background-color 0.2s ease;
}

.brand-body .btn:hover { transform: scale(1.05); background-color: var(--accent-hover); }

.bulk-enquiry .contact-wrapper { display: grid; grid-template-columns: 1fr 420px; gap: 24px; align-items: start; }

.bulk-enquiry .contact-form { background: var(--secondary-bg); padding: 20px; border-radius: 8px; }

.bulk-enquiry .map-wrapper { background: var(--base-bg); padding: 20px; border-radius: 8px; box-shadow: var(--shadow); color: var(--text-primary); }

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

@media (max-width: 992px) {
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .bulk-enquiry .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .brands-grid { grid-template-columns: 1fr; }
    .brands-hero { padding: 60px 0; }
    .brands-hero h1 { font-size: 1.8rem; }
}

::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* ========================================
   GLOBAL SECTION TONE ALTERNATION
   ======================================== */
body section.section-light {
    background-color: var(--bg-primary);
}

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

/* ========================================
   GLOBAL TILE CONTRAST
   ======================================== */
body section.section-dark .intro-card,
body section.section-dark .product-card,
body section.section-dark .feature,
body section.section-dark .team-member,
body section.section-dark .value-card,
body section.section-dark .mission-card,
body section.section-dark .vision-card,
body section.section-dark .contact-panel,
body section.section-dark .faq-item,
body section.section-dark .info-card {
    background-color: var(--bg-primary);
    border: 1px solid rgba(15, 15, 15, 0.08);
}

body section.section-light .intro-card,
body section.section-light .product-card,
body section.section-light .feature,
body section.section-light .team-member,
body section.section-light .value-card,
body section.section-light .mission-card,
body section.section-light .vision-card,
body section.section-light .contact-panel,
body section.section-light .faq-item,
body section.section-light .info-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(15, 15, 15, 0.08);
}
