/* 
 * HOMZART Premium Interior Design & Home Improvement - Style Sheet
 * Tech Stack: Custom Vanilla CSS3
 * Matches UI Mockup 100%
 */

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

:root {
    /* Brand Theme Colors (Extracted from UI Mockup) */
    --primary-teal: #139994; /* Teal color for primary buttons and banners */
    --primary-green: #4b9937; /* Logo Green */
    --sky-blue: #139dd4; /* Logo Blue */
    --orange: #ff8f16; /* Logo/Accent Orange */
    --dark-blue: #0f2233; /* Headings and texts */
    --white: #ffffff;
    --bg-soft-blue: #f0f7fc; /* Matches mockup background */
    --bg-gradient: linear-gradient(180deg, #f0f7fc 0%, #ebf4f9 100%);
    
    /* Text Colors */
    --text-main: #2b3a4a;
    --text-muted: #5e6d7d;
    --text-white: #ffffff;
    
    /* Glassmorphism & Shadow Defaults */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --card-shadow: 0 10px 30px rgba(15, 34, 51, 0.04);
    --card-shadow-hover: 0 20px 40px rgba(15, 34, 51, 0.08);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-medium: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-soft-blue);
    background-image: var(--bg-gradient);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-soft-blue);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-teal);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
    pointer-events: none;
}
.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-teal), var(--orange));
    transition: width 0.1s ease-out;
}

/* Custom Animated Cursor */
.custom-cursor {
    width: 6px;
    height: 6px;
    background: var(--primary-teal);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.custom-cursor-follower {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--primary-teal);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
.custom-cursor.hover {
    width: 10px;
    height: 10px;
    background: var(--orange);
}
.custom-cursor-follower.hover {
    width: 48px;
    height: 48px;
    border-color: var(--orange);
    background: rgba(255, 143, 22, 0.03);
}

@media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-follower {
        display: none !important;
    }
}

/* Mouse Glow Effect */
.mouse-glow {
    position: fixed;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 153, 148, 0.08) 0%, rgba(19, 153, 148, 0) 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
}

/* Floating Background Decoration */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatShape 20s infinite alternate ease-in-out;
}
.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-teal);
    top: 15%;
    left: 10%;
}
.shape-2 {
    width: 120px;
    height: 120px;
    background: var(--orange);
    top: 8%;
    right: 15%;
    animation-duration: 25s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.15); }
}

/* Typography & General Layout */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
}
p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 45px;
}
.section-subtitle {
    font-family: var(--font-heading);
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: inline-block;
}
.section-subtitle span {
    color: var(--orange);
}
.section-title-wrapper p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Buttons (Custom Ripple & Gradients)
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(19, 153, 148, 0.2);
}
.btn-primary:hover {
    background: #0f827e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 153, 148, 0.35);
}
.btn-secondary {
    background: transparent;
    border: 1.5px solid #bce0df;
    color: var(--dark-blue);
}
.btn-secondary:hover {
    background: rgba(19, 153, 148, 0.05);
    border-color: var(--primary-teal);
    transform: translateY(-2px);
}
.btn-orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 143, 22, 0.2);
}
.btn-orange:hover {
    background: #e67d0d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 143, 22, 0.35);
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-key 0.6s linear;
    pointer-events: none;
}
@keyframes ripple-key {
    to { transform: scale(4); opacity: 0; }
}

/* ==========================================
   Header & Navbar (Glassmorphic)
   ========================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(240, 247, 252, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-fast);
}
.header-nav.scrolled {
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 20px rgba(15, 34, 51, 0.03);
}
.logo-container a {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}
.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-blue);
    padding: 5px 0;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary-teal);
    transition: var(--transition-fast);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link.active {
    color: var(--primary-teal);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-phone {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-phone svg {
    color: var(--primary-teal);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--dark-blue);
    border-radius: 2px;
    transition: var(--transition-fast);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================
   Hero Section (Split Design with Curved Mask)
   ========================================== */
.hero-sec {
    min-height: 90vh;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
    transform: scale(1);
}
.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1.04);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(240, 247, 252, 0.75) 35%, rgba(240, 247, 252, 0.25) 100%);
    z-index: 1;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-content {
    z-index: 2;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hero-tag span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-teal);
    letter-spacing: 0.5px;
}
.hero-logo-mini {
    height: 18px;
    width: auto;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    color: var(--dark-blue);
}
.hero-title span {
    color: var(--primary-teal);
}
.hero-desc {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
    max-width: 500px;
}
.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}
.hero-bullet-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}
.bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-blue);
}
.bullet-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(19, 153, 148, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 0.75rem;
}

