/* ==========================================================================
   KITCHEN & BATH REMODELING & ACCESSORIES - Main Stylesheet
   Mobile-First Design
   ========================================================================== */

:root {
    --color-gold: #B88D3D;
    --color-gold-dark: #A07C30;
    --color-dark-grey: #2C2C2C;
    --color-light-grey: #F0F0F0;
    --color-white: #FFFFFF;
    --color-medium-grey: #5A5A5A;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-fallback: 'Arial', sans-serif;
    
    --header-height: 68px;
    --header-height-sticky: 60px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary), var(--font-fallback);
    color: var(--color-dark-grey);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: rgba(184, 141, 61, 0.3);
    color: var(--color-dark-grey);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--color-dark-grey);
    text-decoration: none;
    transition: color 0.2s var(--transition-smooth);
}

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Scroll Progress Indicator */
.scroll-indicator {
    position: fixed;
    left: 0;
    top: 0;
    width: 3px;
    height: 0%;
    background: var(--color-gold);
    z-index: 9999;
    transition: height 0.1s linear;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--color-white);
    z-index: 1000;
    transition: all 0.3s var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    height: var(--header-height-sticky);
    background: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

header.transparent {
    background: transparent;
    border-bottom: none;
}

header.transparent.scrolled {
    background: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark-grey);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

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

.header-actions {
    display: none;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-dark-grey);
    font-weight: 500;
    font-size: 14px;
}

.header-phone svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 141, 61, 0.3);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-dark-grey);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid var(--color-dark-grey);
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: var(--color-light-grey);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-dark-grey);
    transition: all 0.3s var(--transition-smooth);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-dark-grey);
    z-index: 999;
    transition: right 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px 40px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 24px 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s var(--transition-smooth);
}

.mobile-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active ul li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active ul li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active ul li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active ul li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active ul li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu a {
    color: var(--color-white);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--color-gold);
}

.mobile-menu .btn-primary {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s var(--transition-smooth);
    transition-delay: 0.4s;
}

.mobile-menu.active .btn-primary {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero h1 {
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--transition-smooth) forwards;
    animation-delay: 0.3s;
}

.hero .subtitle {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--transition-smooth) forwards;
    animation-delay: 0.5s;
}

.hero .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--transition-smooth) forwards;
    animation-delay: 0.7s;
    font-size: 16px;
    padding: 18px 40px;
    animation: pulse 2s infinite;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184, 141, 61, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(184, 141, 61, 0); }
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
section {
    padding: 80px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--color-dark-grey);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold);
}

.section-header p {
    color: var(--color-medium-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* Light Grey Background */
.bg-light {
    background-color: var(--color-light-grey);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Dark Background */
.bg-dark {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
    position: relative;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

/* ==========================================================================
   INTRO MESSAGE SECTION
   ========================================================================== */
.intro-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-message h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.intro-message p {
    font-size: 1.1rem;
    color: var(--color-medium-grey);
    line-height: 1.8;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid var(--color-light-grey);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(184, 141, 61, 0.2);
    border-color: var(--color-gold);
}

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

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth), filter 0.3s;
    filter: saturate(0.8);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
    filter: saturate(1) brightness(1.1);
}

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    color: var(--color-dark-grey);
    margin-bottom: 16px;
}

.service-card-content p {
    color: var(--color-medium-grey);
    margin-bottom: 20px;
}

.service-card-content .learn-more {
    color: var(--color-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card-content .learn-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.service-card-content .learn-more:hover svg {
    transform: translateX(5px);
}

/* ==========================================================================
   FEATURED PROJECT
   ========================================================================== */
.featured-project {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

.featured-project-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.featured-project-content {
    padding: 40px;
    background: var(--color-dark-grey);
    color: var(--color-white);
}

.featured-project-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--color-white);
}

.featured-project-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.featured-project-content .btn-secondary {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-choose-us {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.why-choose-us-image {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.why-choose-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-us-content h2 {
    margin-bottom: 30px;
}

.why-choose-us-list {
    list-style: none;
}

.why-choose-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.why-choose-us-list li svg {
    width: 24px;
    height: 24px;
    fill: var(--color-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.why-choose-us-list li strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-dark-grey);
}

.why-choose-us-list li p {
    color: var(--color-medium-grey);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--color-light-grey);
    transition: all 0.3s var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(184, 141, 61, 0.15);
    border-color: var(--color-gold);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-dark-grey);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-medium-grey);
}

/* ==========================================================================
   PROCESS CTA
   ========================================================================== */
.process-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.process-cta-icon {
    display: flex;
    justify-content: center;
}

.process-cta-icon svg {
    width: 120px;
    height: 120px;
    fill: var(--color-gold);
}

.process-cta-content h2 {
    margin-bottom: 16px;
}

.process-cta-content p {
    color: var(--color-medium-grey);
    margin-bottom: 24px;
}

/* ==========================================================================
   GALLERY PREVIEW
   ========================================================================== */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--transition-smooth), filter 0.3s;
    filter: saturate(0.8);
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
    filter: saturate(1) brightness(1.1);
}

