/* ============================================
   RAJAN CARPENTER & INTERIOR WORKS
   Enhanced Professional Stylesheet - Full Version
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}


:root {
    /* Enhanced Professional Color Palette */
    --primary-brown: #7C4D3F;
    --secondary-brown: #9A6B5D;
    --accent-gold: #D4A96A;
    --dark-wood: #3E2723;
    --light-wood: #EFEBE9;
    --white: #FFFFFF;
    --off-white: #FAF9F6;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #757575;
    --dark-text: #2C1810;
    --success: #4CAF50;
    --error: #F44336;
    --warning: #FF9800;
    --info: #2196F3;
    
    /* Professional Typography */
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Roboto', 'Inter', sans-serif;
    
    /* Professional Spacing */
    --container-max: 1320px;
    --section-padding: 100px 0;
    --card-radius: 16px;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-elevated: 0 15px 50px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--dark-text);
    background-color: var(--off-white);
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--dark-wood);
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p {
    margin-bottom: 1rem;
    color: #444;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.w-100 { width: 100%; }

/* Professional Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(124, 77, 63, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 77, 63, 0.3);
}

.btn-secondary {
    background: var(--accent-gold);
    color: var(--dark-wood);
    box-shadow: 0 4px 15px rgba(212, 169, 106, 0.2);
}

.btn-secondary:hover {
    background: #C99A54;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 169, 106, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
}

.btn-outline:hover {
    background: var(--primary-brown);
    color: var(--white);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #45a049;
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Professional Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 77, 63, 0.1);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-wood);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-brown);
    z-index: 1002;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-brown);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section - Professional */
.hero {
    background: linear-gradient(135deg, var(--dark-wood) 0%, var(--primary-brown) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4a96a' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFFFFF, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-elevated);
    transition: transform var(--transition-normal);
}

.hero-image:hover img {
    transform: scale(1.02);
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(124, 77, 63, 0.1);
    animation: slideUp 0.6s ease-out 1s both;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-brown);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-wood);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Common Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Preview */
.services-preview {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a96a' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.services-preview > * {
    position: relative;
    z-index: 1;
}

/* Unique Section Backgrounds */
.about-bg {
    background: linear-gradient(135deg, var(--light-wood) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    border-top: 1px solid rgba(124, 77, 63, 0.1);
    border-bottom: 1px solid rgba(124, 77, 63, 0.1);
}

.services-bg {
    background: linear-gradient(135deg, rgba(212, 169, 106, 0.05) 0%, var(--white) 100%) !important;
    border-top: 1px solid rgba(212, 169, 106, 0.2);
    border-bottom: 1px solid rgba(212, 169, 106, 0.2);
}

.services-preview-bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--light-wood) 100%) !important;
    border-top: 1px solid rgba(124, 77, 63, 0.1);
    border-bottom: 1px solid rgba(124, 77, 63, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
    align-items: stretch;
}

.service-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid rgba(124, 77, 63, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 169, 106, 0.08), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover::after {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(212, 169, 106, 0.3);
    box-shadow: 0 20px 60px rgba(124, 77, 63, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 2rem;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(124, 77, 63, 0.2);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(124, 77, 63, 0.3);
}

.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-wood);
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
    border-radius: 2px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover h3::after {
    opacity: 1;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Services Section Details */
.service-detail {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 50px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(124, 77, 63, 0.08);
    position: relative;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 169, 106, 0.05), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail:hover::before {
    left: 100%;
}

.service-detail:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(124, 77, 63, 0.15);
    border-color: rgba(212, 169, 106, 0.2);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.service-detail:hover .service-image img {
    transform: scale(1.08);
}

.service-info {
    padding: 35px;
    position: relative;
    z-index: 1;
}

.service-info h2 {
    color: var(--primary-brown);
    margin-bottom: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.service-info h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
    border-radius: 2px;
}

.service-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-info h3 {
    color: var(--dark-wood);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-detail .btn {
    margin-top: 25px;
    align-self: flex-start;
}

/* Featured Products */
.featured-products {
    padding: var(--section-padding);
    background: var(--light-wood);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
    border: 1px solid rgba(124, 77, 63, 0.1);
    position: relative;
}

.product-card::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.6s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-elevated);
}

