/* ============================================
   I-TISA DECOR - Custom Styles
   Brand Colors:
   - Royal Blue: #1e3a5f / #2c5282 / #4169e1
   - Rose Gold: #d4a89b / #e8c4b8 / #b89080
   - White: #ffffff
   - Light Gray: #f5f5f5
   - Text Dark: #333333
   ============================================ */

/* CSS Variables - Royal Blue & Rose Gold Theme */
:root {
    --primary-dark: #1e3a5f;
    --secondary-dark: #2c5282;
    --royal-blue: #4169e1;
    --royal-blue-light: #5a7fe8;
    --accent-gold: #d4a89b;
    --accent-rose: #e8c4b8;
    --rose-gold: #d4a89b;
    --rose-gold-light: #e8c4b8;
    --rose-gold-dark: #b89080;
    --copper: #b87333;
    --white: #ffffff;
    --light-gray: #f0f4f8;
    --text-dark: #1e3a5f;
    --text-light: #4a5568;
    --border-color: #e2e8f0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(30, 58, 95, 0.98);
    box-shadow: 0 2px 20px rgba(30, 58, 95, 0.2);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.brand-text {
    color: var(--white);
}

.brand-text h4 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.brand-text span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--rose-gold-light);
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 10px 20px !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-gold), var(--rose-gold-light));
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 40px);
}

.navbar-toggler {
    border: none;
    color: var(--white);
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85), rgba(44, 82, 130, 0.92)),
                url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-logo {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    filter: drop-shadow(0 10px 40px rgba(232, 196, 184, 0.5));
    border: 3px solid var(--rose-gold);
    border-radius: 50%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.logo-img-large {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-script);
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--rose-gold-light);
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--rose-gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: var(--font-body);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid var(--rose-gold);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: var(--rose-gold);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--royal-blue), var(--rose-gold));
}

.section-header p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ============================================
   EXPERTISE SECTION - MATCHING REFERENCE COLORS
   ============================================ */
.expertise-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 50%, #f5f0f8 100%);
    position: relative;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212, 168, 155, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(65, 105, 225, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.expertise-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 155, 0.2);
}

.expertise-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.expertise-card:hover .expertise-accent {
    transform: scaleX(1);
}