.gallery-preview-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(184, 141, 61, 0);
    transition: background 0.3s;
}

.gallery-preview-item:hover::after {
    background: rgba(184, 141, 61, 0.3);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================================================
   CONTACT CTA
   ========================================================================== */
.contact-cta {
    text-align: center;
    padding: 100px 20px;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--color-white);
}

.contact-cta p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.contact-cta-buttons .btn-primary,
.contact-cta-buttons .btn-secondary {
    min-width: 250px;
}

.contact-cta-buttons .btn-secondary {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ==========================================================================
   ABOUT PAGE SECTIONS
   ========================================================================== */
.about-hero {
    background-image: url('../images/about_team.png');
}

.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-story-image {
    border-radius: 12px;
    overflow: hidden;
}

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

.about-story-content h2 {
    margin-bottom: 20px;
}

.about-story-content p {
    color: var(--color-medium-grey);
    line-height: 1.8;
}

/* Mission Values */
.mission-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.mission-value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--color-light-grey);
    transition: all 0.3s var(--transition-smooth);
}

.mission-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(184, 141, 61, 0.15);
    border-color: var(--color-gold);
}

.mission-value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
}

.mission-value-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-white);
}

.mission-value-card h3 {
    margin-bottom: 12px;
}

.mission-value-card p {
    color: var(--color-medium-grey);
    margin: 0;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.team-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--color-light-grey);
    transition: all 0.3s var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(184, 141, 61, 0.15);
    border-color: var(--color-gold);
}

.team-card-image {
    height: 300px;
    overflow: hidden;
    background: var(--color-light-grey);
}

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

.team-card-content {
    padding: 24px;
    text-align: center;
}

.team-card-content h3 {
    margin-bottom: 4px;
}

.team-card-content .title {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-card-content p {
    color: var(--color-medium-grey);
    font-size: 0.95rem;
    margin: 0;
}

/* Awards */
.awards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.award-logo {
    opacity: 0.7;
    filter: grayscale(100%) brightness(0.9);
    transition: all 0.3s;
}

.award-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* ==========================================================================
   SERVICES PAGE SECTIONS
   ========================================================================== */
.services-hero {
    background-image: url('../images/services_kitchen.png');
}

.services-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

.services-split-image {
    height: 350px;
    overflow: hidden;
}

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

.services-split-content {
    padding: 40px;
    background: var(--color-light-grey);
}

.services-split-content h2 {
    margin-bottom: 20px;
}

.services-split-content p {
    color: var(--color-medium-grey);
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-split-content ul {
    list-style: none;
    margin-top: 20px;
}

.services-split-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-dark-grey);
}

.services-split-content ul li svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold);
}

/* Accessories Grid */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.accessory-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.accessory-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--transition-smooth);
}

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

.accessory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.accessory-overlay span {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    padding: 0 20px;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark-grey);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold);
    transition: transform 0.3s var(--transition-smooth);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth);
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--color-medium-grey);
    line-height: 1.7;
}

/* ==========================================================================
   GALLERY PAGE SECTIONS
   ========================================================================== */
.gallery-hero {
    background-image: url('../images/gallery_project_1.png');
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--color-light-grey);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark-grey);
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
}

.filter-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.filter-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--transition-smooth), filter 0.3s;
    filter: saturate(0.85);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: saturate(1) brightness(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-item-overlay h4 {
    color: var(--color-white);
    margin-bottom: 8px;
}

.gallery-item-overlay svg {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
}

/* Before/After */
.before-after-section {
    text-align: center;
}

.before-after-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.before-after-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.before-after-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--color-gold);
    cursor: ew-resize;
    transform: translateX(-50%);
}

.before-after-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.before-after-handle svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

.before-label,
.after-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(44, 44, 44, 0.8);
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
}

.before-label { left: 20px; }
.after-label { right: 20px; }

/* ==========================================================================
   PROCESS PAGE SECTIONS
   ========================================================================== */
