/*
Theme Name: Luz Windows & Doors
Theme URI: https://luzwindowsanddoors.com
Author: Luz Windows & Doors
Author URI: https://luzwindowsanddoors.com
Description: Custom theme for Luz Windows & Doors - Premium windows and doors in Southern California
Version: 1.0
License: Private
Text Domain: luz-theme
*/

/* ===== CSS VARIABLES ===== */
:root {
    --off-white: #FAF9F6;
    --white: #FFFFFF;
    --warm-beige: #E8E3D8;
    --wood-oak: #C8B596;
    --warm-tan: #D4C4A8;
    --black: #1A1A1A;
    --charcoal: #2C2C2C;
    --accent-gold: #B8976A;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

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

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

/* ===== HEADER & NAVIGATION ===== */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
}

.logo img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle::after {
    content: '\25BE';
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 0.8rem 0;
    margin-top: 1rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--warm-beige);
    border-left-color: var(--accent-gold);
    padding-left: 2rem;
}

.nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 3px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--black);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--accent-gold);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 1.1rem 2.8rem;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    letter-spacing: 0.5px;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--wood-oak);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184,151,106,0.4);
}

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

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

.btn-submit {
    background: var(--black);
    color: var(--white);
    width: 100%;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: var(--charcoal);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.5) 0%, rgba(44,44,44,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    color: var(--white);
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Hero Contact Form */
.hero-contact-form {
    position: absolute;
    top: 120px;
    right: 5%;
    width: 380px;
    background: rgba(250, 249, 246, 0.4);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 10;
}

.hero-contact-form h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: none;
}

.hero-contact-form .form-group {
    margin-bottom: 1rem;
}

.hero-contact-form input,
.hero-contact-form select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(200, 181, 150, 0.5);
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.hero-contact-form input:focus,
.hero-contact-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(184, 151, 106, 0.1);
}

.hero-contact-form input::placeholder {
    color: #888;
}

.hero-contact-form select {
    cursor: pointer;
    color: #333;
}

/* ===== SECTIONS ===== */
section {
    padding: 7rem 4%;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--charcoal);
    line-height: 1.8;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    background: var(--white);
    padding: 3rem 4%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.trust-item {
    padding: 1rem;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item h3 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.trust-item p {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 7rem 4%;
    background: var(--warm-beige);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--charcoal);
}

.about-image {
    position: relative;
    height: 550px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

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

/* ===== SERVICES SECTION ===== */
.services {
    padding: 7rem 4%;
    background: var(--off-white);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.15rem;
    color: var(--charcoal);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--wood-oak));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon {
    display: none;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
    padding-top: 1rem;
}

.service-card p {
    color: var(--charcoal);
    line-height: 1.7;
}

/* ===== MATERIALS SECTION ===== */
.materials {
    padding: 7rem 4%;
    background: var(--warm-tan);
}

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

.materials h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.material-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.material-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.material-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
}

/* ===== MANUFACTURERS SECTION ===== */
.manufacturers-section {
    background: var(--white);
    padding: 6rem 4%;
}

.manufacturers-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.manufacturers-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.manufacturers-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.manufacturers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.manufacturer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 140px;
    width: 100%;
    max-width: 240px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.manufacturer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background: var(--white);
}

.manufacturer-logo img {
    max-width: 180px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s;
}

.manufacturer-logo:hover img {
    transform: scale(1.05);
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--wood-oak));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-content {
    padding: 2.5rem;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 7rem 4%;
    background: var(--off-white);
}

.gallery h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 7rem 4%;
    background: var(--white);
}

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

.why-container h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.feature::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto 2rem;
}

.feature-icon {
    display: none;
}

.feature h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.feature p {
    color: var(--charcoal);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 7rem 4%;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 7rem 4%;
    background: var(--warm-beige);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.contact-item-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    min-width: 40px;
    font-weight: 300;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-item a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--warm-beige);
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--warm-tan) 100%);
    padding: 7rem 4%;
}

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

.section-header-testimonials {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-testimonials h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.overall-rating {
    margin-top: 1rem;
}

.stars {
    color: #FFB800;
    font-size: 2rem;
    letter-spacing: 0.3rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(184,151,106,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.testimonial-card .stars {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.reviewer {
    border-top: 2px solid var(--warm-beige);
    padding-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.reviewer-location {
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255,255,255,0.5);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonials-cta p {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 4% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    line-height: 2;
    display: block;
}

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

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* ===== PRODUCT PAGE HERO ===== */
.product-hero {
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 4% 6rem;
    text-align: center;
}

.product-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: var(--white);
}

.product-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

/* ===== PRODUCT PAGE CONTENT ===== */
.product-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4%;
}

.product-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.product-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.product-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.features-section {
    background: var(--warm-beige);
    padding: 5rem 4%;
}

.features-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 5px;
}

.feature-item::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto 2rem;
}

.feature-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--charcoal);
    line-height: 1.7;
}