/* Asymmetrical Curved Frame for Hero Image */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.hero-img-shadow-wrap {
    filter: drop-shadow(-15px 20px 30px rgba(15, 34, 51, 0.08));
    width: 100%;
    max-width: 550px;
}
.hero-img-frame {
    width: 100%;
    height: 540px;
    clip-path: url(#hero-curve-mask);
    -webkit-clip-path: url(#hero-curve-mask);
    overflow: hidden;
    position: relative;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
}
.hero-slide-img.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1.03);
}

/* ==========================================
   Horizontal Floating Features Row
   ========================================== */
.features-row {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-top: -30px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.8);
}
.feature-col-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.feature-col-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(19, 153, 148, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    transition: var(--transition-fast);
}
.feature-col-card:hover .feature-col-icon {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-3px);
}
.feature-col-card h3 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-blue);
    font-family: var(--font-heading);
    line-height: 1.3;
}

/* ==========================================
   Services Grid (Teal Badge Cards)
   ========================================== */
.services-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    flex: 1 1 calc(25% - 30px); /* 4 items per row on desktop */
    min-width: 250px;
    max-width: 285px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 34, 51, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-medium);
    border: 1px solid rgba(15, 34, 51, 0.05);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 34, 51, 0.09);
    border-color: rgba(19, 153, 148, 0.2);
}
.service-img-container {
    height: 190px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}
.service-card:hover .service-card-img {
    transform: scale(1.08);
}
.service-badge-icon {
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 3;
    transition: transform var(--transition-fast);
}
.service-card:hover .service-badge-icon {
    transform: translateX(-50%) scale(1.1) rotate(15deg);
    background: var(--orange);
}
.service-info {
    padding: 35px 20px 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.service-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.service-desc {
    font-size: 0.85rem;
    color: #5c6c7a;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}
.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 30px;
    background: #f0f7fc;
    border: 1px solid rgba(19, 153, 148, 0.1);
    transition: all var(--transition-fast) ease;
    width: fit-content;
}
.service-card:hover .service-link {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
    box-shadow: 0 4px 10px rgba(19, 153, 148, 0.25);
}

/* ==========================================
   Stats Banner Section
   ========================================== */
.stats-banner-sec {
    background: var(--primary-teal);
    border-radius: 24px;
    padding: 35px 20px;
    margin-bottom: 80px;
    box-shadow: 0 15px 40px rgba(19, 153, 148, 0.15);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stat-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--white);
}
.stat-box:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-box-icon {
    font-size: 1.6rem;
    opacity: 0.9;
}
.stat-content {
    text-align: left;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
}
.stat-lbl {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   Partners & Testimonials Grid split
   ========================================== */
.partners-testimonials-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

/* Partners Grid card items */
.partners-wrapper {
    display: flex;
    flex-direction: column;
}
.partners-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.partner-logo-box {
    background: var(--white);
    border: 1px solid rgba(15, 34, 51, 0.08);
    border-radius: 12px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: var(--transition-fast);
}
.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.partner-logo-box:hover {
    border-color: var(--primary-teal);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

/* Testimonial card slider */
.testimonials-wrapper {
    width: 100%;
}
.testimonials-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}
.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
}
.testimonial-slide-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}
.testimonial-quote-mark {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: #e5edf5;
    line-height: 1;
    pointer-events: none;
}
.testimonial-slide-card .stars {
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: 18px;
}
.testimonial-slide-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-teal);
}
.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-blue);
}
.author-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.slider-dot-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cfd8e3;
    cursor: pointer;
    transition: var(--transition-fast);
}
.slider-dot.active {
    background: var(--primary-teal);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================
   Mega Footer
   ========================================== */
.footer-sec {
    background: #e4eff7; /* Very soft light blue */
    padding: 70px 0 25px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr 1fr;
    gap: 30px;
    margin-bottom: 45px;
}
.footer-col h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-logo {
    height: 42px;
    width: auto;
    align-self: flex-start;
}
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    box-shadow: 0 4px 10px rgba(15, 34, 51, 0.05);
    transition: var(--transition-fast);
}
.social-icon:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul a {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-col ul a:hover {
    color: var(--primary-teal);
    padding-left: 3px;
}
.footer-col-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.footer-col-contact svg {
    color: var(--primary-teal);
    flex-shrink: 0;
    margin-top: 2px;
}
.newsletter-desc {
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.newsletter-form {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    background: var(--white);
    padding: 4px;
    border: 1px solid rgba(15,34,51,0.08);
}
.newsletter-form input {
    border: none;
    background: transparent;
    padding: 10px 15px;
    outline: none;
    font-size: 0.8rem;
    flex-grow: 1;
}
.newsletter-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-teal);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.newsletter-btn:hover {
    background: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(15, 34, 51, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-bottom-links {
    display: flex;
    gap: 15px;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}
.float-whatsapp { background: #25d366; }
.float-whatsapp:hover { transform: scale(1.08) translateY(-2px); }
.float-call { background: var(--orange); }
.float-call:hover { transform: scale(1.08) translateY(-2px); }
.float-back-to-top {
    background: var(--white);
    color: var(--dark-blue);
    border: 1px solid rgba(15,34,51,0.08);
    opacity: 0;
    pointer-events: none;
}
.float-back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.float-back-to-top:hover {
    background: var(--primary-teal);
    color: var(--white);
}

/* Preloader styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-soft-blue);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.loader-logo-wrapper {
    animation: loaderZoom 1.5s infinite alternate ease-in-out;
    margin-bottom: 20px;
}
.loader-logo { height: 60px; }
.loader-bar-container {
    width: 150px;
    height: 3px;
    background: rgba(19, 153, 148, 0.1);
    border-radius: 3px;
    overflow: hidden;
}
.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-teal), var(--orange));
    animation: loaderFill 2s infinite ease-in-out;
}
@keyframes loaderZoom {
    0% { transform: scale(0.96); opacity: 0.8; }
    100% { transform: scale(1.04); opacity: 1; }
}
@keyframes loaderFill {
    0% { width: 0%; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0%; left: 100%; }
}

/* Reveal Entrance Animations */
.reveal {
    opacity: 0;
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    will-change: opacity, transform;
}
.reveal-fade { transform: translateY(0); }
.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.95); }

.reveal.animate-in {
    opacity: 1;
    transform: translate(0) scale(1);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }

/* Dynamic Details Page */
.service-detail-hero {
    height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}
.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 34, 51, 0.85) 0%, rgba(15, 34, 51, 0.3) 100%);
    z-index: 1;
}
.service-detail-hero .container { z-index: 2; }
.service-detail-title { font-size: 2.5rem; color: var(--white); margin-bottom: 10px; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; opacity: 0.85; }
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--orange); }

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}
.detail-content-section { margin-bottom: 35px; }
.detail-content-section h2 { font-size: 1.5rem; margin-bottom: 15px; position: relative; padding-left: 12px; }
.detail-content-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 20px;
    background: var(--primary-teal);
    border-radius: 2px;
}
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    margin-bottom: 35px;
}
.feature-list li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; }
.benefit-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.benefit-small-card {
    padding: 20px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(15, 34, 51, 0.05);
    box-shadow: var(--card-shadow);
}
.benefit-small-card h4 { margin-bottom: 5px; color: var(--primary-teal); font-size: 0.95rem; }
.benefit-small-card p { font-size: 0.85rem; }
.detail-sidebar { position: sticky; top: 100px; height: fit-content; }
.sidebar-widget { margin-bottom: 25px; }
.services-menu-widget { padding: 25px 15px; }
.services-menu-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.services-menu-list a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f0f7fc;
    font-size: 0.85rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}
