/* ============================================
   HELLO INTERIORS - Main Stylesheet
   Full-Service Interiors Company
   ============================================ */

/* Local Font Faces */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #1a1a1a;
    --charcoal: #2d2d2d;
    --gold: #dd9527;
    --gold-light: #f4c26a;
    --gold-dark: #b8751a;
    --cream: #f8f6f1;
    --cream-dark: #ebe8e1;
    --white: #ffffff;
    --gray: #6b6b6b;
    --gray-light: #e8e6e1;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    
    --section-padding: clamp(70px, 10vw, 120px);
    --container-max: 1400px;
    --container-padding: 40px;
    
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 10px 40px rgba(221, 149, 39, 0.3);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::selection { background: var(--gold); color: var(--black); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }

p { font-size: 1rem; color: var(--gray); margin-bottom: 1.5em; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.container--narrow { max-width: 900px; }

.section { padding: var(--section-padding) 0; position: relative; }
.section--dark { background: var(--black); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.7); }
.section--cream { background: var(--cream-dark); }
.section--gold { background: var(--gold); }

.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::before { content: ''; width: 35px; height: 1px; background: var(--gold); }
.section-label--center { justify-content: center; }
.section-label--center::before { display: none; }

.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.15; margin-bottom: 20px; }
.section--dark .section-title { color: var(--white); }
.section-title span, .section-title em { font-style: italic; color: var(--gold); }

.section-subtitle { font-size: 1rem; color: var(--gray); max-width: 550px; line-height: 1.8; }
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 45px; }
.section-header--center { text-align: center; max-width: 650px; margin-left: auto; margin-right: auto; }
.section-header--center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-medium) var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }

.btn--primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

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

.btn--dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--dark:hover { background: var(--charcoal); border-color: var(--charcoal); }

.btn--white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--white:hover { background: transparent; color: var(--white); }

.btn--lg { padding: 20px 45px; font-size: 12px; }
.btn--sm { padding: 12px 25px; font-size: 10px; }

.btn-icon { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.btn:hover .btn-icon { transform: translateX(4px); }

.btn-group { display: flex; gap: 15px; flex-wrap: wrap; }

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: var(--black);
    transition: all var(--transition-medium) var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo img { height: 42px; filter: brightness(0) invert(1); transition: all var(--transition-fast); }
.nav-logo:hover img { transform: scale(1.05); }

.nav-links { display: flex; align-items: center; gap: 30px; }

.nav-links a, .nav-dropdown > a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

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

.nav-links a:hover, .nav-links a.active,
.nav-dropdown:hover > a { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown > a svg { width: 10px; height: 10px; transition: transform 0.3s ease; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    min-width: 180px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 12px 0;
    margin-top: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown-menu a {
    display: block;
    padding: 10px 22px;
    font-size: 11px;
    color: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--gold); }

.nav-cta {
    background: var(--gold);
    border: none;
    color: var(--white);
    padding: 12px 24px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-2px); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.nav-menu-btn span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 999;
    padding: 90px 35px 35px;
    transition: right 0.5s var(--transition-smooth);
    overflow-y: auto;
}
.mobile-nav.active { right: 0; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 18px; }
.mobile-nav-links a {
    font-size: 18px;
    font-family: var(--font-display);
    font-weight: bold;
    color: #ffffff !important;
    text-shadow: 0 0 2px rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.mobile-nav-links > a:hover { color: var(--gold); padding-left: 12px; }
.mobile-nav-dropdown { margin-top: 8px; padding-left: 18px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-dropdown a { font-size: 13px; font-family: var(--font-body); font-weight: bold; color: #ffffff !important; text-shadow: 0 0 2px rgba(255,255,255,0.5); }
.mobile-nav-dropdown a:hover { color: var(--gold); }
.mobile-nav-cta {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #dd9527 !important;
    text-shadow: 0 0 2px rgba(255,255,255,0.5);
    font-size: 16px;
    font-family: var(--font-display);
}
.mobile-nav-cta svg { width: 18px; height: 18px; }
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

/* Page Header */
.page-header {
    position: relative;
    padding: 160px 0 90px;
    background: var(--black);
    overflow: hidden;
}
.page-header-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.page-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Pattern.png');
    background-size: 280px;
    opacity: 0.03;
}
.page-header-content { position: relative; z-index: 10; max-width: 700px; }
.page-header-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.page-header-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.page-header-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}
.page-header-title span { font-style: italic; color: var(--gold); }
.page-header-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.85;
    max-width: 520px;
}

/* Hero (Homepage) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Pattern.png');
    background-size: 820px;
    opacity: 0.035;
}
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65); }
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--black) 0%, transparent 45%);
}

.hero-content { position: relative; z-index: 10; max-width: 600px; }
.hero-logo {
    display: block;
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.5s forwards;
}
.hero-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.5s forwards;
}
.hero-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.7s forwards;
}
.hero-title span { font-style: italic; color: var(--gold); }

.hero-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
    max-width: 460px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.9s forwards;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 98, 0.12);
    border-left: 3px solid var(--gold);
    padding: 12px 18px;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--gold-light);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--transition-smooth) 1s forwards;
}
.hero-highlight svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--transition-smooth) 1.1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--white);
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll span { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.5; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.service-card {
    position: relative;
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--transition-smooth);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card-image { position: relative; height: 200px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: all 0.6s var(--transition-smooth); }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.service-card-content { padding: 25px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    transition: all 0.3s ease;
}
.service-card-link svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* Feature Grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }

.feature-item { text-align: center; padding: 35px 25px; }
.feature-icon {
    width: 65px;
    height: 65px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--black); }
.feature-item h4 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-item p { font-size: 13px; line-height: 1.75; }

/* Service List */
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0; }
.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--charcoal);
}
.service-list li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* Two Column Layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.content-image { position: relative; overflow: hidden; }
.content-image img { width: 100%; height: 450px; object-fit: cover; }
.content-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--gold);
    z-index: -1;
}

