/* ==========================================================================
   Premium Light Glassmorphism Design System
   ========================================================================== */

:root {
    /* Color Palette - Premium Light Mode */
    --bg-light: #f8fafc;
    --bg-lighter: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --primary-color: #2563eb; /* Modern Blue */
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --accent-color: #f59e0b; /* Gold accent */
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --whatsapp: #25D366;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-bg-hover: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 80px 0;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-secondary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Dynamic Background Blobs for Glassmorphism Effect */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    border-radius: 50%;
}
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(37, 99, 235, 0.15); }
.blob-2 { top: 20%; right: -10%; width: 40vw; height: 40vw; background: rgba(124, 58, 237, 0.15); }
.blob-3 { top: 40%; left: 20%; width: 30vw; height: 30vw; background: rgba(245, 158, 11, 0.1); }
.blob-4 { top: 70%; right: 10%; width: 40vw; height: 40vw; background: rgba(37, 99, 235, 0.15); }
.blob-5 { bottom: -5%; left: -5%; width: 35vw; height: 35vw; background: rgba(239, 68, 68, 0.1); }

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

.position-relative {
    position: relative;
}

.relative-z {
    position: relative;
    z-index: 10;
}

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

/* ==========================================================================
   Glassmorphism Utility Classes
   ========================================================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.1);
}

.glass-card-solid {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.glass-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    box-shadow: var(--glass-shadow);
}

.glass-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.glass-icon-small:hover {
    background: var(--primary-gradient);
    color: white;
}

.glass-circle {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--glass-shadow);
}

.glass-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.glass-input {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    backdrop-filter: blur(5px);
}

.glass-input::placeholder {
    color: #94a3b8;
}

.glass-input:focus {
    background: #ffffff !important;
    border-color: var(--primary-color) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2) !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

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

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

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp-header {
    background: var(--whatsapp);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-primary);
    font-weight: 600;
}

.btn-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
    color: var(--primary-color);
}

.text-primary { color: var(--primary-color); }
.text-whatsapp { color: var(--whatsapp); }

/* ==========================================================================
   1. Top Bar
   ========================================================================== */