.services-menu-list a:hover,
.services-menu-list a.active {
    background: var(--white);
    border-left-color: var(--primary-teal);
    color: var(--primary-teal);
    box-shadow: 0 4px 10px rgba(19, 153, 148, 0.05);
}

/* ==========================================
   Navbar Services Dropdown
   ========================================== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-services-dropdown {
    position: relative;
    display: inline-block;
}
.nav-services-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 153, 148, 0.08);
    border: 1px solid rgba(19, 153, 148, 0.15);
    color: var(--primary-teal);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}
.nav-services-toggle:hover,
.nav-services-dropdown.open .nav-services-toggle {
    background: var(--primary-teal);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(19, 153, 148, 0.15);
}
.nav-services-toggle .chevron {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}
.nav-services-dropdown.open .nav-services-toggle .chevron {
    transform: rotate(180deg);
}
.nav-services-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 250px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1002;
    overflow: hidden;
}
.nav-services-dropdown.open .nav-services-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-services-menu-header {
    background: rgba(19, 153, 148, 0.05);
    padding: 10px 16px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-teal);
    border-bottom: 1px solid var(--glass-border);
}
.nav-services-menu-list {
    list-style: none !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    max-height: 380px;
    overflow-y: auto;
}
.nav-services-menu-list::-webkit-scrollbar {
    width: 4px;
}
.nav-services-menu-list::-webkit-scrollbar-thumb {
    background: rgba(19, 153, 148, 0.2);
    border-radius: 4px;
}
.nav-services-menu-list a {
    display: flex;
    align-items: center;
    padding: 9px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease;
}
.nav-services-menu-list a:hover {
    background: rgba(19, 153, 148, 0.06);
    color: var(--primary-teal);
    padding-left: 20px;
}

@media (max-width: 576px) {
    .nav-services-toggle span:not(.chevron) {
        display: none;
    }
    .logo-container {
        gap: 8px;
    }
}

/* Sidebar Enquiry Form Inputs */
#sidebar-enquiry-form {
    display: flex;
    flex-direction: column;
}
#sidebar-enquiry-form input,
#sidebar-enquiry-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.65);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-main);
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
#sidebar-enquiry-form input:focus,
#sidebar-enquiry-form textarea:focus {
    border-color: var(--primary-teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(19, 153, 148, 0.1);
}
#sidebar-enquiry-form textarea {
    resize: vertical;
    min-height: 90px;
}
.whatsapp-sidebar-btn:hover {
    background: #1ebea5 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* ==========================================
   FAQ Accordion Section Styles
   ========================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.faq-item:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 8px 25px rgba(19, 153, 148, 0.08);
}
.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}
.faq-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 !important;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.faq-header:hover h3 {
    color: var(--primary-teal);
}
.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(19, 153, 148, 0.05);
    flex-shrink: 0;
    margin-left: 15px;
}
.faq-item:hover .faq-icon {
    color: var(--primary-teal);
    background: rgba(19, 153, 148, 0.1);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--white);
    background: var(--primary-teal);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-body-content {
    padding: 0 24px 20px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
}

