@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');

/* Base Styles & Typography */
:root {
    --primary-font: 'Playfair Display', serif;
    --secondary-font: 'Inter', sans-serif;
    --accent-font: 'Cormorant Garamond', serif;
    --cinzel-font: 'Cinzel', serif;

    --color-bg-light: #fdfcfb;
    --color-text-dark: #2a2a2a;
    --color-text-gray: #666;
    --color-accent: #a27b60;
    --color-accent-dark: #8b6f5d;
    --color-accent-light: #d6c5bb;
    --color-white: #ffffff;
    --color-border: #e0d8d3;
    --color-black: #000000;

    --section-spacing: clamp(50px, 8vw, 80px);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--secondary-font);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.bg-light {
    background-color: #faf9f7;
}

.text-gray {
    color: var(--color-text-gray);
}

.text-sm {
    font-size: 0.9rem;
}

.italic {
    font-style: italic;
}

.font-bold {
    font-weight: 600;
}

.section-padding {
    padding: var(--section-spacing) 0;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* Grid System */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Typography Classes */
.section-title {
    font-family: var(--accent-font);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-style: italic;
    color: var(--color-accent-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--color-text-gray);
    position: relative;
    display: inline-block;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--color-text-gray);
}

.section-subtitle::before {
    left: -40px;
}

.section-subtitle::after {
    right: -40px;
}

.section-subtitle-sm {
    font-family: var(--accent-font);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-text-gray);
    font-style: italic;
    letter-spacing: 1px;
}

.section-title-lg {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.section-title-sm {
    font-family: var(--primary-font);
    /* Matches Our Heritage */
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    text-transform: none;
    /* Removed uppercase to match Our Heritage */
    letter-spacing: normal;
    font-weight: 500;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--color-text-gray);
    font-style: italic;
    line-height: 1.8;
}

/* Buttons */
button {
    cursor: pointer;
    font-family: var(--secondary-font);
    font-weight: 500;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 15px 30px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(162, 123, 96, 0.35);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-border);
    padding: 12px 24px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary::after {
    content: '▼';
    font-size: 0.7rem;
}

.btn-secondary:hover {
    background-color: #f0ebe8;
    border-color: var(--color-accent-light);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--color-border);
    padding: 8px 20px;
    font-size: 0.8rem;
    color: var(--color-text-dark);
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    padding: 12px 30px;
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-accent-dark);
    transform: translateY(-2px);
}

/* ============================================
   HEADER (Split Navigation)
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 30px;
    flex: 1;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    font-family: var(--secondary-font);
    font-size: 0.85rem;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.nav-left a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: #fff;
    transition: background 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header-scrolled .nav-left a,
.header-scrolled .nav-right a {
    color: #333;
}

.header-scrolled .nav-left a.active::after {
    background: #000;
}

.header-scrolled .nav-left a:hover,
.header-scrolled .nav-right a:hover {
    color: #000;
}

/* Base Desktop Nav is hidden on desktop by default */
.desktop-nav {
    display: none;
    z-index: 999;
}

/* Logo Area */
.logo-area {
    position: relative;
    z-index: 10;
    margin: 0 30px;
}

.logo-link {
    display: block;
}

.logo-circle {
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 15px rgba(0, 0, 0, 0.02);
    transform: translateY(20px);
    transition: var(--transition-smooth);
    overflow: hidden;
    padding: 15px;
    border: 1px solid rgba(162, 123, 96, 0.2);
    /* Subtle accent border */
}

.header-scrolled .logo-circle {
    width: 90px;
    height: 90px;
    transform: translateY(0);
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    /* Masks any square background edges */
    mix-blend-mode: multiply;
    /* Blends logo background with circle */
    transition: transform 0.4s ease;
}

.logo-link:hover .logo-circle {
    transform: translateY(15px) scale(1.05);
    border-color: var(--color-accent);
}

.header-scrolled .logo-link:hover .logo-circle {
    transform: translateY(0) scale(1.05);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Invisible bridge to prevent hover loss between header and dropdown */
.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    z-index: 1005;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.menu-chevron {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    display: inline-block;
    transform: translateY(-2px) rotate(45deg);
    transform-origin: 65% 65%;
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.8;
}

.dropdown:hover .menu-chevron {
    transform: translateY(1px) rotate(225deg);
    opacity: 1;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-white);
    min-width: 180px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1010;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 15px;
    /* Spaced out slightly from the header line */
}

/* Arrow pointer on top of dropdown */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--color-white);
}

.header-scrolled .dropdown-content {
    margin-top: 10px;
}

.dropdown-content a {
    color: var(--color-text-dark) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    background-color: var(--color-white);
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--color-accent-dark) !important;
    padding-left: 25px;
    /* Slight indent on hover */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDropdown 0.3s ease forwards;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translate(-50%, 15px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
}