.top-bar {
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-top-bar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 4%;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-contact a:hover {
    color: var(--primary-color);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-social a:hover {
    color: var(--primary-color);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    font-weight: 500;
}

.lang-switcher .active {
    color: var(--primary-color);
}

.lang-switcher .divider {
    color: #cbd5e1;
}

/* ==========================================================================
   2. Header
   ========================================================================== */
.main-header {
    position: fixed;
    top: 36px; /* Below top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.glass-header {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.glass-header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 100%;
    padding: 0 4%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

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

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 250px;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown-menu li a {
    padding: 10px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.dropdown-menu li a:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* ==========================================================================
   3. Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background: url('../images/hero.jpg') no-repeat center center / cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(248, 250, 252, 0.8);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 3rem;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.sub-heading {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero (Subpages) */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 3.5rem;
}

.breadcrumbs {
    margin-top: 20px;
    font-weight: 500;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--primary-color);
}

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

.service-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .img-placeholder {
    transform: scale(1.1);
}

/* Background Images */
.bg-img-1 { background: url('../images/interior.jpg') no-repeat center center / cover; }
.bg-img-2 { background: url('../images/wedding.jpg') no-repeat center center / cover; }
.bg-img-3 { background: url('../images/ac.jpg') no-repeat center center / cover; }
.bg-img-4 { background: url('../images/ac.jpg') no-repeat center center / cover; }

.service-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-info p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.sub-service-card {
    padding: 2rem;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.sub-service-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.sub-service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* ==========================================================================
   5. About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.rounded-glass {
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.bg-img-about {
    height: 500px;
    background: url('../images/hero.jpg') no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}

.bg-img-about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 2rem;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.mission-vision {
    display: grid;
    gap: 20px;
}

.mv-box {
    display: flex;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
}

.mv-box h4 {
    margin-bottom: 5px;
}

/* ==========================================================================
   6. Why Choose Us / Benefits
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.feature-box .icon-wrapper {
    margin: 0 auto 1.5rem;
}

.feature-box h4 {
    margin-bottom: 10px;
}

/* ==========================================================================
   7. Working Process
   ========================================================================== */
.process-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 2;
}

.process-step .step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.process-arrow {
    font-size: 2rem;
    color: #cbd5e1;
}

.d-mobile {
    display: none;
}

/* ==========================================================================
   8. Featured Projects & Gallery
   ========================================================================== */
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 0;
}

.bg-proj-1 { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="%23cbd5e1"/></svg>') center/cover; }
.bg-proj-2 { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="%2394a3b8"/></svg>') center/cover; }
.bg-proj-3 { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="%23e2e8f0"/></svg>') center/cover; }
.bg-proj-4 { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="%23f1f5f9"/></svg>') center/cover; }

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    bottom: 0;
}

.project-info h4 {
    margin-bottom: 5px;
}

.project-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ==========================================================================
   9. Customer Reviews
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 2rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.bg-gradient-1 { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
.bg-gradient-2 { background: linear-gradient(135deg, #10b981, #059669); }
.bg-gradient-3 { background: linear-gradient(135deg, #f59e0b, #d97706); }

.reviewer-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.reviewer-info .date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.google-icon {
    color: #4285F4;
    font-size: 1.5rem;
}

.stars {
    color: #fbbc05;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-primary);
}

/* ==========================================================================
   10. FAQ
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

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

.accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.accordion-body {
    padding: 0 20px 20px;
    display: none;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .fa-plus { display: none; }
.accordion-item.active .fa-minus { display: block !important; }

/* ==========================================================================
   11 & 12. Contact Form & Map
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-form-wrapper {
    padding: 3rem;
}

.contact-form-wrapper h3 {
    margin-bottom: 2rem;
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select.form-control option {
    background: var(--bg-lighter);
    color: var(--text-primary);
}

.map-wrapper {
    padding: 10px;
    height: 100%;
    min-height: 400px;
}

.map-wrapper iframe {
    border-radius: 10px;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
.main-footer {
    padding: 80px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg-lighter);
    position: relative;
}

.glass-footer {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.company-info .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.company-info p {
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-col ul li a {
    color: var(--text-secondary);
}

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

.contact-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info ul li i {
    margin-top: 5px;
    color: var(--primary-color);
}

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

/* ==========================================================================
   Floating Elements & Animations
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--whatsapp);
    z-index: 99;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
}

.floating-wa:hover {
    background: var(--whatsapp);
    color: white;
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Banner Component */
.cta-banner {
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: white;
}

/* Pricing / Packages Component */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    text-align: center;
    padding: 3rem 2rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #10b981;
}

/* ==========================================================================
   Interior Design Specific Components
   ========================================================================== */
/* Split Hero Banner */
.split-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--bg-light);
}

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

.split-hero-content {
    padding-right: 20px;
}

.split-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.split-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
}

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

/* Trust Indicators */
.trust-indicators {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-item i {
    color: var(--whatsapp);
}

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

/* 4 Column Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Timeline Process */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.timeline-arrow {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

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

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    background: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion-content {
    background: var(--bg-light);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Before / After Placeholder */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    border-radius: 15px;
    overflow: hidden;
}

.ba-image {
    position: relative;
    height: 300px;
}

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

.ba-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Materials Icons */
.material-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    text-align: center;
}

.material-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* We Serve Pill Cards */
.pill-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    text-align: left;
    transition: all 0.3s ease;
}
.pill-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.pill-badge {
    display: inline-block;
    background: #fef3c7;
    color: #d97706;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Floating Action Buttons */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    color: var(--whatsapp);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
    z-index: 999;
    transition: var(--transition);
    border: 1px solid rgba(37, 211, 102, 0.2);
}
.floating-wa:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: white;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* ---- Tablet & Small Desktop (max 992px) ---- */
@media (max-width: 992px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero h1 { font-size: 2.8rem; }
    .page-hero h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2rem; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bg-img-about { height: 350px; }
    .experience-badge { right: 20px; bottom: 20px; }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .split-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .split-hero-content { padding-right: 0; text-align: center; order: 2; }
    .split-hero-content h1 { font-size: 2.5rem; }
    .split-hero-image { height: 400px; order: 1; margin-bottom: 20px; }

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

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }
    .ba-image { height: 220px; }
}

/* ---- Tablet Portrait / Large Phones (max 768px) ---- */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    /* --- Top Bar: hide on mobile --- */
    .top-bar { display: none; }

    /* --- Header --- */
    .main-header { top: 0; }
    .header-container {
        height: 64px;
        padding: 0 16px;
    }
    .logo { font-size: 1.4rem; }

    /* --- Mobile Nav --- */
    .nav-links {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0;
        transition: left 0.35s ease-in-out;
        overflow-y: auto;
        z-index: 1000;
        gap: 0;
    }
    .nav-links.active { left: 0; }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .nav-links a {
        padding: 14px 20px;
        font-size: 1rem;
        justify-content: space-between;
        white-space: normal;
    }
    .nav-links a::after { display: none; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(245,247,250,0.8);
        display: none;
        min-width: 100%;
        border-radius: 0;
        padding: 0;
    }
    .nav-links li.active .dropdown-menu { display: block; }
    .dropdown-menu li a {
        padding: 12px 20px 12px 36px;
        font-size: 0.9rem;
    }

    /* --- Header Actions --- */
    .header-actions {
        gap: 10px;
    }
    .header-actions .btn-primary { display: none; }
    .btn-whatsapp-header {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .mobile-menu-btn {
        display: block;
        font-size: 1.3rem;
        padding: 4px;
    }

    /* --- Hero --- */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero-content {
        padding: 2rem 1.2rem;
        max-width: 100%;
    }
    .hero h1 { font-size: 2rem; letter-spacing: -0.5px; }
    .sub-heading { font-size: 1rem; margin-bottom: 1.5rem; }
    .badge { font-size: 0.75rem; padding: 5px 12px; letter-spacing: 0.5px; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* --- Page Hero (Sub-pages) --- */
    .page-hero {
        padding: 100px 0 50px;
    }
    .page-hero h1 { font-size: 2rem; }
    .breadcrumbs { font-size: 0.85rem; }

    /* --- Section Titles --- */
    .section-title { margin-bottom: 2rem; }
    .section-title h2 { font-size: 1.75rem; }

    /* --- Grids: Stack to single column --- */
    .services-grid,
    .features-grid,
    .projects-gallery,
    .reviews-grid,
    .sub-services-grid,
    .grid-3,
    .grid-4,
    .pricing-grid,
    .material-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- Service Cards --- */
    .service-img { height: 180px; }
    .service-info { padding: 1.5rem; }
    .service-info h3 { font-size: 1.25rem; }

    /* --- About --- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bg-img-about { height: 280px; }
    .about-content .lead { font-size: 1rem; }
    .mv-box { flex-direction: column; gap: 10px; }

    /* --- Features --- */
    .feature-box { padding: 1.5rem; }

    /* --- Process --- */
    .process-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    .process-arrow { display: none; }
    .d-none-mobile { display: none; }
    .d-mobile { display: block; text-align: center; }

    .timeline-flex {
        flex-direction: column;
        gap: 16px;
    }
    .timeline-arrow { display: none; }

    /* --- Projects / Gallery --- */
    .project-card { height: 220px; }
    .project-tabs { gap: 8px; }
    .tab-btn { padding: 6px 16px; font-size: 0.85rem; }

    /* --- Reviews --- */
    .review-card { padding: 1.5rem; }
    .reviewer-info { gap: 10px; }
    .avatar { width: 42px; height: 42px; font-size: 1rem; }

    /* --- FAQ --- */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .faq-header h2 { font-size: 2rem; }
    .faq-accordion { max-width: 100%; }
    .accordion-header { padding: 16px; }
    .accordion-header h4 { font-size: 1rem; }

    /* --- Contact --- */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .map-wrapper { min-height: 280px; }

    /* --- CTA Banner --- */
    .cta-banner { padding: 2rem 1.5rem; border-radius: 14px; }
    .cta-banner h2 { font-size: 1.5rem; }

    /* --- Pricing --- */
    .pricing-card { padding: 2rem 1.5rem; }
    .price { font-size: 2.2rem; }

    /* --- Split Hero (Interior Design etc.) --- */
    .split-hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    .split-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .split-hero-content {
        padding-right: 0;
        text-align: center;
    }
    .split-hero-content h1 { font-size: 2rem; }
    .split-hero-image { height: 300px; }

    /* --- Trust Indicators --- */
    .trust-flex {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .trust-item { font-size: 0.85rem; }

    /* --- Before/After --- */
    .before-after-grid { grid-template-columns: 1fr; }
    .ba-image { height: 200px; }

    /* --- Testimonials --- */
    .testimonial-card { padding: 1.5rem; }

    /* --- Footer --- */
    .main-footer { padding: 50px 0 20px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-socials { justify-content: center; }
    .contact-info ul li { justify-content: center; }
    .footer-col h4 { margin-bottom: 1rem; }

    /* --- Floating Elements --- */
    .floating-wa {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 16px;
        font-size: 1.6rem;
    }
    .scroll-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 16px;
        font-size: 1rem;
    }

    /* --- Buttons --- */
    .btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    /* --- General --- */
    .container { padding: 0 16px; }
    .section-padding { padding: 50px 0; }


    /* --- Glass Cards --- */
    .glass-card:hover {
        transform: translateY(-3px);
    }

    /* --- Override inline grid styles for mobile --- */
    .row {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .icon-list,
    .icon-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}


/* ---- Small phones (max 480px) ---- */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .hero-content { padding: 1.5rem 1rem; }
    .sub-heading { font-size: 0.9rem; }

    .page-hero h1 { font-size: 1.6rem; }
    .page-hero { padding: 90px 0 40px; }

    .section-title h2 { font-size: 1.4rem; }
    .section-title { margin-bottom: 1.5rem; }

    .service-img { height: 150px; }
    .service-info { padding: 1.2rem; }
    .service-info h3 { font-size: 1.1rem; }
    .service-info p { font-size: 0.9rem; margin-bottom: 1rem; }

    .sub-service-card {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }

    .feature-box { padding: 1.2rem; }
    .glass-icon { width: 50px; height: 50px; font-size: 1.2rem; }

    .review-card { padding: 1.2rem; }
    .review-text { font-size: 0.9rem; }

    .cta-banner { padding: 1.5rem 1rem; }
    .cta-banner h2 { font-size: 1.3rem; }

    .pricing-card { padding: 1.5rem 1rem; }
    .price { font-size: 1.8rem; }
    .pricing-features li { font-size: 0.9rem; }

    .split-hero-content h1 { font-size: 1.6rem; }
    .split-hero-image { height: 220px; }

    .bg-img-about { height: 200px; }
    .experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        display: inline-block;
    }
    .experience-badge .years { font-size: 2rem; }

    .accordion-header { padding: 14px 12px; }
    .accordion-header h4 { font-size: 0.95rem; }

    .contact-form-wrapper { padding: 1.2rem; }
    .form-control { padding: 10px 12px; font-size: 0.9rem; }
    .map-wrapper { min-height: 220px; }

    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        border-radius: 25px;
    }

    .container { padding: 0 12px; }

    .footer-grid { gap: 24px; }
    .footer-col h4 { font-size: 1.05rem; }

    .floating-wa {
        width: 46px;
        height: 46px;
        bottom: 16px;
        left: 12px;
        font-size: 1.4rem;
    }
    .scroll-top {
        width: 38px;
        height: 38px;
        bottom: 16px;
        right: 12px;
    }

    /* Prevent horizontal overflow */
    .blob { display: none; }
}

/* ==========================================================================
   Merged from style.css — Unique utilities & animations
   ========================================================================== */

/* Text gradient utility (used in headings across all pages) */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism strong variant */
.glass-strong {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(200%);
}

/* Animation keyframes */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* AOS (Animate on Scroll) fallback for pages that use the library */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.001ms !important;
    }
}

/* Responsive image fallback */
img {
    max-width: 100%;
    height: auto;
    display: block;
/* Fix for inline grids that cause overflow on small screens */
@media (max-width: 768px) {
    div[style*="display: grid"][style*="minmax("] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    div[style*="display: grid"][style*="minmax(140px"] {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
        gap: 15px !important;
    }
}