.process-hero {
    background-image: url('../images/process_step_1.png');
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.process-intro h2 {
    margin-bottom: 20px;
}

.process-intro p {
    color: var(--color-medium-grey);
    line-height: 1.8;
}

/* Process Steps Accordion */
.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.process-step-header {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.process-step-number {
    display: flex;
    align-items: center;
    gap: 16px;
}

.process-step-number .step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s;
}

.process-step.active .step-icon {
    box-shadow: 0 0 20px rgba(184, 141, 61, 0.4);
}

.process-step-number .step-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

.process-step-number h3 {
    font-size: 1.1rem;
    color: var(--color-dark-grey);
}

.process-step.active .process-step-number h3 {
    color: var(--color-gold);
}

.process-step-chevron {
    width: 24px;
    height: 24px;
    transition: transform 0.3s var(--transition-smooth);
}

.process-step-chevron svg {
    width: 100%;
    height: 100%;
    fill: var(--color-medium-grey);
}

.process-step.active .process-step-chevron {
    transform: rotate(180deg);
}

.process-step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth);
}

.process-step-details {
    padding: 0 30px 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.process-step-details p {
    color: var(--color-medium-grey);
    line-height: 1.7;
}

.process-step-image {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

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

/* Process Benefits */
.process-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--color-light-grey);
    transition: all 0.3s var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(184, 141, 61, 0.15);
    border-color: var(--color-gold);
}

.benefit-card svg {
    width: 48px;
    height: 48px;
    fill: var(--color-gold);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--color-medium-grey);
    margin: 0;
}

/* ==========================================================================
   CONTACT PAGE SECTIONS
   ========================================================================== */
.contact-hero {
    background-image: url('../images/contact_map.png');
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-container {
    background: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--color-medium-grey);
    font-size: 14px;
    transition: all 0.2s var(--transition-smooth);
    pointer-events: none;
    background: var(--color-white);
    padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -8px;
    font-size: 12px;
    color: var(--color-gold);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--color-light-grey);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

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

.contact-form-container .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-block h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.detail-block p {
    color: var(--color-medium-grey);
    margin-bottom: 8px;
}

.detail-block a {
    color: var(--color-gold);
    font-weight: 500;
}

.detail-block a:hover {
    text-decoration: underline;
}

/* Map */
.contact-map {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    background: var(--color-light-grey);
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--color-dark-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--transition-smooth);
}

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

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--color-dark-grey);
    color: var(--color-white);
    padding: 80px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-years {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    font-weight: 600;
}

.footer-years span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links ul a:hover {
    color: var(--color-gold);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
}

.footer-contact a {
    color: var(--color-gold);
}

.footer-social .social-links {
    margin-top: 20px;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--color-gold);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--color-gold-dark);
}

.newsletter-form button svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0;
}

/* ==========================================================================
   DREAM REVEAL EASTER EGG
   ========================================================================== */
.dream-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.dream-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dream-message {
    text-align: center;
    color: var(--color-gold);
}

.dream-message h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 4px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.dream-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: fall 3s ease-in-out infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--transition-smooth);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s var(--transition-smooth);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s var(--transition-smooth);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s var(--transition-smooth);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   RESPONSIVE: TABLET (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    :root {
        --header-height: 75px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    section {
        padding: 100px 40px;
    }
    
    .header-inner {
        padding: 0 40px;
    }
    
    /* Header with nav on tablet */
    .nav-links {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    /* Services Grid - 3 columns on tablet */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-split {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-split.reverse .services-split-image {
        order: 2;
    }
    
    .services-split.reverse .services-split-content {
        order: 1;
    }
    
    /* About */
    .about-story {
        grid-template-columns: 1fr 1fr;
    }
    
    .mission-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .accessories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Process Benefits */
    .process-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-step-details {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero */
    .hero h1 {
        font-size: 3.5rem;
    }
    
    /* Why Choose Us */
    .why-choose-us {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Process CTA */
    .process-cta {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Gallery Preview */
    .gallery-preview-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Featured Project */
    .featured-project {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   RESPONSIVE: DESKTOP (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
    }
    
    h1 { font-size: 4rem; }
    h2 { font-size: 2.75rem; }
    
    section {
        padding: 120px 60px;
    }
    
    .container {
        max-width: 1400px;
    }
    
    .header-inner {
        padding: 0 60px;
    }
    
    .logo img {
        height: 60px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 4.5rem;
        letter-spacing: 5px;
    }
    
    .hero .subtitle {
        font-size: 1.5rem;
    }
    
    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        gap: 40px;
    }
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS (< 428px)
   ========================================================================== */
@media (max-width: 428px) {
    :root {
        --header-height: 64px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    section {
        padding: 60px 16px;
    }
    
    .header-inner {
        padding: 0 16px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .mobile-menu a {
        font-size: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
}