/* ==========================================
   1. COLOR PALETTE & GLOBAL STYLES (NEW PALETTE)
   ========================================== */
:root {
    --bg-main: #F4F6F0;          /* Soft Cream / Warm White Background */
    --bg-card: #FFFFFF;          /* Clean White Card Container */
    --bg-alt: #E3E8DC;           /* Light Muted Sage Background */
    --text-primary: #1F2E23;     /* Deep Forest Charcoal */
    --text-muted: #536357;       /* Muted Olive Gray */
    --accent-primary: #3B4D3C;   /* Deep Forest Sage Green */
    --accent-hover: #29382A;     /* Darker Forest Green */
    --accent-soft: #8B9B82;      /* Gentle Sage Accent */
    --accent-gold: #C0A16B;      /* Muted Warm Gold Accent */
    --border-color: #D3DCD0;     /* Soft Sage-Gray Border */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==========================================
   2. HEADER & NAVIGATION
   ========================================== */
header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 1.25rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(244, 246, 240, 0.94);
    backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   1. HEADER LOGO STYLING (Light Background)
   ========================================================================== */
header .logo {
    display: inline-flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    line-height: 1 !important;
    width: fit-content;
}

header .logo-main {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: #2B3E34 !important; /* Dark olive green for "Cu" */
    letter-spacing: -0.2px;
    display: block;
}

header .logo-main span {
    font-style: italic !important;
    color: #2B3E34 !important; /* Matches "Cu" color for "sina" */
}

header .logo-sub {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.58rem;
    font-weight: 500;
    color: #6B776E !important; /* Muted gray for subtext */
    text-transform: lowercase !important;
    display: block !important;
    width: 100% !important;
    text-align: justify !important;
    text-align-last: justify !important;
    letter-spacing: 0.38em !important;
    margin-top: 2px;
}

/* ==========================================================================
   2. FOOTER LOGO STYLING (Dark Background)
   ========================================================================== */
footer .logo {
    font-family: var(--font-heading, 'Playfair Display', serif) !important;
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    color: #FFFFFF !important; /* White for "Cu" on dark background */
    text-decoration: none !important;
    display: inline-block !important;
    line-height: 1 !important;
    margin-bottom: 1rem;
}

footer .logo span {
    color: #809388 !important; /* Muted slate gray for "sina" */
    font-style: italic !important;
}


nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    padding: 0.2rem 0;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-primary);
    transition: var(--transition);
}

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

.nav-btn {
    background-color: var(--accent-primary);
    color: #FFFFFF !important;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-btn::after {
    display: none !important;
}

.nav-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* ==========================================
   3. REUSABLE UI COMPONENTS
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #FFFFFF;
    font-size: 1.50rem;

}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(59, 77, 60, 0.25);
}

.page-header {
    text-align: center;
    padding: 4.5rem 5% 3rem;
    background-color: var(--bg-alt);
    margin-bottom: 3.5rem;
    border-bottom: 1px solid var(--border-color);
}

.subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.6rem;
    display: block;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
}

.section {
    padding: 4rem 6%;
}

/* ==========================================
   4. HERO SECTION (WITH SYNCHRONIZED SLIDERS)
   ========================================== */
.hero {
    min-height: calc(100vh - 80px);
    padding: 4rem 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

/* --- HERO IMAGE SLIDER --- */
.hero-img-slider {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.hero-img-track {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Arrow Navigation Buttons */
.hero-img-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border: none;
    font-size: 16px;
    padding: 12px 10px;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.3;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 2;
    user-select: none;
}

.hero-img-slider:hover .slider-arrow {
    opacity: 0.7;
}

.hero-img-slider .slider-arrow:hover {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.6);
}

.hero-img-slider .prev-arrow { left: 12px; }
.hero-img-slider .next-arrow { right: 12px; }

/* --- FLOATING BADGE SLIDER CARDS --- */
.badge-slider-container {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 320px;
    height: 85px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    overflow: hidden;
    z-index: 10;
}

.badge-slide-track {
    display: flex;
    flex-direction: row;
    width: 960px;
    height: 100%;
    animation: slideThreeCards 12s infinite ease-in-out;
}

.badge-card {
    width: 320px;
    height: 85px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem 1.2rem;
    box-sizing: border-box;
    flex-shrink: 0;
    gap: 0.8rem;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-primary);
    line-height: 1;
}

.badge-tag {
    background-color: var(--accent-primary);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    display: inline-block;
}

.tag-green {
    background-color: #2f855a;
}

.badge-text {
    text-align: left;
}

.badge-text strong {
    display: block;
    font-size: 1.30rem;
    color: #1a202c;
    line-height: 1.2;   
    margin-bottom: 2px;
}

.badge-text p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.2;
}

@keyframes slideThreeCards {
    0%, 28% {
        transform: translateX(0);          /* Card 1 */
    }
    33%, 61% {
        transform: translateX(-320px);     /* Card 2 */
    }
    66%, 94% {
        transform: translateX(-640px);     /* Card 3 */
    }
    100% {
        transform: translateX(0);          /* Back to Card 1 */
    }
}