.product-image {
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.product-description {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-quality {
    color: var(--primary-brown);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown);
}

/* Enhanced Review System Styles */
.review-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

/* Customer Reviews Section - Modern Button Layout */
.review-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.review-btn {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-weight: 600;
}

.review-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(124, 77, 63, 0.3);
}

.review-btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 77, 63, 0.4);
    background: linear-gradient(135deg, var(--secondary-brown), var(--primary-brown));
}

.review-btn.btn-secondary {
    background: var(--accent-gold);
    color: var(--dark-wood);
    box-shadow: 0 4px 15px rgba(212, 169, 106, 0.3);
}

.review-btn.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 169, 106, 0.4);
    background: #C99A54;
}

.review-btn i {
    font-size: 1.1rem;
}

/* Responsive Review Buttons */
@media (max-width: 576px) {
    .review-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .review-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
}

.review-stats {
    background: var(--light-wood);
    border-radius: var(--card-radius);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(124, 77, 63, 0.1);
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-wood);
    line-height: 1;
}

.rating-stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rating-count {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.rating-breakdown {
    margin-top: 20px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating-label {
    min-width: 30px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-brown));
    transition: width 1s ease-out;
}

.rating-count {
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Review Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(124, 77, 63, 0.1);
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    font-size: 120px;
    color: var(--accent-gold);
    opacity: 0.05;
    position: absolute;
    top: -30px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.reviewer-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--dark-wood);
}

.reviewer-details .rating-stars {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.verified-badge {
    background: var(--success);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.review-date {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.review-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-wood);
}

.review-text {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.service-tag {
    background: var(--light-wood);
    color: var(--primary-brown);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.helpful-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.helpful-btn:hover {
    background: #f0f0f0;
    border-color: #999;
    color: #333;
}

.helpful-btn.active {
    background: var(--primary-brown);
    border-color: var(--primary-brown);
    color: white;
}

/* Review Form */
.review-form-container {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(124, 77, 63, 0.1);
    margin-top: 40px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 20px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color var(--transition-fast);
    padding: 0 2px;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--accent-gold);
}

/* Review Filters */
.reviews-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--light-wood);
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

#loadMoreReviews {
    padding: 12px 40px;
    font-size: 1rem;
}

/* No Reviews Message */
.no-reviews {
    text-align: center;
    padding: 60px 20px;
    color: var(--dark-gray);
}