/* Flooring Types Grid */
.flooring-types { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 35px; }
.flooring-type {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    color: var(--black);
}
.flooring-type:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.flooring-type-icon {
    width: 55px;
    height: 55px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.flooring-type-icon svg { width: 24px; height: 24px; color: var(--gold); }
.flooring-type h4 { font-size: 12px; font-family: var(--font-body); font-weight: 600; }

/* Process Steps */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.process-step { text-align: center; position: relative; }
.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--gold);
}
.process-step:last-child::after { display: none; }
.process-number {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
}
.process-step h4 { font-family: var(--font-body); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: 12px; }

/* CTA Section */
.cta {
    position: relative;
    padding: 90px 0;
    background: var(--black);
    overflow: hidden;
}
.cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Pattern.png');
    background-size: 280px;
    opacity: 0.035;
}
.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.cta-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 18px; }
.cta-title span { font-style: italic; color: var(--gold); }
.cta-text { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 35px; line-height: 1.8; }
.cta-actions { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
    justify-content: center;
}
.cta-phone-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phonePulse 2s ease infinite;
}
@keyframes phonePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(201, 169, 98, 0); }
}
.cta-phone-icon svg { width: 20px; height: 20px; color: var(--gold); }
.cta-phone-text { text-align: left; }
.cta-phone-label { font-size: 10px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; }
.cta-phone-number { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.cta-phone-number:hover { color: var(--gold); }

/* Service Areas */
.service-areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-area-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.service-area-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-area-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.service-area-item span { font-weight: 500; font-size: 13px; }

/* Footer */
.footer { background: var(--black); color: var(--white); padding-top: 70px; }
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 45px;
    padding-bottom: 55px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { max-width: 300px; }
.footer-logo { height: 50px; filter: brightness(0) invert(1); margin-bottom: 22px; }
.footer-brand p { color: rgba(255,255,255,0.6); margin-bottom: 22px; line-height: 1.75; font-size: 13px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); transition: color 0.3s ease; }
.footer-social a:hover svg { color: var(--black); }

.footer-heading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.7); transition: all 0.3s ease; }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 18px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item p { color: rgba(255,255,255,0.7); margin: 0; font-size: 13px; line-height: 1.55; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold); }

/* Forms */
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 45px;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(25px); transition: all 0.8s var(--transition-smooth); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-35px); transition: all 0.8s var(--transition-smooth); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(35px); transition: all 0.8s var(--transition-smooth); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-4px); }
.back-to-top svg { width: 22px; height: 22px; color: var(--black); }

/* Responsive */
@media (max-width: 1200px) {
    :root { --container-padding: 30px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .flooring-types { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step::after { display: none; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 35px; }
}

@media (max-width: 992px) {
    .nav-links, .nav-cta { display: none; }
    .nav-menu-btn { display: flex; }
    
    .hero-image { width: 100%; clip-path: none; }
    .hero-image::after { background: linear-gradient(to top, var(--black) 18%, rgba(0,0,0,0.55) 100%); }
    .hero-content { text-align: center; max-width: 100%; }
    .hero-label { justify-content: center; }
    .hero-label::before { display: none; }
    .hero-text { margin-left: auto; margin-right: auto; }
    .hero-highlight { justify-content: center; text-align: left; }
    .hero-actions { justify-content: center; }
    
    .two-col { grid-template-columns: 1fr; gap: 45px; }
    .two-col--reverse { direction: ltr; }
    
    .feature-grid { grid-template-columns: 1fr; gap: 25px; }
    .service-areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 55px; --container-padding: 20px; }
    
    .page-header { padding: 130px 0 65px; }
    .services-grid { grid-template-columns: 1fr; }
    .flooring-types { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; }
    .service-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .service-areas-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .content-image img { height: 320px; }
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
    color: var(--gold);
}

.testimonial-rating svg { width: 20px; height: 20px; }

.testimonial-author cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    font-style: normal;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.service-text {
    color: var(--gray);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--gold);
    display: none;
}

.process-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.process-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn { width: 100%; }
    .btn { width: 100%; }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .btn-group { flex-direction: column; }
    .flooring-types { grid-template-columns: 1fr; }
    .service-areas-grid { grid-template-columns: 1fr; }
    .cta-phone { flex-direction: column; text-align: center; }
    .cta-phone-text { text-align: center; }
}

