@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #ff5722;
    --primary-hover: #e64a19;
    --primary-rgb: 255, 87, 34;
    --dark: #121620;
    --dark-light: #1c2230;
    --dark-muted: #2d3748;
    --light: #f9f9fb;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button, input, textarea {
    font-family: inherit;
    outline: none;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

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

.badge {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background-color: var(--light);
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 4px;
}

/* --- Header / Navbar --- */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

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

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


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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

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

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 4px;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background-color: var(--dark);
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    padding: 60px 0 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Orange bottom accent block */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    border-left: 8px solid var(--primary);
    border-bottom: 8px solid var(--primary);
    border-bottom-left-radius: 16px;
    pointer-events: none;
}

/* --- Stats Bar --- */
.stats-bar {
    background-color: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    margin-top: -20px;
}

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

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 87, 34, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- About Section --- */
.about {
    background-color: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-bullets {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.bullet-icon {
    width: 22px;
    height: 22px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.bullet-icon svg {
    width: 12px;
    height: 12px;
}

/* About Collage Grid */
.about-collage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.collage-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collage-img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.collage-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

/* Precise Heights for Collage matching design */
.img-big {
    height: 380px;
}
.img-wide {
    height: 190px;
}
.img-tall {
    height: 270px;
}
.img-small {
    height: 180px;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 87, 34, 0.2);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 87, 34, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* --- Portfolio Section --- */
.portfolio {
    background-color: var(--light);
}

.portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.portfolio-header .section-header {
    text-align: left;
    margin-bottom: 0;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.view-all svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.view-all:hover svg {
    transform: translateX(5px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 280px;
    box-shadow: var(--shadow-sm);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 22, 32, 0.9) 0%, rgba(18, 22, 32, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

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

.portfolio-info h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    transform: translateY(10px);
    transition: var(--transition);
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transform: translateY(10px);
    transition: var(--transition);
    transition-delay: 0.05s;
}

.portfolio-item:hover .portfolio-info h4,
.portfolio-item:hover .portfolio-info p {
    transform: translateY(0);
}

/* --- Process Section --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 20px;
}

/* Dotted line between steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border) 0px, var(--border) 8px, transparent 8px, transparent 16px);
    z-index: 1;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 16px;
}

.step-number {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.step-icon-box {
    width: 72px;
    height: 72px;
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.step-card:hover .step-icon-box {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

.step-icon-box svg {
    width: 28px;
    height: 28px;
    color: var(--text-dark);
    transition: var(--transition);
}

.step-card:hover .step-icon-box svg {
    color: var(--white);
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    max-width: 200px;
}

/* Chevron/arrow separators on desktop */
.step-arrow {
    position: absolute;
    top: 45px;
    right: -10px;
    color: var(--border);
    z-index: 3;
}

/* --- Testimonials Section --- */
.testimonials {
    background-color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-mark {
    font-size: 50px;
    line-height: 1;
    color: rgba(255, 87, 34, 0.15);
    font-family: serif;
    margin-bottom: -15px;
}

.testimonial-content {
    font-size: 15.5px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.client-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.client-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.stars {
    display: flex;
    gap: 4px;
}

.stars svg {
    width: 14px;
    height: 14px;
    color: #ffb400;
}

/* --- Call To Action Section --- */
.cta-section {
    padding: 40px 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #ff7a47 100%);
    border-radius: 12px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.cta-banner::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    background-image: url('assets/WhatsApp Image 2026-06-24 at 14.56.04.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    mix-blend-mode: overlay;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.cta-text h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 16px;
    opacity: 0.9;
}

.cta-btn {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    background-color: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* --- Footer Section --- */
footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    font-size: 14px;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    background-color: var(--dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Footer Contact Form Redesign */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 13px 18px;
    background-color: #121824;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--white);
    font-size: 14.5px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

.form-input:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #0b0f17;
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.15);
}

textarea.form-input {
    resize: none;
    height: 110px;
    line-height: 1.5;
}

.form-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 750;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
}

.form-btn:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.35);
}

/* WhatsApp Navbar Button */
.btn-whatsapp {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #20ba5a !important;
    border-color: #20ba5a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35) !important;
}

/* Light themed inputs for Contact Page & Reviews Page */
.contact-form-box .form-input,
.review-form-card .form-input {
    background-color: var(--white) !important;
    border: 1px solid var(--border);
    color: var(--dark) !important;
}

.contact-form-box .form-input::placeholder,
.review-form-card .form-input::placeholder {
    color: var(--text-muted);
}

.contact-form-box .form-input:hover,
.review-form-card .form-input:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.contact-form-box .form-input:focus,
.review-form-card .form-input:focus {
    background-color: var(--white) !important;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.12);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-meta-links {
    display: flex;
    gap: 20px;
}

.footer-meta-links a:hover {
    color: var(--white);
}

/* --- Responsive Media Queries --- */

@media (max-width: 1100px) {
    .hero-content h1 {
        font-size: 42px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .section-padding {
        padding: 60px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-image {
        height: 380px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    .process-steps::before {
        display: none;
    }
    .step-card {
        padding: 0;
        width: 100%;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 20px;
    }
    .step-icon-box {
        margin-bottom: 0;
    }
    .step-number {
        margin-bottom: 0;
        min-width: 30px;
    }
    .step-arrow {
        display: none;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cta-banner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px;
    }
    .cta-banner::before {
        width: 100%;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .mobile-whatsapp-nav {
        display: block !important;
    }
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .navbar .btn-primary {
        display: none;
    }
    
    /* Responsive nav list shown on active class */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 30px 24px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border);
        gap: 20px;
        align-items: flex-start;
    }
    
    .nav-links.active li {
        width: 100%;
    }
    .nav-links.active li a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 34px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- Legal Pages --- */
.legal-hero {
    padding: 90px 0 70px;
    background: linear-gradient(135deg, var(--light) 0%, #fff3ed 100%);
    border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
    margin: 14px 0 12px;
    color: var(--dark);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
}

.legal-hero p {
    max-width: 680px;
    color: var(--text-muted);
    font-size: 18px;
}

.legal-content {
    max-width: 920px;
}

.legal-content h2 {
    margin: 34px 0 12px;
    color: var(--dark);
    font-size: 24px;
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary);
    font-weight: 600;
}

.legal-updated {
    padding: 14px 18px;
    background: var(--light);
    border-left: 4px solid var(--primary);
}

/* --- About Us Page Specific Styles --- */
.about-intro {
    padding: 60px 0 80px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-intro-content h1 span {
    color: var(--primary);
}

.about-intro-content .subheading {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-muted);
    margin-bottom: 24px;
}

.about-intro-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.stat-card-about {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card-about:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 87, 34, 0.2);
}

.stat-card-about .stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.stat-card-about .stat-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
}

.stat-card-about .stat-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Founder Visual Frame */
.founder-media-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-img-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--light);
    box-shadow: var(--shadow-lg);
    background-color: var(--light);
}

.founder-quote-box {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 240px;
    border: 1px solid var(--border);
    animation: float 4s ease-in-out infinite;
}

.founder-quote-box::before {
    content: '“';
    font-family: serif;
    font-size: 40px;
    color: rgba(255, 87, 34, 0.15);
    position: absolute;
    top: 10px;
    left: 15px;
    line-height: 1;
}

.founder-quote-text {
    font-size: 13.5px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    padding-left: 10px;
}

.founder-quote-author {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    border-top: 1px solid var(--border);
    padding-top: 8px;
}

/* Mission & Vision Section */
.mission-vision {
    background-color: var(--light);
    padding: 80px 0;
}

.mission-vision-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.mv-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 87, 34, 0.2);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 87, 34, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.mv-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.mv-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.mv-divider {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

/* Why Clients Trust Us */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.trust-card {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px auto;
    background-color: rgba(255, 87, 34, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background-color: var(--primary);
    transform: rotateY(180deg);
}

.trust-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
    transition: var(--transition);
}

.trust-card:hover .trust-icon svg {
    color: var(--white);
}

.trust-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* Glimpse of Our Work */
.glimpse {
    background-color: var(--light);
}

.glimpse-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.glimpse-item {
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

/* Float Keyframe Animation */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* About responsive styling */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .about-intro-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .stats-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }
    .founder-quote-box {
        right: 20px;
    }
    .mission-vision-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .mv-divider {
        margin: 10px 0;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .glimpse-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .about-intro-content h1 {
        font-size: 36px;
    }
    .founder-img-circle {
        width: 300px;
        height: 300px;
    }
    .founder-quote-box {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        max-width: 100%;
    }
    .stats-grid-about {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .glimpse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Services Page Specific Styles --- */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.service-card-premium {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 87, 34, 0.2);
}

.scp-header {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.scp-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 87, 34, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-card-premium:hover .scp-icon {
    background-color: var(--primary);
}

.scp-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card-premium:hover .scp-icon svg {
    color: var(--white);
}

.scp-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.scp-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.scp-img-wrapper {
    height: 170px;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

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

.service-card-premium:hover .scp-img-wrapper img {
    transform: scale(1.08);
}

/* Turnkey Interior Solutions */
.turnkey {
    background-color: var(--light);
}

.turnkey-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.turnkey-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.turnkey-content h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
}

.turnkey-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.turnkey-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tf-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tf-icon {
    width: 46px;
    height: 46px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}

.tf-icon svg {
    width: 20px;
    height: 20px;
}

.tf-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.tf-text p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* Spaces We've Transformed */
.transformed {
    background-color: var(--light);
}

.transformed-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.transformed-item {
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

/* Services responsive adjustments */
@media (max-width: 1100px) {
    .services-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .turnkey-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .turnkey-image {
        height: 320px;
    }
    .turnkey-features {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .transformed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-premium {
        grid-template-columns: 1fr;
    }
    .turnkey-features {
        grid-template-columns: 1fr;
    }
    .transformed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Portfolio Page Specific Styles --- */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.04) 0%, rgba(18, 22, 32, 0.02) 100%);
    border-top: 1px solid rgba(255, 87, 34, 0.1);
    border-bottom: 1px solid rgba(255, 87, 34, 0.1);
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 0 0 4px 4px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.partner-card {
    background-color: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.15);
    border-color: var(--primary);
}

.partner-card img {
    max-height: 75px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

/* Explore Signature Projects */
.signature-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.signature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.signature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 87, 34, 0.2);
}

.sig-img-wrapper {
    height: 120px;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

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

.signature-card:hover .sig-img-wrapper img {
    transform: scale(1.08);
}

.sig-icon-badge {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background-color: var(--primary);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: var(--transition);
}

.signature-card:hover .sig-icon-badge {
    background-color: var(--dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.sig-icon-badge svg {
    width: 16px;
    height: 16px;
}

.sig-text {
    padding: 24px 12px 16px 12px;
    text-align: center;
}

.sig-text h3 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.sig-text p {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* Project Showcase & Tabs */
.showcase-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-btn {
    background-color: var(--light);
    border: 1px solid var(--border);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.2);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.showcase-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
    height: 120px;
}

.showcase-item.hide {
    display: none;
    opacity: 0;
    transform: scale(0.85);
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 87, 34, 0.2);
}

.showcase-img-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 22, 32, 0.9) 0%, rgba(18, 22, 32, 0.2) 65%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
    opacity: 0;
    transition: var(--transition);
}

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

.showcase-info h4 {
    color: var(--white);
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 2px;
    transform: translateY(8px);
    transition: var(--transition);
}

.showcase-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9.5px;
    transform: translateY(8px);
    transition: var(--transition);
    transition-delay: 0.03s;
}

.showcase-item:hover .showcase-info h4,
.showcase-item:hover .showcase-info p {
    transform: translateY(0);
}

/* Portfolio responsive styling */
@media (max-width: 1200px) {
    .signature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .signature-grid {
        grid-template-columns: 1fr;
    }
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .showcase-tabs {
        gap: 8px;
    }
    .tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* --- Unique Page Heroes --- */

/* 1. About Hero (Reversed Staggered Split) */
.hero-about {
    background-color: var(--light);
}

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

.hero-about-images {
    position: relative;
    height: 420px;
    width: 100%;
}

.hai-bg {
    width: 80%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.hai-fg {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 50%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

/* 2. Services Hero (Asymmetric Overlapping Stack) */
.hero-services {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}

.hero-services-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.hero-services-images {
    position: relative;
    height: 420px;
    width: 100%;
}

.hsi-main {
    width: 82%;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.hsi-overlap {
    position: absolute;
    bottom: 10px;
    left: -20px;
    width: 48%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

/* 3. Portfolio Hero (Full-Bleed Glassmorphism) */
.hero-portfolio {
    background: linear-gradient(rgba(18, 22, 32, 0.65), rgba(18, 22, 32, 0.65)), url('assets/WhatsApp Image 2026-06-24 at 14.56.08.jpeg') no-repeat center center / cover;
    padding: 130px 0;
    position: relative;
}

.hero-portfolio-card {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 55px 45px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.hero-portfolio-card .badge {
    background-color: rgba(255, 87, 34, 0.25);
    color: #ffab91;
    border: 1px solid rgba(255, 87, 34, 0.35);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-portfolio-card h1 {
    font-size: 44px;
    font-weight: 850;
    margin-bottom: 16px;
}

.hero-portfolio-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-portfolio-card .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero-portfolio-card .btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

/* Responsive updates for Unique Heroes */
@media (max-width: 991px) {
    .hero-about-grid,
    .hero-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-about-images,
    .hero-services-images {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hai-bg, .hsi-main {
        height: 300px;
    }
    
    .hai-fg, .hsi-overlap {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero-portfolio {
        padding: 90px 0;
    }
    .hero-portfolio-card {
        padding: 40px 24px;
    }
    .hero-portfolio-card h1 {
        font-size: 32px;
    }
    .hero-portfolio-card p {
        font-size: 14.5px;
    }
}

@media (max-width: 480px) {
    .hero-about-images,
    .hero-services-images {
        height: 300px;
    }
    
    .hai-bg, .hsi-main {
        height: 240px;
    }
    
    .hai-fg, .hsi-overlap {
        height: 140px;
        border-width: 5px;
    }
}

/* Homepage Hero Attractive Overrides */
.hero-home-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.hero-home-images {
    position: relative;
    height: 440px;
    width: 100%;
}

.hhi-main {
    width: 85%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
    margin-left: auto;
}

.hhi-overlap {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 45%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hhi-glass-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hhi-glass-badge svg {
    color: #ffab00;
    width: 20px;
    height: 20px;
}

.hhi-glass-badge-text {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.hhi-glass-badge-text span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
}

@media (max-width: 991px) {
    .hero-home-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-home-images {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }
    .hhi-main {
        height: 300px;
    }
    .hhi-overlap {
        height: 170px;
    }
}

@media (max-width: 480px) {
    .hero-home-images {
        height: 300px;
    }
    .hhi-main {
        height: 240px;
    }
    .hhi-overlap {
        height: 130px;
        border-width: 5px;
    }
    .hhi-glass-badge {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* --- Why Choose Us Page Styles --- */

/* 1. Why Reasons Grid */
.why-reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-reason-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-reason-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-reason-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(255, 87, 34, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    transition: all 0.4s ease;
}

.why-reason-card:hover .why-reason-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.why-reason-icon svg {
    width: 22px;
    height: 22px;
}

.why-reason-card h3 {
    font-size: 16.5px;
    font-weight: 750;
    color: var(--dark);
    margin-bottom: 8px;
}

.why-reason-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 2. What Makes Us Different Section */
.why-different-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-different-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.why-different-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-different-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-different-icon svg {
    width: 14px;
    height: 14px;
}

.why-different-text h4 {
    font-size: 16px;
    font-weight: 750;
    color: var(--dark);
    margin-bottom: 2px;
}

.why-different-text p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.why-different-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    border: 1px solid var(--border);
}

.why-different-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. Spaces We Transform Section */
.transform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.transform-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.transform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 87, 34, 0.2);
}

.transform-img-box {
    height: 130px;
    overflow: hidden;
    position: relative;
}

.transform-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.transform-card:hover .transform-img-box img {
    transform: scale(1.08);
}

.transform-title {
    padding: 12px 6px;
    text-align: center;
    font-weight: 750;
    font-size: 13.5px;
    color: var(--dark);
    border-top: 1px solid var(--border);
}

/* Responsive updates for Why Choose Us */
@media (max-width: 1024px) {
    .why-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .transform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .why-different-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-different-media {
        height: 320px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .why-reasons-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .transform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* --- Testimonials Page Styles --- */
.hero-testimonials {
    background: linear-gradient(rgba(18, 22, 32, 0.7), rgba(18, 22, 32, 0.7)), url('assets/WhatsApp Image 2026-06-24 at 14.56.08 (3).jpeg') no-repeat center center / cover;
    padding: 130px 0;
    position: relative;
}

.hero-testimonials-card {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 55px 45px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.hero-testimonials-card .badge {
    background-color: rgba(255, 87, 34, 0.25);
    color: #ffab91;
    border: 1px solid rgba(255, 87, 34, 0.35);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-testimonials-card h1 {
    font-size: 44px;
    font-weight: 850;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-testimonials-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16.5px;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonial Page Grid Overrides */
.testimonial-page-item {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
}

.testimonial-page-item.hide {
    display: none;
    opacity: 0;
    transform: scale(0.85);
}

/* Review Submission Form */
.review-submit-section {
    background-color: var(--white);
    border-top: 1px solid var(--border);
}

.review-form-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 45px 40px;
    box-shadow: var(--shadow-sm);
}

.star-rating-input {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.star-rating-input span {
    font-size: 32px;
    color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.star-rating-input span.active,
.star-rating-input span:hover,
.star-rating-input span:hover ~ span {
    color: #ffab00;
}

@media (max-width: 768px) {
    .hero-testimonials {
        padding: 95px 0;
    }
    .hero-testimonials-card {
        padding: 40px 24px;
    }
    .hero-testimonials-card h1 {
        font-size: 32px;
    }
    .hero-testimonials-card p {
        font-size: 14.5px;
    }
    .review-form-card {
        padding: 30px 20px;
    }
}

/* --- Contact Us Page Styles --- */

/* 1. Contact Info Card Row */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.cic-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 87, 34, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-info-card:hover .cic-icon {
    background-color: var(--primary);
    color: var(--white);
}

.cic-icon svg {
    width: 20px;
    height: 20px;
}

.cic-text h4 {
    font-size: 15px;
    font-weight: 750;
    color: var(--dark);
    margin-bottom: 2px;
}

.cic-text p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 2. Contact Message + Office Section */
.contact-grid-main {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-form-box {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-office-box {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-office-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-office-box .contact-item {
    margin-bottom: 16px;
}

.contact-map-wrapper {
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 25px;
    border: 1px solid var(--border);
}

/* 3. Why Reach Out to Us Grid */
.reach-out-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.reach-out-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.reach-out-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 87, 34, 0.25);
    box-shadow: var(--shadow-md);
}

.roc-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 87, 34, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roc-icon svg {
    width: 22px;
    height: 22px;
}

.roc-text h4 {
    font-size: 15px;
    font-weight: 750;
    color: var(--dark);
    margin-bottom: 4px;
}

.roc-text p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Responsive updates for Contact Us page */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .reach-out-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .contact-grid-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-form-box, .contact-office-box {
        padding: 30px 24px;
    }
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .reach-out-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
