/* ======= Base Styles ======= */
:root {
    --primary-color: #d35400;
    --secondary-color: #34495e;
    --accent-color: #2ecc71;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --text-color: #2c3e50;
    --border-color: #e0e0e0;
    --section-padding: 100px 0;
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --gold-accent: #f39c12;
    --dark-accent: #8e44ad;
    --font-primary: 'Poppins', sans-serif;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Image Optimization */
.service-img img, .gallery-item img, .testimonial-video img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Critical CSS - move to top */
body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #f9f7f4;
    background-image: linear-gradient(120deg, #f9f7f4 0%, #fff 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Contrast Improvement */
.badge-item span, .hero-content p, .testimonial-content p, .info-card p {
    color: #f8f9fa; /* Improved from white for better contrast */
}

.service-card p, .feature p {
    color: #444; /* Improved from #555/#6c757d for better contrast */
}

/* Heading Order Fix */
h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(211, 84, 0, 0.4);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(52, 73, 94, 0.3);
}

.btn-secondary:hover {
    background-color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(52, 73, 94, 0.4);
    color: white;
}

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

.btn-whatsapp:hover {
    background-color: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: var(--font-primary);
}

.section-header h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.section-header p {
    max-width: 600px;
    margin: 20px auto 0;
    color: #555;
    font-size: 16px;
}

/* ======= Header ======= */
header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
}

header.sticky {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.logo span:first-child, 
.logo span:last-child {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
}

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

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

.btn-contact {
    padding: 10px 22px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white !important;
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.2);
}

.btn-contact:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(211, 84, 0, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--dark-color);
}