.no-reviews i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-reviews h3 {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

/* Loading Spinner */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-brown);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.success-message {
    background: linear-gradient(135deg, var(--success), #45a049);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    animation: slideIn 0.3s ease;
}

.error-message {
    background: linear-gradient(135deg, var(--error), #d32f2f);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    animation: slideIn 0.3s ease;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 50px auto;
    width: 90%;
    max-width: 600px;
    border-radius: var(--card-radius);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(124, 77, 63, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.modal-header h2 {
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    line-height: 1;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-wood);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(124, 77, 63, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Footer */
.footer {
    background: var(--dark-wood);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
    color: var(--dark-wood);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(100%);
    opacity: 0;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(124, 77, 63, 0.1);
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left: 4px solid var(--success);
}

.notification.error {
    border-left: 4px solid var(--error);
}

.notification.warning {
    border-left: 4px solid var(--warning);
}

.notification.info {
    border-left: 4px solid var(--info);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .hero .container {
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }

    .hero .container,
    .about-grid,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
    }

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

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

     .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 20px;
    }
    :root {
        --section-padding: 80px 0;
        --container-max: 720px;
    }

    .container {
        max-width: var(--container-max);
        padding: 0 20px;
    }

    .section-padding {
        padding: var(--section-padding);
    }

    /* Enhanced Mobile Navigation */
    .nav-toggle {
        display: block;
        padding: 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        transition: all var(--transition-fast);
    }

    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }

    @media (max-width: 768px) {
        .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image {
    margin-bottom: 20px;
}


    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding-top: 80px;
        transition: 0.3s ease;
    }

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


    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        margin: 10px 0;
        opacity: 0;
        transform: translateX(40px);
        animation: slideInFromRight 0.4s ease forwards;
    }

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

    .nav-menu a {
        display: flex;
        width: 100%;
        padding: 18px 20px;
        border-radius: 12px;
        justify-content: flex-start;
        color: white;
        font-size: 17px;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        left: 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: white;
        transform: translateX(8px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .nav-menu.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.7);
        backdrop-filter: blur(3px);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

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

    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(40px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Enhanced Mobile Hero */
    .hero {
        min-height: 70vh;
        padding: 60px 0;
    }

    .hero .container {
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn {
        min-width: 200px;
        padding: 16px 32px;
        font-size: 1rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .hero-stats {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 40px;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 20px;
        border-radius: 16px;
    }

    .stat-item {
        text-align: center;
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Enhanced Mobile Layouts */
    .testimonials-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
        text-align: center;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .product-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .product-info {
        padding: 20px;
    }

    .review-form-container {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .modal-content {
        width: 95%;
        margin: 30px auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-body {
        padding: 25px 20px;
    }

    /* Enhanced Mobile Forms */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 16px 18px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
    }

    .btn {
        padding: 16px 32px;
        font-size: 1rem;
        min-height: 50px;
        border-radius: 12px;
    }

    .btn-block {
        width: 100%;
        margin-top: 10px;
    }

    /* Enhanced Mobile Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h3 {
        justify-content: center;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
    }

    /* Enhanced Mobile WhatsApp Button */
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 65px;
        height: 65px;
        font-size: 28px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }

    /* Enhanced Mobile Notifications */
    .notification {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    /* Keep about stats in one row on mobile */
    .about-stats .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .about-stats .stat-item {
        padding: 15px 8px;
    }

    .about-stats .stat-number {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .about-stats .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 60px 0;
        --container-max: 100%;
    }

    .container {
        max-width: var(--container-max);
        padding: 0 16px;
    }

    .section-padding {
        padding: var(--section-padding);
    }

    /* Ultra Mobile Optimizations */
    .hero {
        min-height: 60vh;
        padding: 50px 0;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        min-width: 180px;
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }

    .stat-item {
        padding: 15px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Enhanced Small Screen Cards */
    .service-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .product-card {
        border-radius: 15px;
        overflow: hidden;
    }

    .product-image {
        height: 180px;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    /* Enhanced Small Screen Forms */
    .review-form-container {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 16px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    /* Enhanced Small Screen Footer */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-col h3 {
        font-size: 1.1rem;
    }

    .footer-col p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 15px;
    }

    /* Enhanced Small Screen Navigation */
    .nav-menu {
        width: 95%;
        max-width: 300px;
        padding: 80px 20px 30px;
    }

    .nav-menu a {
        padding: 16px 18px;
        font-size: 16px;
    }

    /* Enhanced Small Screen Modal */
    .modal-content {
        width: 98%;
        margin: 20px auto;
        border-radius: 15px;
    }

    .modal-header {
        padding: 20px 25px;
        border-radius: 15px 15px 0 0;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 20px 15px;
    }

    /* Enhanced Small Screen WhatsApp */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    /* Enhanced Small Screen Notifications */
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 14px 18px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    /* Enhanced Small Screen Section Titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .section-title::after {
        width: 50px;
        height: 2px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    /* Enhanced Small Screen Review Stats */
    .overall-rating {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .rating-number {
        font-size: 2.8rem;
    }

    .rating-breakdown {
        margin-top: 25px;
    }

    .rating-bar {
        margin-bottom: 12px;
    }

    /* Enhanced Small Screen FAQ */
    .faq-grid {
        gap: 20px;
    }

    .faq-item h3 {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-item p {
        font-size: 0.9rem;
        padding: 0 20px 20px;
    }
}

/* Enhanced Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }

    .service-card:hover,
    .product-card:hover {
        transform: none;
    }

    .nav-menu a:hover {
        transform: none;
    }

    .social-links a:hover {
        transform: none;
    }

    .whatsapp-float:hover {
        transform: none;
    }
}

/* Enhanced Focus States for Accessibility */
.btn:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.nav-menu a:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Enhanced Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* About Section Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-normal);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text {
    padding: 20px 0;
}

.about-text h2 {
    color: var(--primary-brown);
    margin-bottom: 25px;
    font-size: 2.2rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
    border-radius: 2px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-stats {
    padding: 20px 0;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-stats .stat-item {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(124, 77, 63, 0.08);
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-normal);
}

.about-stats .stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-medium);
}

.about-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    line-height: 1;
    margin-bottom: 10px;
}

.about-stats .stat-label {
    font-size: 1rem;
    color: var(--dark-wood);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Unique Section Backgrounds */
.services-preview-bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--light-wood) 100%) !important;
    border-top: 1px solid rgba(124, 77, 63, 0.1);
    border-bottom: 1px solid rgba(124, 77, 63, 0.1);
}

.about-bg {
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(212, 169, 106, 0.08) 100%) !important;
    border-top: 1px solid rgba(212, 169, 106, 0.1);
    border-bottom: 1px solid rgba(212, 169, 106, 0.1);
}

.services-bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(124, 77, 63, 0.05) 100%) !important;
    border-top: 1px solid rgba(124, 77, 63, 0.1);
    border-bottom: 1px solid rgba(124, 77, 63, 0.1);
}

.contact-bg {
    background: linear-gradient(135deg, var(--light-wood) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    border-top: 1px solid rgba(124, 77, 63, 0.1);
    border-bottom: 1px solid rgba(124, 77, 63, 0.1);
}

/* FAQ Section Background */
section.services-preview:not(#services-preview):not(#about):not(#services):not(#contact) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(212, 169, 106, 0.05) 100%) !important;
    border-top: 1px solid rgba(212, 169, 106, 0.1);
    border-bottom: 1px solid rgba(212, 169, 106, 0.1);
}

/* Contact Section Enhanced Styles */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

/* Contact Info Row - Horizontal Layout */
.contact-info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}

.contact-info-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid rgba(124, 77, 63, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 169, 106, 0.08), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.contact-info-card:hover::after {
    opacity: 0.1;
}

.contact-info-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 169, 106, 0.3);
    box-shadow: 0 20px 60px rgba(124, 77, 63, 0.15);
}

.contact-info-card .info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 20px;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(124, 77, 63, 0.2);
    position: relative;
}