/* ===== DOORS PAGE ===== */
.door-section {
    padding: 6rem 4%;
    scroll-margin-top: 80px;
}

.door-section:nth-child(even) {
    background: var(--warm-beige);
}

.door-section:nth-child(odd) {
    background: var(--white);
}

.door-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.door-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.door-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.door-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.door-section:nth-child(odd) .feature-card {
    background: var(--warm-beige);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.feature-card p {
    color: var(--charcoal);
    line-height: 1.7;
}

.feature-card::before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.door-nav {
    background: var(--charcoal);
    padding: 1.5rem 4%;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.door-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.door-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    transition: all 0.3s;
}

.door-nav a:hover {
    background: var(--accent-gold);
    color: var(--black);
}

/* ===== WINDOWS PAGE ===== */
.window-demo-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.window-demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.window-simulation {
    width: 100%;
    max-width: 300px;
    height: 350px;
    margin: 0 auto 2rem;
    perspective: 1000px;
    position: relative;
}

.window-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border: 8px solid #8B7355;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.window-sash {
    position: absolute;
    background: rgba(173, 216, 230, 0.3);
    border: 3px solid #8B7355;
    display: grid;
    gap: 3px;
    padding: 3px;
    transition: all 0.8s ease;
}

.window-pane {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.9) 0%,
        rgba(173,216,230,0.4) 50%,
        rgba(255,255,255,0.8) 100%);
    border: 1px solid rgba(139,115,85,0.3);
    position: relative;
}

.window-pane::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 40%;
    bottom: 60%;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.8) 0%,
        rgba(255,255,255,0) 100%);
    border-radius: 50%;
    opacity: 0.6;
}

.top-sash-fixed {
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    grid-template-columns: 1fr 1fr;
    background: rgba(173, 216, 230, 0.2);
}

.top-sash {
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    grid-template-columns: 1fr 1fr;
}

.bottom-sash {
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    grid-template-columns: 1fr 1fr;
}

.top-sash.open {
    transform: translateY(-100%);
}

.bottom-sash.open {
    transform: translateY(-50%);
}

.picture-window {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    background: rgba(173, 216, 230, 0.25);
}

.casement-sash {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: left center;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.casement-sash.open {
    transform: rotateY(-90deg);
}

.sliding-left {
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

.sliding-right {
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

.sliding-left.open {
    transform: translateX(100%);
}

.awning-sash {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: top center;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

.awning-sash.open {
    transform: rotateX(45deg);
}

.demo-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.demo-btn:hover {
    background: var(--wood-oak);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(184,151,106,0.4);
}

.demo-btn:active {
    transform: translateY(0);
}

/* Color Section */
.color-section {
    background: var(--white);
    padding: 5rem 4%;
    border-top: 1px solid var(--warm-beige);
}

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

.color-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.color-group h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.color-swatches {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.color-swatch {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.color-swatch:hover {
    transform: translateY(-5px);
}

.swatch-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--warm-beige);
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: border-color 0.3s;
}

.color-swatch:hover .swatch-circle {
    border-color: var(--accent-gold);
}

.swatch-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* Frame Types */
.frame-types-section {
    background: var(--warm-beige);
    padding: 5rem 4%;
}

.frame-type-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.frame-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.frame-icon {
    width: 100%;
    max-width: 250px;
    height: 200px;
    margin: 0 auto 2rem;
    background: var(--off-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== MOBILE MENU ACTIVE ===== */
.nav-links.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    gap: 1.5rem;
}

.nav-links.mobile-active li {
    margin: 0;
}

.dropdown.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0.5rem;
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        height: 80vh;
        min-height: 600px;
        background-attachment: scroll;
    }

    .hero-contact-form {
        display: none;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    section {
        padding: 5rem 4%;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.5rem !important;
    }

    .product-hero h1 {
        font-size: 2.5rem;
    }

    .color-options {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .color-swatches {
        justify-content: center;
    }

    .window-simulation {
        max-width: 250px;
        height: 300px;
    }

    .door-nav-container {
        gap: 1rem;
    }

    .door-nav a {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

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

    .manufacturers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .manufacturer-logo {
        height: 100px;
        max-width: 180px;
    }
}

/* ===== WORDPRESS OVERRIDES ===== */
/* Remove default WordPress margins/padding */
.wp-site-blocks {
    padding: 0 !important;
    margin: 0 !important;
}

body.page,
body.home {
    margin: 0;
    padding: 0;
}