/* ==========================================
   Mobile Bottom Sticky Navigation (5 buttons)
   ========================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(15, 34, 51, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    z-index: 99999;
}
.mobile-bottom-nav-list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 !important;
    padding: 0 5px !important;
    list-style: none !important;
}
.mobile-nav-item {
    flex: 1;
    text-align: center;
}
.mobile-nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.mobile-nav-item a svg {
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}
.mobile-nav-item a:hover svg,
.mobile-nav-item a.active svg {
    transform: scale(1.08);
    color: var(--primary-teal);
}
.mobile-nav-item a.active {
    color: var(--primary-teal);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 60px; /* offset bottom nav bar */
    }
}

/* ==========================================
   Responsive Adaptations
   ========================================== */
@media (max-width: 1024px) {
    .header-nav { padding: 12px 20px; }
    .hero-title { font-size: 2.6rem; }
    .hero-img-frame { height: 420px; }
    .features-row { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .service-card { flex: 1 1 calc(33.3% - 25px); max-width: 280px; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-desc { margin: 0 auto 30px auto; }
    .hero-btns { justify-content: center; }
    .hero-bullet-highlights { max-width: 500px; margin: 0 auto; }
    .hero-graphic { order: -1; justify-content: center; }
    .hero-img-shadow-wrap { max-width: 480px; margin: 0 auto; }
    .hero-img-frame { height: 420px; }
    .partners-testimonials-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 50px 0; }
    .mobile-menu-btn { display: flex; z-index: 1001; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 255, 255, 0.4);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        z-index: 999;
    }
    .nav-menu.open { right: 0; }
    .nav-link { font-size: 1.1rem; }
    .nav-actions { display: none; }
    
    /* Premium Mobile Swiper for features highlights */
    .features-row {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 20px 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-radius: 16px;
    }
    .features-row::-webkit-scrollbar {
        display: none;
    }
    .feature-col-card {
        flex: 0 0 145px;
        scroll-snap-align: start;
        background: var(--white);
        padding: 18px 10px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.015);
        border: 1px solid rgba(19, 153, 148, 0.05);
    }
    
    /* 2x2 Grid stats banner */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
    .stats-grid .stat-box {
        border-right: none !important;
        border-bottom: none !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .stats-grid .stat-box .stat-content {
        text-align: center;
    }
    
    .service-card { flex: 1 1 calc(50% - 20px); max-width: 280px; }
    .partners-card-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .testimonial-slide-card { padding: 25px 20px; }
    
    .services-flex-container {
        gap: 12px;
        padding: 0 5px;
    }
    .service-card {
        flex: 1 1 calc(50% - 6px);
        min-width: calc(50% - 6px);
        max-width: calc(50% - 6px);
    }
    .service-img-container {
        height: 110px;
    }
    .service-badge-icon {
        width: 28px;
        height: 28px;
        bottom: -14px;
        border-width: 2px;
    }
    .service-badge-icon svg {
        width: 10px;
        height: 10px;
    }
    .service-info {
        padding: 20px 8px 12px 8px;
    }
    .service-info h3 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    .service-desc {
        font-size: 0.72rem;
        line-height: 1.35;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .service-link {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .partners-card-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .hero-title { font-size: 2rem; }
    .hero-bullet-highlights { grid-template-columns: 1fr; }
    .hero-img-shadow-wrap { max-width: 310px; }
    .hero-img-frame { height: 260px; }
    
    /* Smaller Floating action buttons */
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 44px;
        height: 44px;
    }
}