.contact-info-card .info-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(124, 77, 63, 0.3);
}

.contact-info-card .info-content h4 {
    color: var(--dark-wood);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
}

.contact-info-card .info-content h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
    border-radius: 1px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.contact-info-card:hover .info-content h4::after {
    opacity: 1;
}

.contact-info-card .info-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-info-card .info-content p strong {
    color: var(--primary-brown);
    font-weight: 600;
}

.contact-info-card .card-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all var(--transition-fast);
}

.contact-info-card .card-link:hover {
    color: var(--accent-gold);
    transform: translateX(3px);
}

.contact-info-card .number-link,
.contact-info-card .email-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.contact-info-card .number-link:hover,
.contact-info-card .email-link:hover {
    color: var(--accent-gold);
}

.info-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid rgba(124, 77, 63, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 169, 106, 0.08), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover::before {
    left: 100%;
}

.info-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.info-card:hover::after {
    opacity: 0.1;
}

.info-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(212, 169, 106, 0.3);
    box-shadow: 0 20px 60px rgba(124, 77, 63, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(124, 77, 63, 0.2);
    position: relative;
}

.info-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(124, 77, 63, 0.3);
}

.info-content h3 {
    color: var(--dark-wood);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}

.info-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
    border-radius: 2px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.info-card:hover .info-content h3::after {
    opacity: 1;
}