/* ==========================================
   5. KITCHENS SECTION
   ========================================== */
.kitchen-banner-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 3.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.02);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    transition: var(--transition);
}

.kitchen-banner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.06);
}

.kitchen-img-wrap {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

/* Horizontal Slider Track */
.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.slider-track img,
.kitchen-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Subtle Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    border: none;
    font-size: 14px;
    padding: 10px 8px;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.25;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 2;
    user-select: none;
}

.kitchen-img-wrap:hover .slider-arrow {
    opacity: 0.6;
}

.slider-arrow:hover {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.6);
}

.prev-arrow { left: 10px; }
.next-arrow { right: 10px; }

/* Circle / Dot Indicators */
.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Content Typography & Layout */
.kitchen-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kitchen-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.kitchen-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.kitchen-specs {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.spec-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.spec-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==========================================
   6. HOW WE WORK SECTION
   ========================================== */
.process-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    align-items: start;
    transition: var(--transition);
}

.process-step-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.process-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-primary);
    line-height: 1;
}

.process-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.process-info p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
}

.process-deliverables {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
}

.process-deliverables li {
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.process-deliverables li::before {
    content: "✓";
    color: var(--accent-primary);
    font-weight: bold;
}

/* ==========================================
   7. TEAM SECTION & STRUCTURED LAYOUT
   ========================================== */

/* Section Headers */
.team-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.team-subtitle {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold, #c5a880);
    font-weight: 600;
    display: block;
    margin-bottom: 0.4rem;
}

.team-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Elegant Section Dividers */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 4.5rem 0;
}

.divider-line {
    flex-grow: 1;
    max-width: 250px;
    height: 1px;
    background-color: var(--border-color);
}

.divider-icon {
    color: var(--accent-gold, #c5a880);
    font-size: 0.85rem;
}

/* Solo / Featured Grid (Principal Designer & Marketing Specialist) */
.solo-member-grid {
    display: flex;
    justify-content: center;
}

.featured-card {
    max-width: 680px;
    width: 100%;
}

.solo-img-wrap {
    height: 380px !important;
}

/* 6-Associate Designer Grid */
.six-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2.2rem;
}

/* Base Team Card Styling */
.team-card {
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.team-img-wrap {
    height: 320px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.04);
}

.team-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.team-task {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

.team-task strong {
    color: var(--text-primary);
}
/* ==========================================
   8. MULTI-STEP QUOTATION FORM & CONTACT
   ========================================== */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 35px rgba(0,0,0,0.03);
}

/* Step Bar Navigation */
.step-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.step-progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
    transform: translateY(-50%);
}

.step-item {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    padding: 0 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.step-item.active .step-circle {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #FFFFFF;
}

.step-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-muted);
}

.step-item.active .step-title {
    color: var(--accent-primary);
}

/* Form Sections */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

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

.step-header-text {
    margin-bottom: 2rem;
    text-align: center;
}

.step-header-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.step-header-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Selection Cards Grid */
.option-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.option-card {
    border: 2px solid var(--border-color);
    background: var(--bg-main);
    padding: 1.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

.option-card:hover {
    border-color: var(--accent-soft);
    transform: translateY(-3px);
}

.option-card.selected {
    border-color: var(--accent-primary);
    background: #FFFFFF;
    box-shadow: 0 8px 20px rgba(59, 77, 60, 0.1);
}

.option-icon {
    font-size: 2.2rem;
    color: var(--accent-primary);
}

.option-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.option-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Standard Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

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

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-main);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background-color: #FFFFFF;
}

/* Form Action Buttons */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Summary Box */
.summary-box {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.8rem;
    border: 1px solid var(--border-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 0.9rem;
}

.summary-item:last-child {
    border-bottom: none;
}

/* Direct Contact Info Below Form */
.direct-contact-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.direct-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--bg-alt);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-card h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.contact-card a, .contact-card p {
    font-weight: 600;
    font-size: 1rem;
}

/* ==========================================
   9. FOOTER
   ========================================== */
footer {
    background-color: var(--text-primary);
    color: #FFFFFF;
    padding: 4.5rem 6% 2rem;
    margin-top: auto;
}

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

.footer-about .logo {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-about p {
    color: #A3B2A5;
    max-width: 360px;
    font-size: 0.92rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--bg-alt);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #A3B2A5;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #839485;
}

/* ==========================================================================
   ABOUT PAGE - DESIGN STYLES & MISSION/VISION/GOALS SECTIONS
   ========================================================================== */

/* Divider Styling */
.divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 45px 0;
}