/* Royal Blue & Rose Gold Theme Colors */
.expertise-accent-coral {
    background: linear-gradient(90deg, #4169e1, #5a7fe8);
}

.expertise-accent-red {
    background: linear-gradient(90deg, #d4a89b, #e8c4b8);
}

.expertise-accent-gold {
    background: linear-gradient(90deg, #1e3a5f, #2c5282);
}

.expertise-accent-teal {
    background: linear-gradient(90deg, #b89080, #d4a89b);
}

.expertise-accent-blue {
    background: linear-gradient(90deg, #2c5282, #4169e1);
}

.expertise-accent-purple {
    background: linear-gradient(90deg, #e8c4b8, #f0d5cc);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 168, 155, 0.35), 0 0 0 1px rgba(232, 196, 184, 0.4);
}

.expertise-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Icon colors matching royal blue & rose gold theme */
.expertise-icon-coral {
    background: linear-gradient(135deg, #4169e1, #5a7fe8);
}

.expertise-icon-red {
    background: linear-gradient(135deg, #d4a89b, #e8c4b8);
}

.expertise-icon-gold {
    background: linear-gradient(135deg, #1e3a5f, #2c5282);
}

.expertise-icon-teal {
    background: linear-gradient(135deg, #b89080, #d4a89b);
}

.expertise-icon-blue {
    background: linear-gradient(135deg, #2c5282, #4169e1);
}

.expertise-icon-purple {
    background: linear-gradient(135deg, #e8c4b8, #f0d5cc);
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

.expertise-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-weight: 600;
}

.expertise-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   MATERIALS SECTION - MODERN PROFESSIONAL
   ============================================ */
.materials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.material-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(212, 168, 155, 0.25);
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 168, 155, 0.4), 0 0 0 1px rgba(232, 196, 184, 0.35);
}

.material-header {
    padding: 24px 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(30, 58, 95, 0.06);
}

.material-header h4 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 600;
}

.material-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.material-tag-green {
    background: linear-gradient(135deg, #4a9b8e, #3d8b7e);
}

.material-tag-gray {
    background: linear-gradient(135deg, #6c757d, #5a6268);
}

.material-tag-beige {
    background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold));
}

.material-tag-brown {
    background: linear-gradient(135deg, #8b7355, #7a6548);
}

.material-image-container {
    padding: 0;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.material-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.material-card:hover .material-image {
    transform: scale(1.05);
}

.material-body {
    padding: 20px 24px 24px;
}

.material-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.material-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(65, 105, 225, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(65, 105, 225, 0.12);
}

.spec-item i {
    color: var(--royal-blue);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.spec-item span {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================
   FINISHES SECTION
   ============================================ */
.finishes-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: var(--white);
}

.finishes-section .section-header h2 {
    color: var(--white);
}

.finishes-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.finish-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 168, 155, 0.35);
    box-shadow: 0 6px 25px rgba(212, 168, 155, 0.2);
    transition: all 0.4s ease;
}

.finish-card:hover {
    box-shadow: 0 12px 40px rgba(212, 168, 155, 0.45), 0 0 0 1px rgba(232, 196, 184, 0.4);
}

.finish-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.finish-card:hover .finish-image {
    transform: scale(1.1);
}

.finish-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.95), transparent);
    padding: 40px 25px 25px;
}

.finish-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
    font-style: italic;
}

.finish-overlay span {
    color: var(--rose-gold-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.product-showcase {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(212, 168, 155, 0.2);
    transition: all 0.4s ease;
}

.product-showcase:hover {
    box-shadow: 0 15px 50px rgba(212, 168, 155, 0.35), 0 0 0 1px rgba(232, 196, 184, 0.3);
}

.product-showcase-row {
    display: flex;
    flex-wrap: wrap;
}

.product-showcase-row.reverse {
    flex-direction: row-reverse;
}

.product-image-col {
    flex: 1;
    min-width: 300px;
}

.product-image-col img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.product-content-col {
    flex: 1;
    min-width: 300px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-content-col.dark-bg {
    background: var(--primary-dark);
    color: var(--white);
}

.product-content-col h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-style: italic;
}

.product-content-col h3 span {
    color: var(--rose-gold-light);
}

.product-content-col .subtitle {
    color: var(--rose-gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.product-content-col p {
    color: var(--text-light);
    line-height: 1.8;
}

.product-content-col.dark-bg p {
    color: rgba(255, 255, 255, 0.7);
}

.brand-logos {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.brand-logo-item {
    text-align: center;
}

.brand-logo-item i {
    font-size: 2.5rem;
    color: var(--rose-gold-light);
    margin-bottom: 10px;
}

.brand-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 8px;
    background: var(--white);
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand-logo-item span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   DOORS SECTION
   ============================================ */
.doors-section {
    padding: 100px 0;
    background: var(--white);
}

.doors-showcase {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #4169e1 100%);
    border-radius: 20px;
    padding: 60px;
    color: var(--white);
    text-align: center;
}

.doors-showcase h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-style: italic;
}

.doors-showcase p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.7);
}

.door-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.door-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 350px;
    border: 1px solid rgba(212, 168, 155, 0.4);
    box-shadow: 0 4px 20px rgba(212, 168, 155, 0.25), 0 0 0 1px rgba(232, 196, 184, 0.15);
    transition: all 0.4s ease;
}

.door-item:hover {
    box-shadow: 0 8px 35px rgba(212, 168, 155, 0.4), 0 0 0 1px rgba(232, 196, 184, 0.3);
}

.door-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.door-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: var(--white);
}

.contact-section .section-header h2 {
    color: var(--white);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 155, 0.15);
    border: 1px solid var(--rose-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--rose-gold-light);
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 168, 155, 0.3);
    box-shadow: 0 8px 30px rgba(212, 168, 155, 0.15);
    transition: all 0.4s ease;
}

.contact-form:hover {
    box-shadow: 0 12px 40px rgba(212, 168, 155, 0.3), 0 0 0 1px rgba(232, 196, 184, 0.35);
    border-color: rgba(212, 168, 155, 0.45);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--rose-gold);
    color: var(--white);
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Custom Select Dropdown Styling */
.form-select-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 40px 15px 15px;
    border-radius: 8px;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a89b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all 0.3s ease;
}

.form-select-custom:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--rose-gold);
    color: var(--white);
    outline: none;
}

.form-select-custom option {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px;
}

.form-select-custom option:hover,
.form-select-custom option:focus,
.form-select-custom option:checked {
    background: var(--rose-gold);
    color: var(--white);
}

/* Contact Links Styling */
.contact-details a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--rose-gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #152a45;
    padding: 40px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    filter: drop-shadow(0 4px 10px rgba(212, 168, 155, 0.4));
}

.logo-img-small {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer p {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--rose-gold);
    transform: translateY(-3px);
    color: var(--white);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .product-content-col {
        padding: 40px 30px;
    }
    
    .doors-showcase {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        background: rgba(30, 58, 95, 0.98);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 150px 20px 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 280px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .expertise-card {
        padding: 30px 20px;
    }
    
    .product-content-col h3 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .doors-showcase h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .finish-card {
        height: 300px;
    }
    
    .product-image-col img {
        min-height: 250px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