.info-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 8px;
}

.info-content p strong {
    color: var(--primary-brown);
    font-weight: 600;
}

/* Contact Stats - Display in Row */
.contact-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    align-items: flex-start;
}

/* Enhanced Contact Form Styles */
.contact-form-section {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(124, 77, 63, 0.08);
    margin-top: 50px;
}

.contact-form-section h3 {
    color: var(--primary-brown);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
}

.contact-form-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
    border-radius: 2px;
}

/* Enhanced Quick Contact Buttons */
.quick-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.quick-buttons .btn {
    min-width: 160px;
    padding: 16px 24px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-normal);
}

.quick-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .info-card {
        padding: 30px 25px;
    }

    .info-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .info-content h3 {
        font-size: 1.3rem;
    }

    .contact-form-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .contact-form-section h3 {
        font-size: 1.5rem;
    }

    .quick-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .quick-buttons .btn {
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .info-card {
        padding: 25px 20px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .info-content h3 {
        font-size: 1.2rem;
    }

    .contact-form-section {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .quick-buttons .btn {
        min-width: 180px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* FAQ Section Styles Removed */

@media (max-width: 768px) {
    .faq-accordion {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 15px 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* CTA Box Spotlight Effect */
.cta-box {
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: -200%;
    background: radial-gradient(circle, rgba(212, 169, 106, 0.4) 0%, transparent 70%);
    background-position: 0% 0%;
    animation: spotlight 12s infinite;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes spotlight {
    0%, 12% { background-position: 0% 0%; }
    12%, 25% { background-position: 100% 0%; }
    25%, 37% { background-position: 100% 100%; }
    37%, 50% { background-position: 0% 100%; }
    50%, 62% { background-position: 0% 0%; }
    62%, 75% { background-position: 100% 0%; }
    75%, 87% { background-position: 100% 100%; }
    87%, 100% { background-position: 0% 100%; }
}
/* ===== RESPONSIVE FIXES - ONLY THIS ===== */

/* Fix 1: Hero stats mobile */
@media (max-width: 768px) {
    .hero-stats {
        position: relative !important;
        bottom: auto !important;
        left: 0 !important;
        right: 0 !important;
        margin-top: 30px !important;
    }
    .hero .container {
        grid-template-columns: 1fr !important;
    }
    .hero-content {
        text-align: center !important;
    }
    .hero-buttons {
        justify-content: center !important;
    }
}

/* Fix 2: Services grid tablet */
@media (min-width: 769px) and (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* Fix 3: Products grid tablet */
@media (min-width: 577px) and (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* Fix 4: About stats mobile */
@media (max-width: 768px) {
    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .about-stats .stat-item {
        padding: 15px 10px !important;
    }
}

/* Fix 5: Contact row tablet */
@media (max-width: 992px) and (min-width: 769px) {
    .contact-info-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .contact-info-row {
        grid-template-columns: 1fr !important;
    }
    .contact-stats {
        flex-direction: column !important;
    }
    .quick-buttons {
        flex-direction: column !important;
    }
}

/* Fix 6: Container padding small devices */
@media (max-width: 400px) {
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}
@media (max-width: 360px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Fix 7: Footer social icons */
@media (max-width: 576px) {
    .social-links a {
        width: 40px !important;
        height: 40px !important;
    }
}
@media (max-width: 400px) {
    .social-links a {
        width: 35px !important;
        height: 35px !important;
    }
}

/* Fix 8: Review grid tablet */
@media (min-width: 769px) and (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Fix 9: Review filters mobile */
@media (max-width: 576px) {
    .reviews-filter {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    .filter-btn {
        width: 100% !important;
        padding: 8px 5px !important;
        font-size: 0.8rem !important;
    }
}

/* Fix 10: Modal mobile */
@media (max-width: 576px) {
    .modal-content {
        width: 95% !important;
        margin: 20px auto !important;
    }
    .modal-body {
        padding: 20px !important;
    }
}