/* ======= Hero Section ======= */
.hero {
    height: 100vh;
    background-image: url('img/amitab_interior.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 76px;
    background-repeat: no-repeat;
}

/* Fix for Hero section on mobile devices */
@media (max-width: 768px) {
    .hero {
        height: auto !important;
        min-height: 90vh !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        margin-top: 76px !important;
        padding: 100px 0 60px !important;
    }
    
    .hero .overlay {
        background: linear-gradient(to bottom, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7)) !important;
    }
    
    /* Force background image to maintain aspect ratio */
    body::before {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    
    /* Adding additional spacing at the bottom for mobile */
    .hero-content {
        padding-bottom: 60px !important;
    }
    
    /* Ensure hero service selector is properly styled */
    .hero-service-selector {
        margin-top: 30px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: white;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 15px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.trust-badge {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 30px;
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.badge-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
}

.badge-item span {
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.badge-item .rating {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.badge-item .rating i {
    color: #FFD700;
    margin-right: 3px;
}

.badge-item .rating strong {
    color: white;
    font-weight: 700;
}

.hero-service-selector {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    max-width: 600px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary-color);
}

.hero-service-selector h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.selector-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-dropdown {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border-radius: 4px;
    border: none;
    font-family: var(--font-primary);
    font-size: 15px;
    background-color: white;
    color: var(--dark-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.action-buttons .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .selector-container {
        flex-direction: column;
    }
    
    .hero-dropdown, .action-buttons {
        width: 100%;
    }

    .action-buttons {
        margin-top: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .action-buttons .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .btn i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .action-buttons .btn {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .action-buttons .btn i {
        margin-right: 5px;
        font-size: 13px;
    }
    
    .hero-service-selector {
        padding: 15px;
    }
    
    .hero-service-selector h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .hero-dropdown {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* ======= Services Section ======= */
.services {
    padding: var(--section-padding);
    background-color: #fff;
    background-image: 
        radial-gradient(#e9e9e9 1px, transparent 1px),
        radial-gradient(#e9e9e9 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.service-card {
    background-color: white;
    padding: 0 0 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--gold-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.service-img {
    height: 220px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    padding: 0 20px;
    color: var(--dark-color);
}

.service-card p {
    color: #555;
    font-size: 15px;
    padding: 0 20px;
}

.cta-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 25px;
}

/* ======= Brands Section ======= */
.brands {
    padding: var(--section-padding);
    background-color: #f5f7fa;
}

.brands-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.brand-logo {
    width: 140px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: var(--transition);
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ======= Gallery Section ======= */
.gallery {
    padding: var(--section-padding);
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(211, 84, 0, 0.05);
    top: -150px;
    left: -150px;
    z-index: 0;
}

.gallery::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.05);
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 15px;
}

.filter-btn {
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.2);
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: var(--card-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

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

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

.gallery-overlay h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
    color: #eee;
    margin-bottom: 20px;
}

.view-project {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.view-project:hover {
    background-color: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Fix for testimonials section - text only version */
.testimonials {
    margin-top: 70px;
    padding: 30px 0;
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .section-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    margin-bottom: 25px;
    text-align: center;
}

.testimonials .section-header h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    flex-grow: 1;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 60px;
    color: rgba(211, 84, 0, 0.1);
    position: absolute;
    top: -20px;
    left: -8px;
    font-family: Georgia, serif;
}

.client-info {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.testimonial-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.testimonial-content span {
    font-size: 14px;
    color: var(--primary-color);
}

/* ======= Why Choose Us Section ======= */
.why-choose-us {
    padding: var(--section-padding);
    background-color: #f5f7fa;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(211, 84, 0, 0.05) 100%);
    z-index: 0;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.feature {
    padding: 35px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(211, 84, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    background-color: var(--dark-color);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 50%);
    background-size: 10px 10px;
    z-index: 0;
}

.stats-container > * {
    position: relative;
    z-index: 1;
}

.stat h3 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

/* ======= Contact Section ======= */
.contact {
    padding: var(--section-padding);
    background-color: #fff;
    background-image: linear-gradient(135deg, rgba(211, 84, 0, 0.03) 25%, transparent 25%), 
                      linear-gradient(225deg, rgba(211, 84, 0, 0.03) 25%, transparent 25%), 
                      linear-gradient(45deg, rgba(211, 84, 0, 0.03) 25%, transparent 25%), 
                      linear-gradient(315deg, rgba(211, 84, 0, 0.03) 25%, #fff 25%);
    background-position: 25px 0, 25px 0, 0 0, 0 0;
    background-size: 50px 50px;
    background-repeat: repeat;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-form {
    background-color: #f5f7fa;
    background-image: linear-gradient(120deg, #f5f7fa 0%, #fff 100%);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.contact-form::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.1) 0%, rgba(211, 84, 0, 0) 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition);
    background-color: white;
}

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

.form-group textarea {
    height: 140px;
    resize: none;
}

.form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: center;
    background-color: #f5f7fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-card .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(211, 84, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-card .icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-card p, .info-card p a {
    color: #555;
    font-size: 15px;
}

.info-card p a:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 25px;
    box-shadow: var(--card-shadow);
}

/* ======= Footer ======= */
footer {
    background-color: #1a1a1a;
    color: #f8f9fa;
    padding: 100px 0 20px;
}

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

.footer-logo a {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    display: inline-block;
}

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

.about-col p {
    margin-bottom: 25px;
    color: #bbb;
    line-height: 1.8;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-col h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #bbb;
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    margin-bottom: 20px;
    color: #bbb;
}

.contact-info li span:first-child {
    margin-right: 15px;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    color: #777;
}

/* Add form error and success messages styling */
.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.success-message {
    background-color: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.success-message i {
    margin-right: 10px;
    font-size: 18px;
}

/* ======= Responsive Styles ======= */
@media (max-width: 991px) {
    .container {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        right: -100%;
        background-color: white;
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 25px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .testimonial {
        flex-direction: column;
    }
    
    .testimonial-video {
        width: 100%;
        height: 200px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
        padding: 30px 20px;
    }
}

/* Add styles for Free Quotation CTA */
.free-quote-cta {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 2147483647 !important; /* Maximum possible z-index value */
    text-align: right !important;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.7)) !important;
    pointer-events: auto !important;
    transform: translateZ(0) !important; /* Force hardware acceleration */
    -webkit-transform: translateZ(0) !important; /* For iOS devices */
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    will-change: transform !important; /* Hint for browser optimization */
    transition: none !important; /* Prevent animation issues */
}

.btn-large {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6) !important;
    border-radius: 50px;
    position: relative;
    background-color: #ff6b00 !important; /* Brighter orange */
    color: white !important;
    border: 2px solid white !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important; /* Remove tap highlight on mobile */
}

.btn-large::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50px;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .btn-large {
        font-size: 0.9rem;
        padding: 0.7rem 1.3rem;
    }
    
    .free-quote-cta {
        bottom: 20px !important;
        right: 20px !important;
        /* Additional mobile-specific fixes */
        position: fixed !important; /* Reinforce position on mobile */
        -webkit-transform: translate3d(0,0,0) !important; /* iOS Safari fix */
        transform: translate3d(0,0,0) !important;
    }
}

@media (max-width: 480px) {
    .free-quote-cta {
        bottom: 15px !important;
        right: 15px !important;
        position: fixed !important; /* Reinforce position on small devices */
    }
    
    .btn-large {
        font-size: 0.8rem;
        padding: 0.6rem 1.1rem;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed !important;
    bottom: 100px !important;
    right: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 2147483646 !important; /* Just below the quotation button */
}

.floating-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

.floating-btn span {
    position: absolute !important;
    white-space: nowrap !important;
    padding: 0 10px !important;
    top: 15px !important;
    right: 60px !important;
    color: white !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
    padding: 5px 12px !important;
}

.floating-btn:hover span {
    opacity: 1 !important;
    right: 70px !important;
}

.floating-btn i {
    font-size: 25px !important;
    color: white !important;
}

.call-btn {
    background-color: #2196F3 !important;
}

.call-btn span {
    background-color: #2196F3 !important;
}

.whatsapp-btn {
    background-color: #25D366 !important;
}

.whatsapp-btn span {
    background-color: #25D366 !important;
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 80px !important;
    }
    
    .floating-btn {
        width: 50px !important;
        height: 50px !important;
    }
    
    .floating-btn i {
        font-size: 22px !important;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 70px !important;
        right: 15px !important;
        gap: 12px !important;
    }
    
    .floating-btn {
        width: 45px !important;
        height: 45px !important;
    }
    
    .floating-btn i {
        font-size: 20px !important;
    }
}

/* Choices.js custom styling */
.choices {
    margin-bottom: 0 !important;
}

.choices__inner {
    min-height: unset !important;
    padding: 8px 12px !important;
    font-family: var(--font-primary) !important;
    background-color: white !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    color: #333 !important; /* Ensuring text color is dark */
}

.choices__list--dropdown {
    z-index: 99999 !important;
    background-color: #f9f9f9 !important; /* Light gray background for dropdown */
    border: 1px solid #ddd !important;
}

.choices__list--dropdown .choices__item {
    padding: 12px !important;
    color: #333 !important; /* Dark text for dropdown items */
    border-bottom: 1px solid #eee !important;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.choices__list--single {
    padding: 2px 16px 2px 4px !important;
    color: #333 !important; /* Dark text for selected item */
}

.choices__item--selectable {
    cursor: pointer !important;
}

.choices[data-type*='select-one']:after {
    border-color: #999 transparent transparent !important;
}

.choices__placeholder {
    opacity: 1 !important;
    color: #777 !important;
}

/* Highlight for best interior designer text */
.highlight-text {
    display: inline-block;
    position: relative;
    font-weight: 700;
    color: #fff;
    padding: 3px 10px;
    background: linear-gradient(45deg, var(--primary-color), #ff8c3b);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(211, 84, 0, 0.3);
    transform: rotate(-1deg);
    z-index: 1;
    margin: 0 2px;
}

.highlight-text.large {
    font-size: 1.1em;
    padding: 5px 12px;
    margin: 5px 0;
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    border-radius: 4px;
    z-index: -1;
}

@media (max-width: 768px) {
    .highlight-text {
        display: inline;
        font-size: 0.95em;
        padding: 2px 6px;
    }
    
    .highlight-text.large {
        font-size: 1em;
        padding: 3px 8px;
    }
}

/* Responsive adjustments for testimonials */
@media (max-width: 992px) {
    .testimonial-slider {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Fix for Hero section on mobile */
@media (max-width: 768px) {
    .hero {
        height: auto !important;
        min-height: 100vh;
        background-attachment: scroll !important;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 15px;
        margin-top: 40px !important;
    }
    
    .hero-content h1 {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
    
    .hero-content p {
        font-size: 16px !important;
    }
    
    .trust-badge {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px !important;
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .hero-service-selector {
        padding: 15px !important;
        margin-top: 30px !important;
    }
    
    .hero-service-selector h3 {
        font-size: 16px !important;
    }
    
    .selector-container {
        flex-direction: column !important;
    }
    
    .hero-dropdown {
        width: 100% !important;
        margin-bottom: 15px !important;
    }
    
    .action-buttons {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .action-buttons .btn {
        width: 100% !important;
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
    
    /* Fix for floating buttons on mobile */
    .free-quote-cta {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .btn-large {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.3rem !important;
    }
}

/* Additional mobile fixes */
@media (max-width: 576px) {
    .navbar {
        padding: 10px 0 !important;
    }
    
    .logo a {
        font-size: 22px !important;
    }
    
    .hero-content {
        margin-top: 20px !important;
    }
    
    .hero-content h1 {
        font-size: 26px !important;
    }
    
    .trust-badge {
        margin-top: 20px !important;
    }
    
    .badge-item {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
    
    .badge-item i {
        font-size: 14px !important;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr !important;
    }
}

/* Ensure proper image aspect ratio for all images */
.service-img img, 
.gallery-item img, 
.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-img, 
.gallery-item {
    position: relative;
    height: 0;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.hero {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hero media query at different breakpoints */
@media (max-width: 480px) {
    .hero {
        background-position: 65% center !important;
    }
}

/* Ensure images don't stretch on all devices */
.brand-logo {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Additional mobile fixes */
@media (max-width: 576px) {
    .service-img, .gallery-item {
        padding-bottom: 75%; /* Slightly taller on mobile */
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    /* Ensure WhatsApp and call buttons display properly */
    .action-buttons .btn {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .action-buttons .btn i {
        margin-right: 5px;
    }
}

/* Recent Work Video Showcase Section */
.recent-work {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.recent-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
    z-index: 1;
}

.recent-work .container {
    position: relative;
    z-index: 2;
}

/* Fix for section header in Recent Work section */
.recent-work .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.recent-work .section-header .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.recent-work .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    color: var(--dark-color);
}

.recent-work .section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.recent-work .section-header p {
    color: var(--text-color);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.video-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 8px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transition: all 0.3s ease;
}

.video-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.video-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Mobile-specific styles for video showcase */
@media (max-width: 768px) {
    .recent-work {
        padding: 60px 0;
    }
    
    .video-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-container {
        max-height: 600px;
    }
    
    .video-container video {
        aspect-ratio: 9/16;
        max-height: 600px;
        margin: 0 auto;
    }
}

/* Tablet-specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-container video {
        aspect-ratio: 9/16;
        max-height: 400px;
        max-width: 225px; /* Maintain 9:16 aspect ratio */
        margin: 0 auto;
        display: block;
    }
    
    .video-card {
        display: flex;
        justify-content: center;
    }
}

/* Desktop-specific styles for horizontal layout */
@media (min-width: 1025px) {
    .video-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .video-container {
        height: auto;
        max-height: 400px;
        display: flex;
        justify-content: center;
    }
    
    .video-container video {
        aspect-ratio: 9/16;
        max-height: 400px;
        width: auto;
        max-width: 225px; /* Maintain 9:16 aspect ratio with max height of 400px */
        object-fit: contain;
        margin: 0 auto;
    }
    
    .video-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Media queries for Recent Work section header */
@media (max-width: 768px) {
    .recent-work .section-header h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .recent-work .section-header p {
        font-size: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .recent-work .section-header h2 {
        font-size: 24px;
    }
    
    .recent-work .section-header .subtitle {
        font-size: 14px;
    }
} 