/* Headings for both sections */
h3 {
    color: var(--primary, #1e293b);
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

/* Paragraph text directly below section headers */
.text-muted-desc {
    color: var(--text-muted, #64748b);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ==========================================================================
   1. CABINETRY DESIGN STYLES SECTION
   ========================================================================== */

/* Grid container for Design Styles */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Card container for each design signature */
.style-card {
    background: var(--white, #ffffff);
    padding: 28px 24px;
    border-radius: 8px;
    border-left: 4px solid var(--accent, #1F2E23); /* Left accent border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition, all 0.3s ease);
}

/* Hover effect on cards */
.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Style Card Title (e.g., Elegant & Grand) */
.style-card h4 {
    color: var(--primary, #1e293b);
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Style Card Paragraph */
.style-card p {
    color: var(--text-muted, #64748b);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


/* ==========================================================================
   2. MISSION, VISION & GOALS SECTION
   ========================================================================== */

/* Grid container for Mission, Vision & Goals */
.values-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
    margin-bottom: 30px;
}

/* Card container for Mission/Vision/Goal items */
.value-item {
    background: var(--white, #ffffff);
    padding: 30px 25px;
    border-radius: 8px;
    border-top: 4px solid var(--accent, #1F2E23); /* Top accent border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition, all 0.3s ease);
}

/* Hover effect on value cards */
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Value Item Title (Our Mission, Our Vision, Our Goal) */
.value-item h4 {
    color: var(--primary, #1e293b);
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* Value Item Paragraph */
.value-item p {
    color: var(--text-muted, #64748b);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
/* Prevent whole page horizontal dragging on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Base styles for overlay (hidden by default on all screens) */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

/* Hide hamburger toggle on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--primary, #1e293b);
    z-index: 1001;
}

/* ==========================================
   10. RESPONSIVE OVERRIDES (MOBILE ONLY)
   ========================================== */
@media (max-width: 900px) {
    /* Reveal burger icon only on small screens */
    .menu-toggle {
        display: block;
    }

    /* Target #sideNav directly with CSS transforms to prevent layout overflow */
    #sideNav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 80px 30px 30px;
        transform: translateX(100%); /* Hides drawer off-screen using GPU translation */
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto; /* Scroll internally if menu content is tall */
    }

    /* Active class toggled by JS to pop/slide menu cleanly into view */
    #sideNav.active,
    #sideNav.nav-active {
        transform: translateX(0); /* Flush with right screen edge */
    }

    /* Stack links vertically inside the drawer */
    #sideNav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    #sideNav ul li {
        width: 100%;
    }

    #sideNav ul li a {
        font-size: 1.1rem;
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-primary, #1e293b);
        text-decoration: none;
    }

    /* Show dark backdrop overlay when active */
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Single column stack for mobile cards */
    .hero, 
    .kitchen-banner-card, 
    .process-step-card, 
    .form-row, 
    .direct-contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */

/* Lead paragraph styling */
.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Secondary paragraph styling */
.body-text-muted {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Muted paragraph helper */
.text-muted-desc {
    color: var(--text-muted);
}

/* Values container spacing */
.values-wrapper {
    margin-top: 10px;
}
/* ==========================================
   TEXT ANIMATION: LEFT TO RIGHT SLIDE
   ========================================== */

@keyframes slideLeftToRight {
    0% {
        opacity: 0;
        transform: translateX(-80px); /* Nagsisimula sa kaliwa (-80px) */
    }
    100% {
        opacity: 1;
        transform: translateX(0);     /* Pumupunta pakanan sa tamang pwesto */
    }
}

.slide-left-to-right {
    opacity: 0;
    animation: slideLeftToRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered Delay para isa-isang mag-slide ang text */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

/* ==========================================
   ABOUT PAGE & TYPOGRAPHY STYLES
   ========================================== */

/* Lead Paragraph Style */
.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-main, #1a202c);
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
}

.lead-text strong {
    color: var(--accent-primary, #3b4d3f);
    font-weight: 600;
}

/* Wrapper Box */
.about-details {
    max-width: 800px;
    margin: 0 auto;
}

/* Subheadings with Generous Top Spacing */
.about-subheading {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--text-main, #1a202c);
    margin-top: 3.5rem; /* Malaking space sa itaas para malinis tingnan */
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Unang subheading spacing fix */
.about-details > .about-subheading:first-child {
    margin-top: 2rem;
}

/* Body Text */
.about-text {
    color: var(--text-muted, #64748b);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

/* Call To Action Box Style */
.cta-box {
    background-color: var(--bg-card, #f8fafc);
    border-left: 4px solid var(--accent-primary, #3b4d3f);
    border-top: 1px solid var(--border-color, #e2e8f0);
    border-right: 1px solid var(--border-color, #e2e8f0);
    border-bottom: 1px solid var(--border-color, #e2e8f0);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 4rem; /* Malaking space sa itaas ng CTA */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.cta-box strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text-main, #1a202c);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.cta-box p {
    margin: 0;
    color: var(--text-muted, #64748b);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================
   SOFTWARE LOGOS GRID
   ========================================== */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.software-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.software-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 12px;
}

.software-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
}