/* ============================================
   HERO SECTION (Minimalist)
   ============================================ */
.hero-minimal {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-minimal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-desktop);
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: zoomBackground 20s linear infinite alternate;
}

@media (max-width: 768px) {
    .hero-bg-minimal {
        background-image: var(--bg-mobile, var(--bg-desktop));
    }
}

.hero-bg-minimal.slide {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-minimal.slide.active {
    opacity: 1;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

@keyframes zoomBackground {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay-minimal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content-minimal {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.hero-title-minimal {
    font-family: var(--cinzel-font);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 0;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-subtitle-glow {
    display: inline-block;
    position: relative;
    padding: 20px 80px;
    margin-top: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
}

.hero-subtitle-minimal {
    font-size: 0.5em;
    display: block;
    letter-spacing: 15px;
    font-weight: 600;
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    opacity: 1;
    position: relative;
    text-transform: uppercase;
}

.hero-subtitle-glow::before,
.hero-subtitle-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #aa771c);
    opacity: 0.8;
}

.hero-subtitle-glow::before {
    left: 10px;
}

.hero-subtitle-glow::after {
    right: 10px;
}

.hero-divider {
    width: 120px;
    height: 2px;
    background: var(--color-accent-light);
    margin: 40px auto;
    animation: scaleIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
    transform: scaleX(0);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero-quote {
    font-family: var(--accent-font);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}

@keyframes scaleIn {
    to {
        transform: scaleX(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    position: relative;
    z-index: 2;
    display: flex;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 30px 0;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--secondary-font);
    font-weight: 600;
}

.feature-item p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ============================================
   COLLECTION SECTION
   ============================================ */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; /* Ensure card takes full height of grid cell */
    text-align: center;
}

.product-card .btn-outline {
    margin-top: auto;
    width: fit-content;
}

.img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: #f5f5f5;
    border-radius: 20px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .img-wrapper img {
    transform: scale(1.08);
}

.product-name {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SHOP BY ROOM
   ============================================ */
.room-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    border-radius: 20px;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: background 0.4s ease;
}

.room-card:hover::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.room-card:hover img {
    transform: scale(1.1);
}

.room-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    z-index: 2;
    font-size: 1.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.room-card:hover .room-name {
    transform: translate(-50%, -50%) scale(1.05);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    position: relative;
    padding: 100px 0;
    color: var(--color-white);
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center 30%;
    background-size: cover;
    filter: brightness(0.35);
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-family: var(--secondary-font);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.newsletter-form input::placeholder {
    color: #999;
    letter-spacing: 1px;
}

.newsletter-form button {
    padding: 16px 30px;
}

/* ============================================
   REFINE SURFACES
   ============================================ */
.surface-card {
    position: relative;
    aspect-ratio: 3/4;
    background-color: #eee;
    overflow: hidden;
    border-radius: 20px;
}

.surface-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.surface-card:hover img {
    transform: scale(1.08);
}

.surface-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.surface-card:hover .surface-label {
    background: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.surface-desc {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.style-img {
    border-radius: 20px;
}

/* ============================================
   HERITAGE SECTION
   ============================================ */
.heritage {
    position: relative;
    background-image: url('./images/golden_heritage_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.heritage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 238, 225, 0.88);
    /* Increased opacity so art is subtle and text pops */
    z-index: 0;
}

.heritage>.container {
    position: relative;
    z-index: 1;
}

/* Custom colors for Heritage section to match image */
.heritage .section-title-lg,
.heritage .section-subtitle-sm {
    color: #a65d3a;
}


.heritage-content {
    align-items: stretch;
}

.heritage-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    /* Add shadow so img pops from busy background */
}

.heritage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.heritage-img:hover img {
    transform: scale(1.03);
}

.heritage-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    font-size: 1.05rem;
    color: #482b1a;
    /* Darker brown for readable paragraph text */
    font-weight: 500;
    line-height: 1.8;
}

.heritage-text p {
    margin-bottom: 20px;
    text-align: justify;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */
.commitment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.circle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.commitment-card:hover .circle-img {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.commitment-card:hover .circle-img img {
    transform: scale(1.08);
}

.commitment-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-accent-dark);
}

.commitment-card p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.7;
}

/* ============================================
   CONSULTATION SECTION
   ============================================ */
.consultation {
    display: flex;
    background-color: var(--color-accent-dark);
    color: var(--color-white);
    overflow: hidden;
}

.consultation-bg {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--color-accent-dark) 0%, #7a5e4d 100%);
}

.consultation-content h2 {
    font-family: var(--primary-font);
    /* Matches Our Heritage */
    font-size: 2.2rem;
    line-height: 1.3;
    font-style: normal;
    font-weight: 500;
}

.consultation-img {
    flex: 1;
    overflow: hidden;
}

.consultation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.consultation-img:hover img {
    transform: scale(1.03);
}

/* ============================================
   FOOTER & FORM
   ============================================ */
.contact-icon {
    display: inline-block;
    background-color: var(--color-text-dark);
    color: var(--color-white);
    padding: 15px 30px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.form-group label {
    width: 100px;
    font-size: 0.9rem;
    color: var(--color-text-gray);
}

.form-group input {
    flex: 1;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
    background: transparent;
    outline: none;
    font-family: var(--secondary-font);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-bottom-color: var(--color-accent-dark);
}

.btn-submit {
    background: transparent;
    border: none;
    color: var(--color-text-gray);
    font-size: 1rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--color-text-gray);
    padding-bottom: 5px;
}

.btn-submit:hover {
    color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text-gray);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-links a svg {
    stroke: currentColor;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-nav a {
    color: var(--color-text-gray);
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-accent-dark);
}

.footer-nav a:hover::after {
    width: 100%;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay for grid items */
.collection-grid .product-card:nth-child(2).reveal-on-scroll,
.style-grid .product-card:nth-child(2).reveal-on-scroll {
    transition-delay: 0.1s;
}

.collection-grid .product-card:nth-child(3).reveal-on-scroll,
.style-grid .product-card:nth-child(3).reveal-on-scroll {
    transition-delay: 0.2s;
}

.collection-grid .product-card:nth-child(4).reveal-on-scroll,
.style-grid .product-card:nth-child(4).reveal-on-scroll {
    transition-delay: 0.3s;
}

.collection-grid .product-card:nth-child(5).reveal-on-scroll {
    transition-delay: 0.1s;
}

.collection-grid .product-card:nth-child(6).reveal-on-scroll {
    transition-delay: 0.2s;
}

.collection-grid .product-card:nth-child(7).reveal-on-scroll {
    transition-delay: 0.3s;
}

.collection-grid .product-card:nth-child(8).reveal-on-scroll {
    transition-delay: 0.4s;
}

.room-grid .room-card:nth-child(2).reveal-on-scroll {
    transition-delay: 0.15s;
}

.room-grid .room-card:nth-child(3).reveal-on-scroll {
    transition-delay: 0.3s;
}

.surface-grid .surface-card:nth-child(2).reveal-on-scroll {
    transition-delay: 0.1s;
}

.surface-grid .surface-card:nth-child(3).reveal-on-scroll {
    transition-delay: 0.2s;
}

.surface-grid .surface-card:nth-child(4).reveal-on-scroll {
    transition-delay: 0.3s;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .heritage-content {
        flex-direction: column;
    }

    .heritage-text {
        padding: 40px 0 0 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .consultation {
        flex-direction: column;
    }

    .consultation-img {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-features {
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1 1 50%;
        border: none;
        margin-bottom: 20px;
    }

    .main-header {
        padding: 8px 15px;
        background: var(--color-white);
        margin: 10px;
        width: calc(100% - 20px);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .header-container {
        padding: 0;
    }

    .header-scrolled {
        padding: 8px 15px;
    }

    .logo-area {
        margin: 0;
    }

    .logo-circle,
    .header-scrolled .logo-circle {
        width: 50px;
        height: 50px;
        transform: translateY(0);
        padding: 5px;
        box-shadow: none;
        border: none;
    }

    .logo-link:hover .logo-circle {
        transform: translateY(0) scale(1);
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-left,
    .nav-right {
        display: none;
        /* Hide top nav links on mobile */
    }

    .desktop-nav {
        display: flex;
        /* Show mobile slide-in menu */
        position: fixed;
        top: -150%;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--color-bg-light);
        flex-direction: column;
        padding: 75px 20px 30px;
        gap: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: top 0.4s ease;
        z-index: 990;
        align-items: center;
    }



    .desktop-nav a {
        color: var(--color-text-dark);
        font-size: 0.95rem;
        padding: 5px 0;
        border-bottom: none;
    }

    .desktop-nav.nav-open {
        top: 0;
    }

    /* Mobile Dropdown */
    .mobile-dropdown {
        width: 100%;
        text-align: center;
    }

    .mobile-dropbtn {
        background: transparent;
        color: var(--color-text-dark);
        font-size: 0.95rem;
        padding: 5px 0;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        border: none;
        cursor: pointer;
    }

    .mobile-dropbtn .menu-chevron {
        width: 8px;
        height: 8px;
        transform: translateY(-2px) rotate(45deg);
    }

    .mobile-dropdown-content {
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
        background: rgba(162, 123, 96, 0.05);
        border-radius: 8px;
        margin-top: 5px;
    }

    .mobile-dropdown.active .mobile-dropdown-content {
        display: flex;
    }

    .mobile-dropdown.active .mobile-dropbtn .menu-chevron {
        transform: translateY(2px) rotate(225deg);
    }

    .mobile-dropdown-content a {
        font-size: 0.95rem !important;
        color: var(--color-text-gray) !important;
        padding: 5px 0 !important;
    }


    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--color-text-dark);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.toggle-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.toggle-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.toggle-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .auth-btn {
        display: none;
    }

    .hero-content-wrapper {
        padding-right: 0;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle-glow {
        padding: 10px 20px;
    }

    .hero-subtitle-minimal {
        letter-spacing: 4px;
        font-size: 0.4em;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title-lg {
        font-size: 2.2rem;
    }

    .newsletter h2 {
        font-size: 1.8rem;
    }

    .consultation-content h2 {
        font-size: 1.8rem;
    }

    /* Hero Slider Arrow & Padding adjustments */
    .hero-content-minimal {
        padding: 0 50px;
    }
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-4, .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-4, .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* Very small devices slider adjustments */
    .hero-content-minimal {
        padding: 0 35px;
    }
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .prev-btn {
        left: 5px;
    }
    .next-btn {
        right: 5px;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
/* Techniques Hero (shorter than homepage hero) */
.techniques-hero {
    height: 80vh;
    min-height: 500px;
}

.techniques-hero .hero-content {
    text-align: center;
}

.techniques-hero .hero-content h1 {
    font-size: 3.5rem;
}

.about-intro-split,
.about-story-split {
    display: flex;
    min-height: 80vh;
}

.about-img-full {
    flex: 1;
    overflow: hidden;
}

.about-img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-full {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10%;
}

.quote-wrapper {
    position: relative;
    max-width: 500px;
}

.quote-icon {
    font-size: 5rem;
    color: var(--color-accent-light);
    font-family: var(--primary-font);
    line-height: 1;
    margin-bottom: -1rem;
}

.about-quote-text {
    font-family: var(--primary-font);
    font-size: 2.2rem;
    color: var(--color-accent);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.quote-author {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-gray);
    display: block;
    margin-top: 2rem;
}

.about-story-title {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-gray);
    margin-bottom: 1rem;
}

.about-story-h {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-story-p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
}

.about-story-p strong {
    color: var(--color-text-dark);
}

@media (max-width: 900px) {

    .about-intro-split,
    .about-story-split {
        flex-direction: column;
    }

    .about-intro-split.reverse {
        flex-direction: column-reverse;
    }

    .about-content-full {
        padding: 60px 20px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero .hero-bg {
    filter: brightness(0.6);
}

.contact-card {
    position: relative;
    z-index: 10;
    background: var(--color-white);
    padding: 60px;
    max-width: 700px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-card h2 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-card .contact-intro {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block p {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #4c6371;
    color: var(--color-white);
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 40px;
    border-radius: 4px;
}

.whatsapp-btn:hover {
    background-color: #3a4d58;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

.hours-section {
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
}

.hours-section h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hours-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-text-gray);
    font-size: 0.95rem;
    cursor: pointer;
}

.hours-toggle::after {
    content: '▼';
    font-size: 0.7rem;
}

.drop-message-btn {
    margin-top: 40px;
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--color-border);
    color: var(--color-text-gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.drop-message-btn:hover {
    background-color: #f8f8f8;
}

@media (max-width: 768px) {
    .contact-card-new {
        padding: 40px 20px;
        width: 90%;
    }

    .contact-card-new h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   NEW CONTACT PAGE STYLES (MATCHING SCREENSHOT)
   ============================================ */
.contact-hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.contact-hero-new .hero-bg {
    z-index: -1;
}

.contact-page-title {
    font-family: var(--accent-font);
    font-size: 3.5rem;
    color: var(--color-white);
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    text-align: center;
    z-index: 1;
}

.contact-card-new {
    background: var(--color-white);
    padding: 60px 80px;
    text-align: center;
    max-width: 800px;
    width: 85%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.contact-card-title {
    font-family: var(--accent-font);
    font-size: 2rem;
    color: var(--color-text-dark);
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-card-intro {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.whatsapp-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #4a5c66;
    color: var(--color-white);
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 50px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.whatsapp-btn-new:hover {
    background-color: #38464d;
    color: var(--color-white);
}

.contact-info-block-new h3 {
    font-family: var(--accent-font);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-info-block-new p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin-bottom: 12px;
}

.hours-section-new {
    margin-top: 40px;
}

.hours-section-new h3 {
    font-family: var(--accent-font);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hours-toggle-new {
    color: var(--color-text-gray);
    font-size: 0.95rem;
}

.drop-message-btn-new {
    margin-top: 50px;
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--color-text-gray);
    color: var(--color-text-gray);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.drop-message-btn-new:hover {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

/* Minimal Footer */
.footer-minimal {
    border-top: 1px solid var(--color-border);
}

.social-links-minimal {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    transition: var(--transition-smooth);
}

.social-icon-circle.instagram {
    background-color: #E1306C;
}

.social-icon-circle.linkedin {
    background-color: #0077b5;
}

.social-icon-circle:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: white;
}

.footer-nav-minimal {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-nav-minimal a {
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.footer-nav-minimal a:hover {
    color: var(--color-accent);
}

.border-top-minimal {
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 320px;
    background-color: #e5e5e5;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.cookie-popup h4 {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.cookie-popup p {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-cookie {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--color-text-gray);
    color: var(--color-text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cookie:hover {
    background: var(--color-white);
}

@media (max-width: 768px) {
    .cookie-popup {
        width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }

}

/* ============================================
   ABOUT PAGE — REDESIGNED
   ============================================ */

/* About Hero */
.about-hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-v2 .hero-bg {
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    padding: 0 20px;
}

.about-hero-eyebrow {
    font-family: var(--secondary-font);
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.about-hero-title {
    font-family: var(--accent-font);
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.about-hero-sub {
    font-family: var(--secondary-font);
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
}

/* Founder Quote */
.about-quote-section {
    padding-top: 80px;
    padding-bottom: 60px;
}

.about-quote-v2 {
    font-family: var(--accent-font);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-accent-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-quote-mark {
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.4;
    vertical-align: -0.15em;
}

.about-quote-author {
    font-family: var(--secondary-font);
    font-size: 0.95rem;
    color: var(--color-text-gray);
    letter-spacing: 2px;
}

/* About Story Grid */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-eyebrow-label {
    font-family: var(--secondary-font);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 500;
}

.about-heading-v2 {
    font-family: var(--accent-font);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-story-text p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.85;
    margin-bottom: 15px;
}

.about-story-img {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-story-img:hover img {
    transform: scale(1.03);
}

/* Values Grid */
.about-values-sub {
    font-size: 1rem;
    color: var(--color-text-gray);
    max-width: 600px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.about-value-card {
    padding: 40px 25px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.about-value-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-accent-dark);
    transition: var(--transition-smooth);
}

.about-value-card:hover .about-value-icon {
    background: var(--color-accent-dark);
    color: var(--color-white);
}

.about-value-card h4 {
    font-family: var(--accent-font);
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.about-value-card p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.7;
}

/* About Banner */
.about-banner {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-banner .hero-bg {
    z-index: 0;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 650px;
    padding: 0 20px;
}

.about-banner-content h2 {
    font-family: var(--accent-font);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-banner-content p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Milestones */
.about-milestone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-milestone-item {
    text-align: center;
    padding: 30px 20px;
}

.about-milestone-year {
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-accent-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-accent);
}

.about-milestone-item h4 {
    font-family: var(--accent-font);
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.about-milestone-item p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.7;
}

/* Responsive for About */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 3.5rem;
    }

    .about-quote-v2 {
        font-size: 2.2rem;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-milestone-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-banner-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-quote-v2 {
        font-size: 1.6rem;
    }

    .about-heading-v2 {
        font-size: 2rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-milestone-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PROFESSIONALS PAGE — REDESIGNED
   ============================================ */

/* Pro Hero */
.pro-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 180px;
}

.pro-hero .hero-bg {
    z-index: 0;
}

.pro-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.pro-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    padding: 0 20px;
}

.pro-hero-eyebrow {
    font-family: var(--secondary-font);
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.pro-hero-title {
    font-family: var(--accent-font);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.pro-hero-sub {
    font-family: var(--secondary-font);
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.pro-hero-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--color-white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.pro-hero-btn:hover {
    background: var(--color-white);
    color: var(--color-text-dark);
}

/* Pro About Grid */
.pro-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pro-eyebrow-label {
    font-family: var(--secondary-font);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 500;
}

.pro-section-heading {
    font-family: var(--accent-font);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.pro-section-sub {
    font-size: 1rem;
    color: var(--color-text-gray);
    max-width: 600px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

.pro-about-text p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.85;
    margin-bottom: 15px;
}

.pro-about-img {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pro-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.pro-about-img:hover img {
    transform: scale(1.03);
}

/* Pro Process Cards */
.pro-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pro-process-card {
    background: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.pro-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pro-process-num {
    font-family: var(--accent-font);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-accent);
    opacity: 0.2;
    display: block;
    margin-bottom: 15px;
}

.pro-process-card h4 {
    font-family: var(--accent-font);
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.pro-process-card p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.7;
}

/* Pro Features Grid */
.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pro-feature-card {
    padding: 40px 30px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.pro-feature-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.pro-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-accent-dark);
    transition: var(--transition-smooth);
}

.pro-feature-card:hover .pro-feature-icon {
    background: var(--color-accent-dark);
    color: var(--color-white);
}

.pro-feature-card h4 {
    font-family: var(--accent-font);
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.pro-feature-card p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.7;
}

/* Pro Banner (Full-width CTA) */
.pro-banner {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pro-banner .hero-bg {
    z-index: 0;
}

.pro-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.pro-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    padding: 0 20px;
}

.pro-banner-content h2 {
    font-family: var(--accent-font);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
}

.pro-banner-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pro-banner-list li {
    font-size: 1rem;
    line-height: 2.2;
    opacity: 0.9;
    position: relative;
    padding-left: 20px;
}

.pro-banner-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Pro Guide Section */
.pro-guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pro-guide-img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pro-guide-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.pro-guide-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    text-align: center;
}

.pro-guide-badge span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--color-text-gray);
    text-transform: uppercase;
}

.pro-guide-badge strong {
    font-family: var(--accent-font);
    font-size: 1.2rem;
    color: var(--color-text-dark);
}

.pro-guide-text p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.85;
    margin-bottom: 25px;
}

.pro-guide-download {
    font-weight: 600;
    color: var(--color-accent-dark);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.pro-guide-download:hover {
    color: var(--color-accent);
}

/* ============================================
   CONTACT PAGE — REDESIGNED V2
   ============================================ */

.contact-hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 180px 20px 60px;
}

.contact-hero-v2 .hero-bg {
    z-index: 0;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.contact-hero-title {
    position: relative;
    z-index: 2;
    font-family: var(--accent-font);
    font-size: 4rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-card-v2 {
    position: relative;
    z-index: 2;
    background: var(--color-white);
    padding: 60px 80px;
    text-align: center;
    max-width: 750px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.contact-card-v2 h2 {
    font-family: var(--accent-font);
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.contact-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.85;
    max-width: 550px;
    margin: 0 auto 35px;
}

.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #4a5c66;
    color: var(--color-white);
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.contact-whatsapp-btn:hover {
    background-color: #38464d;
    color: var(--color-white);
}

.contact-divider {
    width: 60px;
    height: 1px;
    background: var(--color-border);
    margin: 35px auto;
}

.contact-info-v2 {
    margin-bottom: 30px;
}

.contact-info-v2 h3 {
    font-family: var(--accent-font);
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.contact-info-v2 p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin-bottom: 8px;
}

.contact-info-v2 a {
    color: var(--color-accent-dark);
    transition: var(--transition-smooth);
}

.contact-info-v2 a:hover {
    color: var(--color-accent);
}

.contact-hours-v2 {
    margin-bottom: 35px;
}

.contact-hours-v2 h3 {
    font-family: var(--accent-font);
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.contact-hours-v2 p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
}

.contact-outline-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--color-text-gray);
    color: var(--color-text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.contact-outline-btn:hover {
    background: var(--color-text-dark);
    border-color: var(--color-text-dark);
    color: var(--color-white);
}

/* Contact Form Section */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-info p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-form-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-text-gray);
}

.contact-detail-item svg {
    flex-shrink: 0;
    color: var(--color-accent-dark);
}

.contact-form-box {
    background: var(--color-white);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-dark);
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    padding: 12px 15px;
    font-family: var(--secondary-font);
    font-size: 0.95rem;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-accent-dark);
}

.form-field textarea {
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--color-accent-dark);
    color: var(--color-white);
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.contact-submit-btn:hover {
    background: var(--color-text-dark);
}

/* Responsive for Pro & Contact */
@media (max-width: 992px) {
    .pro-hero-title {
        font-size: 3.2rem;
    }

    .pro-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pro-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pro-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pro-guide-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pro-banner-content h2 {
        font-size: 2.2rem;
    }

    .contact-hero-title {
        font-size: 3rem;
    }

    .contact-card-v2 {
        padding: 40px 30px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .pro-hero-title {
        font-size: 2.4rem;
    }

    .pro-process-grid {
        grid-template-columns: 1fr;
    }

    .pro-features-grid {
        grid-template-columns: 1fr;
    }

    .pro-section-heading {
        font-size: 2rem;
    }

    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-card-v2 {
        padding: 30px 20px;
        width: 95%;
    }

    .contact-form-box {
        padding: 25px;
    }
}

/* ============================================
   TECHNIQUES PAGE — REDESIGNED
   ============================================ */

/* Hero */
.tech-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 180px;
}

.tech-hero .hero-bg {
    z-index: 0;
}

.tech-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.tech-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    padding: 0 20px;
}

.tech-hero-eyebrow {
    font-family: var(--secondary-font);
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.tech-hero-title {
    font-family: var(--accent-font);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.tech-hero-sub {
    font-family: var(--secondary-font);
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Intro Quote */
.tech-intro {
    padding-top: 80px;
    padding-bottom: 60px;
}

.tech-quote {
    font-family: var(--accent-font);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-accent-dark);
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
}

.tech-quote-mark {
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.4;
    vertical-align: -0.15em;
}

.tech-intro-desc {
    font-size: 1.05rem;
    color: var(--color-text-gray);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Process Steps */
.tech-process {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5% 80px;
}

.tech-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 60px;
    min-height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.tech-step-reverse {
    direction: rtl;
}

.tech-step-reverse>* {
    direction: ltr;
}

.tech-step-img {
    overflow: hidden;
    position: relative;
}

.tech-step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-step:hover .tech-step-img img {
    transform: scale(1.05);
}

.tech-step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
    position: relative;
    background: var(--color-white);
}

.tech-step-reverse .tech-step-content {
    background: var(--color-bg-light);
}

.tech-step-number {
    font-family: var(--accent-font);
    font-size: 8rem;
    font-weight: 300;
    color: var(--color-accent);
    opacity: 0.08;
    position: absolute;
    top: 10px;
    right: 30px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.tech-step-label {
    font-family: var(--secondary-font);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 500;
}

.tech-step-title {
    font-family: var(--accent-font);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    line-height: 1.25;
}

.tech-step-content p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.85;
    margin-bottom: 15px;
}

.tech-step-content p:last-child {
    margin-bottom: 0;
}

/* Stats Section */
.tech-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-stat-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.tech-stat-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.tech-stat-num {
    display: block;
    font-family: var(--accent-font);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-accent-dark);
    margin-bottom: 10px;
    transition: transform 0.5s ease;
}

.tech-stat-num.stat-animate {
    animation: statPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes statPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tech-stat-label {
    font-family: var(--secondary-font);
    font-size: 0.85rem;
    color: var(--color-text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .tech-hero-title {
        font-size: 3.2rem;
    }

    .tech-quote {
        font-size: 2.2rem;
    }

    .tech-step {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tech-step-reverse {
        direction: ltr;
    }

    .tech-step-img {
        max-height: 400px;
    }

    .tech-step-content {
        padding: 40px 30px;
    }

    .tech-step-number {
        font-size: 5rem;
    }

    .tech-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tech-hero-title {
        font-size: 2.4rem;
    }

    .tech-quote {
        font-size: 1.6rem;
    }

    .tech-step-title {
        font-size: 1.6rem;
    }

    .tech-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SPLIT HEADER (Contact Page)
   ============================================ */
.header-split {
    background-color: var(--color-white) !important;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-split .desktop-nav {
    flex: 1;
}

.header-split .nav-left {
    justify-content: flex-end;
    margin-right: 40px;
}

.header-split .nav-right {
    justify-content: flex-start;
    margin-left: 40px;
}

.header-split .desktop-nav a {
    color: var(--color-text-dark) !important;
}

.header-split .desktop-nav a:hover,
.header-split .desktop-nav a.active {
    color: var(--color-accent) !important;
}

.logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .header-split {
        justify-content: space-between;
    }

    .logo-center {
        padding: 0;
        margin-left: 0;
    }
}

/* ============================================
   DESIGNER PAGE STYLES
   ============================================ */
.designer-hero .about-content-full {
    padding: 10% 8%;
}

.designer-hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.designer-section-title {
    font-family: var(--accent-font);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-accent-dark);
}

.bg-white {
    background-color: var(--color-white);
}

/* Collaborative Process */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.process-step:last-child {
    border-bottom: none;
}

.process-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.process-desc {
    font-size: 1rem;
    color: var(--color-text-gray);
}

/* Grid-2 Utility */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Custom Creations */
.custom-creations-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item-designer h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.feature-item-designer p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.7;
}

/* Why Partner */
.partner-benefits-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-bullets {
    list-style: none;
    padding: 0;
}

.partner-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.partner-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-size: 1.5rem;
    line-height: 1;
}

.partner-cta-text {
    font-size: 1.05rem;
    color: var(--color-text-gray);
    font-style: italic;
    line-height: 1.8;
}

/* Rug Guide */
.pt-0 {
    padding-top: 0 !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.d-inline-block {
    display: inline-block;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
}

.rug-guide-desc {
    max-width: 700px;
    font-size: 1.05rem;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.download-link {
    color: var(--color-accent);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 2px;
}

.download-link:hover {
    color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

.guide-image-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.guide-cover-img {
    width: 100%;
    height: auto;
    border: 10px solid var(--color-white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.guide-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 20px;
    border: 1px solid var(--color-border);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.guide-overlay-text h5 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.guide-overlay-text h6 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--color-text-gray);
    margin-bottom: 30px;
}

.guide-overlay-text h2 {
    font-family: var(--accent-font);
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--color-text-dark);
}

/* Designer Page Responsive */
@media (max-width: 768px) {
    .designer-hero-title {
        font-size: 2.4rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .guide-overlay-text h2 {
        font-size: 1.5rem;
    }

    .guide-overlay-text {
        padding: 20px 10px;
    }
}

.process-step {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.process-step:last-child {
    border-bottom: none;
}

.process-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.process-desc {
    font-size: 1rem;
    color: var(--color-text-gray);
}

/* Grid-2 Utility */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Custom Creations */
.custom-creations-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item-designer h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.feature-item-designer p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.7;
}

/* Why Partner */
.partner-benefits-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-bullets {
    list-style: none;
    padding: 0;
}

.partner-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.partner-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-size: 1.5rem;
    line-height: 1;
}

.partner-cta-text {
    font-size: 1.05rem;
    color: var(--color-text-gray);
    font-style: italic;
    line-height: 1.8;
}

/* Rug Guide */
.pt-0 {
    padding-top: 0 !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.d-inline-block {
    display: inline-block;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
}

.rug-guide-desc {
    max-width: 700px;
    font-size: 1.05rem;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.download-link {
    color: var(--color-accent);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 2px;
}

.download-link:hover {
    color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

.guide-image-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.guide-cover-img {
    width: 100%;
    height: auto;
    border: 10px solid var(--color-white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.guide-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 20px;
    border: 1px solid var(--color-border);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.guide-overlay-text h5 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.guide-overlay-text h6 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--color-text-gray);
    margin-bottom: 30px;
}

.guide-overlay-text h2 {
    font-family: var(--accent-font);
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--color-text-dark);
}

/* Designer Page Responsive */
@media (max-width: 768px) {
    .designer-hero-title {
        font-size: 2.4rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .guide-overlay-text h2 {
        font-size: 1.5rem;
    }

    .guide-overlay-text {
        padding: 20px 10px;
    }
}

/* Laptop/1366px Specific Adjustments to make content slightly smaller */
@media (min-width: 769px) and (max-width: 1400px) {
    html {
        font-size: 14px;
        /* Scales down all rem-based sizes by ~12.5% */
    }

    .container {
        max-width: 1140px;
    }

    .logo-circle {
        width: 110px;
        height: 110px;
    }

    .header-scrolled .logo-circle {
        width: 75px;
        height: 75px;
    }
}

/* ============================================
   GLOBAL MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 768px) {
    /* Reduce Header Height & Logo Size */
    .logo-circle {
        width: 70px !important;
        height: 70px !important;
        transform: translateY(0) !important;
        padding: 5px !important;
    }
    
    .header-scrolled .logo-circle {
        width: 60px !important;
        height: 60px !important;
    }
    
    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: var(--color-white) !important;
        padding: 10px 20px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }

    /* Hide Desktop Nav */
    .nav-left, .nav-right {
        display: none !important;
    }
    
    /* Show Mobile Toggle */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333 !important; /* Always dark on mobile */
        transition: all 0.3s ease;
    }
    
    /* Hamburger to X animation */
    .toggle-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .toggle-active span:nth-child(2) {
        opacity: 0;
    }
    
    .toggle-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Mobile Nav Menu */
    .desktop-nav {
        display: none; /* Hidden by default */
    }
    
    .desktop-nav.nav-open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-white);
        padding: 100px 20px;
        z-index: 1000;
        overflow-y: auto;
        align-items: center;
    }
    
    .desktop-nav a {
        display: block !important;
        color: var(--color-text-dark) !important;
        font-size: 1.2rem;
        padding: 15px 0;
        border-bottom: 1px solid #f0ebe8;
        width: 100%;
        text-align: center;
    }
    
    .mobile-dropdown {
        width: 100%;
    }
    
    .mobile-dropbtn {
        width: 100%;
        padding: 15px 0;
        font-size: 1.2rem;
        color: var(--color-text-dark);
        background: none;
        border: none;
        border-bottom: 1px solid #f0ebe8;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-dropdown-content {
        display: none;
        background: #faf9f7;
        width: 100%;
        padding: 10px 0;
    }
    
    .mobile-dropdown.active .mobile-dropdown-content {
        display: block;
    }
    
    .mobile-dropdown-content a {
        display: block !important;
        font-size: 1rem;
        padding: 10px 0;
        border-bottom: none;
        width: 100%;
        text-align: center;
    }
    
    /* Chevron Animation */
    .mobile-dropbtn svg {
        transition: transform 0.3s ease;
    }
    
    .mobile-dropdown.active .mobile-dropbtn svg {
        transform: rotate(180deg);
    }
    
    /* Grid Layouts */
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .grid-4, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
}
