:root {
    --primary-color: #FFFFFF;
    /* White */
    --secondary-color: #F1F5F9;
    /* Slate 100 (Very Light Gray) */
    --text-main: #0F172A;
    /* Deep Navy for Text */
    --text-muted: #475569;
    /* Slate 600 */
    --accent-color: #42A5F5;
    /* Brand blue for primary actions and highlights */
    --accent-hover: #1E88E5;
    --accent-soft: #EAF5FF;
    --accent-ring: rgba(66, 165, 245, 0.18);
    --glass-bg: #FFFFFF;
    --glass-border: rgba(0, 0, 0, 0.05);
    --card-bg: #FFFFFF;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--accent-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color) !important;
}

ul {
    list-style: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glass Form - Solid White Style */
.glass-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: fadeIn 1s ease-out;
}

.glass-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-align: center;
    font-weight: 700;
}

.hero-contact-form .form-group {
    background: #F3F4F6;
    padding: 0 1rem;
    /* Add padding for icons */
    border-radius: 50px;
    /* More rounded as per "aur border radius" request */
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-contact-form .form-group i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 0.9rem;
    min-width: 15px;
    text-align: center;
}

.hero-contact-form .form-group > img {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-right: 10px;
    object-fit: contain;
}

.hero-contact-form .form-group:focus-within {
    border-color: var(--accent-color);
    background: white;
}

.hero-contact-form input,
.hero-contact-form select {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: #374151;
    padding: 0.8rem 0;
    /* Adjusted for icon padding */
    font-weight: 500;
}

/* Phone Input Custom Styles */
.phone-input-group .field-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.iti {
    width: 100% !important;
}

.iti__flag-container {
    padding-left: 10px;
}

.iti__selected-flag {
    background: transparent !important;
}

.form-submit-btn {
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    padding: 0.8rem;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 55px;
    /* Space for Top Header */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: none;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

/* Top Header */
.top-header {
    background-color: var(--accent-color);
    /* Orange */
    color: white;
    padding: 0.8rem 5%;
    font-size: 0.95rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    /* Increase z-index to be safe */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-header-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    font-weight: 500;
}

.top-header i {
    margin-right: 0.35rem;
}

.top-left {
    font-weight: 700;
    color: white;
    text-align: left;
}

.top-center {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-align: center;
}

.top-center .top-phone {
    color: white;
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.45rem;
    white-space: nowrap;
}

.top-center .top-phone:hover {
    color: var(--accent-color) !important;
}

.top-right {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
}

.top-left span,
.top-center span,
.top-right span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Mobile Adjustments for Header */
@media (max-width: 768px) {
    .top-header {
        display: none;
        /* User might want it, but usually hidden or stacked. Reference image is likely desktop. Let's hide to save space or stack if requested. User said "aisa top header chahiye", didn't specify mobile. Standard is hide or simplify. I'll specificy hide for now to prevent clutter, as per previous logic. */
    }

    header {
        top: 0;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 60px;
    /* Increased height for visibility */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.nav-links a i:not(.fa-angle-down) {
    font-size: 0.9rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.nav-links a:hover i:not(.fa-angle-down) {
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-container>a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    height: 100%;
    transition: color 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    /* Slight offset to align better */
    width: 320px;
    /* Wider for better readability */
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Stronger shadow */
    border-radius: 12px;
    /* Softer corners */
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Bouncy effect */
    z-index: 1100;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    overflow: hidden;
    /* For border radius */
}

/* Arrow tip at top */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 40px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8fafc;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #fff7ed;
    /* Very light orange tint */
    color: var(--accent-color);
    padding-left: 2rem;
    /* Slide effect */
}

/* Hover indicator line */
.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.2s ease;
    transform-origin: center;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* Mobile Services List */
.mobile-services-list {
    background: #f8fafc;
    margin: 0 -2rem;
    /* Stretch to edges in sidebar padding */
    padding: 0.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-services-list a {
    display: block;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
}

.mobile-services-list a:last-child {
    border-bottom: none;
}

.nav-links a,
.dropdown-container>a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 1.5rem 0;
    /* Increase padding for better hover target height */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 165, 245, 0.3);
}

.about-final-cta {
    padding: 8rem 5%;
    text-align: center;
}

.about-final-cta h2 {
    margin: 0 auto 2rem;
    max-width: 820px;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.18;
    color: var(--text-main);
}

.about-final-cta h2 span {
    display: inline;
    color: var(--accent-color);
}

.about-final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 100%;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    white-space: normal;
    text-align: center;
}

.hamburger-btn {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Mobile Sidebar */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    /* Hidden state */
    pointer-events: none;
    /* Ignore clicks when hidden */
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    /* Slide from right */
    width: 280px;
    height: 100%;
    height: 100dvh;
    background: white;
    z-index: 1002;
    padding: 2rem;
    transform: translateX(100%);
    /* Start off-screen */
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--accent-color);
    cursor: pointer;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-grow: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.sidebar-link {
    font-size: 1.1rem;
    color: var(--text-main);
    padding: 1rem 0;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-services-list {
    background: #f8fafc;
    margin: 0;
    padding: 0 1rem;
    border-radius: 8px;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.34s ease, opacity 0.28s ease, transform 0.28s ease, padding 0.28s ease;
}

.mobile-services-list.active {
    display: block;
    margin-bottom: 1rem;
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
    padding: 0.5rem 1rem;
}

.mobile-services-list.active a {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

.mobile-services-list a {
    display: block;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
}

.mobile-services-list a:last-child {
    border-bottom: none;
}

.sidebar-divider {
    height: 1px;
    background-color: #f1f5f9;
    width: 100%;
}

.sidebar-social {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.sidebar-cta {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: all 0.3s;
}

.sidebar-social a:hover {
    background: var(--accent-color);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 180px 5% 4rem;
    /* Increased from 160px to fix overlap */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay like reference image */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    width: 500%;
    height: 100%;
    animation: heroSlideLeft 24s ease-in-out infinite;
}

.hero-bg-slide {
    width: 20%;
    height: 100%;
    flex: 0 0 20%;
    object-fit: cover;
    object-position: center center;
}

.home-hero .hero-bg-slide {
    transform: scale(1.04);
}

@keyframes heroSlideLeft {
    0%,
    16% {
        transform: translateX(0);
    }

    20%,
    36% {
        transform: translateX(-20%);
    }

    40%,
    56% {
        transform: translateX(-40%);
    }

    60%,
    76% {
        transform: translateX(-60%);
    }

    80%,
    96% {
        transform: translateX(-80%);
    }

    100% {
        transform: translateX(0);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 650px;
    color: white;
    /* Text white on dark overlay */
}

.hero-form-wrapper {
    flex: 0 0 400px;
    max-width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    /* Ensure white */
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.15rem;
    color: #e2e8f0;
    /* Lighter text */
    margin-bottom: 2rem;
    font-weight: 500;
}

.home-hero {
    min-height: 82vh;
    padding-top: 240px;
    padding-bottom: 5rem;
    align-items: center;
}

.home-hero .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.54));
}

.home-hero .hero-container {
    justify-content: space-between;
    align-items: center;
}

.home-hero .hero-text {
    max-width: 760px;
}

.home-hero .hero-form-wrapper {
    display: block;
    flex: 0 0 410px;
    align-self: center;
    margin-top: 1.5rem;
}

.home-hero h1 {
    max-width: 760px;
    font-size: clamp(2.7rem, 4.4vw, 4.6rem);
    line-height: 1.08;
    margin-bottom: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.home-hero h1 span {
    color: #fff;
}

.hero-subtitle {
    margin-bottom: 1.1rem;
    color: #fff;
    font-size: clamp(1.35rem, 2.1vw, 2.25rem);
    line-height: 1.2;
    font-weight: 800;
}

.home-hero p {
    max-width: 740px;
    margin-bottom: 1.3rem;
    color: #fff;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.55;
    font-weight: 700;
}

.hero-checklist {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1.5rem;
    color: #fff;
    font-size: clamp(1rem, 1.35vw, 1.3rem);
    font-weight: 800;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.hero-checklist i {
    color: #2bd86f;
    font-size: 1.1em;
    flex: 0 0 auto;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-scroll-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 2rem;
    animation: float 2s infinite ease-in-out;
    cursor: pointer;
    z-index: 2;
}

/* Testimonial Slider */
.testimonial-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    /* Mobile first: 1 card visible */
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - 1rem);
        /* Tablet: 2 cards */
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        min-width: calc(33.333% - 1.33rem);
        /* Desktop: 3 cards */
    }
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-img {
    width: 60px;
    height: 60px;
    background: #EAF5FF;
    /* Light orange */
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.client-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #42A5F5;
    /* Gold */
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    background: #CBD5E1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    padding: 6rem 5%;
    background: #f8fafc;
    /* Very light background for contrast */
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: white;
    color: var(--text-main);
    transition: background 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon i {
    color: #64748b;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
    color: var(--accent-color);
    /* Subtle accent color for active state icon */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fdfdfd;
    transition: all 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    border-top: 1px solid #f1f5f9;
}

.faq-answer p {
    padding: 1.25rem 1.5rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    /* Reduced padding for image fit */
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1) {
    background-color: #EAF5FF;
}

/* Soft Orange */
.service-card:nth-child(2) {
    background-color: #EFF6FF;
}

/* Soft Blue */
.service-card:nth-child(3) {
    background-color: #F0FDF4;
}

/* Soft Green */
.service-card:nth-child(4) {
    background-color: #FAF5FF;
}

/* Soft Purple */
.service-card:nth-child(5) {
    background-color: #FDF2F8;
}

/* Soft Pink */
.service-card:nth-child(6) {
    background-color: #FEFCE8;
}

/* Soft Yellow */

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
    display: block;
}

.service-card:hover .service-img {
    transform: scale(1.03);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    text-align: left;
    /* Align with text */
    padding: 0 0.5rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: left;
    padding: 0 0.5rem;
    flex-grow: 1;
    /* Push button down */
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    width: auto;
    /* Allow auto width based on content */
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 6rem 5%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #FFFFFF;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    object-position: center center;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 800;
}

.stat-item p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-main);
    font-weight: 600;
}

/* Callback Section */
.callback-section {
    padding: 6rem 5%;
    background:
        linear-gradient(90deg, rgba(241, 245, 249, 0.96), rgba(241, 245, 249, 0.84)),
        url('assets/images/vlg-pipeline.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.callback-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

.callback-section::after {
    content: '';
    position: absolute;
    right: -8%;
    top: 50%;
    width: 460px;
    height: 460px;
    background: rgba(66, 165, 245, 0.14);
    border-radius: 50%;
    filter: blur(20px);
    transform: translateY(-50%);
    pointer-events: none;
}

.callback-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.callback-info {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.callback-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.callback-icon i {
    font-size: 2.5rem;
    color: #CBD5E1;
    /* Placeholder grey */
}

.callback-info h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.callback-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.callback-time {
    display: inline-block;
    background: #EAF5FF;
    color: #1565C0;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.callback-sub {
    font-style: italic;
    color: var(--text-muted);
    font-family: serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.callback-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    transition: color 0.3s;
}

.callback-phone:hover {
    color: var(--accent-color);
}

.callback-form-card {
    flex: 1;
    min-width: 320px;
    max-width: 540px;
    background: var(--accent-color);
    /* Orange background as requested style */
    padding: 3px;
    /* Border effect */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(66, 165, 245, 0.2);
}

.form-header {
    text-align: center;
    padding: 1rem 1.5rem;
    /* Reduced from 1.5rem to 1rem */
    color: white;
}

.form-header h3 {
    font-size: 1.3rem;
    /* Reduced from 1.5rem or 1.8rem inline */
    margin: 0;
}

.callback-form {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    /* Slightly less than card */
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.callback-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #F8FAFC;
    transition: all 0.3s;
}

.callback-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.1);
}

.callback-submit-btn {
    background: white;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.callback-submit-btn:hover {
    background: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .callback-container {
        flex-direction: column;
        gap: 3rem;
    }

    .callback-form-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Contact / Footer */
.footer {
    background: linear-gradient(rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98)), url('assets/images/vlg-hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 5% 2rem;
    position: relative;
    border-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #42A5F5;
    font-weight: 700;
}

.footer-logo {
    height: auto;
    max-width: 200px;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-col p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-contact-link {
    color: inherit;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-col ul li a:hover i {
    transform: translateX(5px);
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.7;
    text-align: center;
}

.footer-disclaimer strong {
    color: #e2e8f0;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--accent-color);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Ultimate Contact Page V2 */
.contact-v2-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-dashboard-v2 {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.contact-dashboard-v2::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.glass-info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(66, 165, 245, 0.1);
    background: white;
}

.glass-info-card .icon-box {
    width: 64px;
    height: 64px;
    background: var(--accent-color);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 20px rgba(66, 165, 245, 0.3);
}

.ultimate-form-card {
    background: white;
    padding: 3rem;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    position: relative;
}

.ultimate-form-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: rgba(0, 0, 0, 0.05);
    filter: blur(20px);
    z-index: -1;
}

/* Form Icon Positioning Fix */
.callback-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.callback-form .form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 5;
}

.callback-form .form-group input,
.callback-form .form-group select,
.callback-form .form-group textarea {
    width: 100% !important;
    min-height: 54px;
    padding: 0.85rem 0.9rem 0.85rem 2.85rem !important;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.25;
    color: var(--text-main);
    background: white;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.callback-form .form-group input::placeholder,
.callback-form .form-group textarea::placeholder,
.inner-callback .form-group input::placeholder {
    color: #64748b;
    opacity: 1;
}

.callback-form .form-group textarea {
    height: 100px;
    resize: none;
    padding-top: 1.2rem !important;
}

.callback-form .form-group textarea~i.fa-comment-dots {
    top: 1.5rem;
    transform: none;
}

.callback-form .form-group input:focus,
.callback-form .form-group select:focus,
.callback-form .form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(66, 165, 245, 0.1);
}

.contact-v2-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .contact-v2-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Inner Page Premium Callback Section */
.inner-callback {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.inner-callback::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.inner-callback .callback-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 540px);
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.inner-callback.service-cta-only .callback-container {
    display: flex;
    justify-content: center;
    text-align: center;
}

.inner-callback.service-cta-only .callback-info {
    max-width: 760px;
}

.inner-callback .callback-info h3 {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.inner-callback .callback-info h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.inner-callback .callback-info p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.inner-callback .callback-phone {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.inner-callback .callback-phone i {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.inner-callback .callback-form-card {
    background: #ffffff;
    width: 100%;
    max-width: 540px;
    justify-self: end;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.inner-callback .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.inner-callback .form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: var(--transition);
}

.inner-callback .form-group input {
    padding-left: 2.85rem !important;
    padding-right: 1rem !important;
    height: 60px;
    border-radius: 15px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    font-size: 1rem;
}

.inner-callback .form-group input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(66, 165, 245, 0.05);
}

.inner-callback .form-group input:focus+i {
    color: var(--accent-color);
}

.inner-callback .callback-submit-btn {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #42A5F5 0%, #1E88E5 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(66, 165, 245, 0.3);
    transition: all 0.3s ease;
}

.inner-callback .callback-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(66, 165, 245, 0.4);
}

@media (max-width: 991px) {
    .about {
        flex-direction: column;
    }

    .inner-callback .callback-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .inner-callback .callback-form-card {
        justify-self: center;
        max-width: 620px;
    }

    .inner-callback .callback-phone {
        justify-content: center;
    }

    .inner-callback .callback-info h2 {
        font-size: 2.2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
        /* Show hamburger */
    }

    .nav-links,
    .desktop-cta {
        display: none !important;
        /* Hide defaults */
    }

    .navbar {
        padding: 1rem 5%;
        /* Ensure padding is consistent */
    }

    .hero {
        padding-top: 80px;
        /* Adjust for mobile header */
        height: auto;
        min-height: auto;
        padding-bottom: 4rem;
        flex-direction: column;
    }

    .hero-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .home-hero {
        min-height: 78vh;
        padding-top: 140px;
        text-align: left;
    }

    .home-hero .hero-bg-slide {
        transform: scale(1.24);
        transform-origin: center center;
        object-position: center center;
    }

    .home-hero .hero-container {
        text-align: left;
        align-items: stretch;
    }

    .home-hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.12;
    }

    .hero-subtitle {
        font-size: clamp(1.35rem, 6vw, 2rem);
    }

    .home-hero p {
        font-size: 1rem;
        font-weight: 600;
    }

    .hero-checklist {
        font-size: 0.98rem;
        gap: 0.6rem;
    }

    .hero-btns {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-form-wrapper {
        width: 100%;
    }

    .home-hero .hero-form-wrapper {
        display: block;
        flex: 0 1 auto;
        margin-top: 0;
    }

    .about {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

    .footer {
        padding: 4rem 5% 2rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .form-row {
        flex-direction: column;
        /* Stack on mobile again if needed, or keep row if small enough */
        gap: 1rem;
        margin-bottom: 1rem;
    }
}

/* About Us Ultimate Values Grid */
.nav-logo {
    height: 82px;
    width: 250px;
    max-width: 42vw;
    object-fit: contain;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.sidebar-logo {
    height: auto;
    max-width: 230px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.footer-logo {
    max-width: 320px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

@media (max-width: 768px) {
    .navbar {
        min-height: 104px;
        padding: 0.85rem 5%;
    }

    .nav-logo {
        width: 250px;
        height: 94px;
        max-width: 70vw;
    }

    .sidebar-logo {
        max-width: 215px;
    }
}

@media (max-width: 1100px) {
    .top-header-content {
        gap: 0.8rem;
        font-size: 0.82rem;
    }

    .top-center {
        font-size: 0.9rem;
    }
}

@media (max-width: 420px) {
    .nav-logo {
        width: 230px;
        height: 86px;
        max-width: 68vw;
    }
}

.logo:hover .nav-logo,
.sidebar-logo:hover,
.footer-logo:hover {
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 8px 14px rgba(66, 165, 245, 0.2));
}

.nav-links a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

.hero h1,
.hero p {
    animation: fadeIn 0.9s ease-out both;
}

.hero h1 span {
    display: inline-block;
    transition: transform 0.35s ease, text-shadow 0.35s ease;
}

.hero-text:hover h1 span {
    transform: translateY(-4px);
    text-shadow: 0 12px 24px rgba(66, 165, 245, 0.35);
}

.cta-btn i,
.service-btn i,
.repair-popup-actions a i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i,
.service-btn:hover i,
.repair-popup-actions a:hover i {
    transform: translateX(3px);
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) {
    background-color: var(--accent-soft);
    border-radius: 14px;
}

.service-card:hover {
    box-shadow: 0 22px 42px rgba(66, 165, 245, 0.16);
}

.service-card h3 {
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-hover);
    transform: translateX(4px);
}

.footer {
    border-top: none !important;
    box-shadow: none;
}

.social-icon {
    background: rgba(66, 165, 245, 0.16);
}

.whatsapp-float {
    background: var(--accent-color);
    box-shadow: 0 14px 28px rgba(66, 165, 245, 0.24);
}

.whatsapp-float:hover {
    background: var(--accent-hover);
    color: white !important;
    transform: translateY(-4px) scale(1.06);
}

.call-float {
    position: fixed;
    right: 30px;
    bottom: 86px;
    width: 56px;
    height: 56px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    z-index: 1000;
    box-shadow: 0 14px 28px rgba(66, 165, 245, 0.24);
    transition: transform 0.3s ease, background 0.3s ease;
}

.call-float:hover {
    transform: translateY(-4px) scale(1.06);
    background: var(--accent-hover);
    color: white !important;
}

.back-to-top {
    background: var(--text-main);
}

.repair-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(460px, calc(100vw - 32px));
    background: white;
    color: var(--text-main);
    border: 1px solid var(--accent-ring);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.32);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, calc(-50% + 18px)) scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.repair-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.repair-popup-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.55rem;
    padding: 0.35rem 0.75rem;
    background: var(--accent-soft);
    color: var(--accent-hover);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.repair-popup strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
    color: var(--text-main);
}

.repair-popup p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.94rem;
}

.repair-popup-points {
    display: grid;
    gap: 0.65rem;
    margin: 0 0 1.2rem;
}

.repair-popup-points li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-main);
    font-size: 0.94rem;
    font-weight: 600;
}

.repair-popup-points i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    font-size: 0.82rem;
}

.repair-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.repair-popup-close:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(90deg);
}

.repair-popup-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.repair-popup-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    background: var(--accent-color);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.repair-popup-actions a:hover {
    background: var(--accent-hover);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(66, 165, 245, 0.25);
}

@media (max-width: 600px) {
    .repair-popup {
        width: calc(100vw - 28px);
        padding: 1.25rem;
    }

    .whatsapp-float {
        left: 18px;
        bottom: 22px;
        width: 54px;
        height: 54px;
        font-size: 26px;
    }

    .call-float {
        right: 18px;
        bottom: 22px;
        width: 54px;
        height: 54px;
    }

    .back-to-top {
        right: 50%;
        bottom: 29px;
        transform: translateX(50%);
    }

    .back-to-top:hover {
        transform: translateX(50%) translateY(-2px);
    }
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 2rem 0;
}

.value-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    border: 1px solid #f3f4f6;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(66, 165, 245, 0.1);
}

.value-icon {
    width: 54px;
    height: 54px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 15px rgba(66, 165, 245, 0.3);
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    width: 66px;
    height: 66px;
    border: 1px solid #eee;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.value-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
}

.value-card p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* About Us Ultimate V2 Redesign */
.about-dashboard-v2 {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 10rem 5%;
    position: relative;
    overflow: hidden;
}

.about-dashboard-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(66, 165, 245, 0.03), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(66, 165, 245, 0.03), transparent 40%);
    pointer-events: none;
}

.about-story-card {
    background: white;
    padding: 4.5rem;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(66, 165, 245, 0.05);
}

.about-story-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(66, 165, 245, 0.1);
    color: var(--accent-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.floating-experience {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--text-main);
    color: white;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 2;
}

.floating-experience h2 {
    font-size: 3rem;
    color: var(--accent-color);
    margin: 0;
    line-height: 1;
}

.floating-experience p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.ultimate-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all 0.4s ease;
}

.ultimate-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.ultimate-stat-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {

    .responsive-about-grid,
    .responsive-grid,
    .inner-callback .callback-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .inner-callback .callback-container {
        gap: 4rem !important;
    }
}

/* Thank You Page Redesign */
.thanku-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/vlg-range.webp') no-repeat center center/cover;
    color: white;
    padding: 120px 5% 60px;
    margin-top: 55px;
}

.thanku-content {
    max-width: 900px;
    animation: fadeIn 1s ease-out;
}

.thanku-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.thanku-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(66, 165, 245, 0.4);
    color: white !important;
}

@media (max-width: 768px) {
    .thanku-hero {
        min-height: 70vh;
        padding-top: 100px;
    }

    .thanku-content h1 {
        font-size: 2.2rem;
    }

    .thanku-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .phone-cta {
        padding: 0.8rem 2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 96px;
    }

    .about-page-content {
        padding: 4rem 5% !important;
        overflow: hidden;
    }

    .about-page-content .container,
    .responsive-grid,
    .about-values-grid {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .responsive-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 4rem !important;
    }

    .about-page-content h2,
    .about-page-content h3,
    .about-page-content p {
        overflow-wrap: anywhere;
    }

    .about-page-content h2,
    .stats-section h2 {
        font-size: clamp(2rem, 9vw, 2.5rem) !important;
        line-height: 1.15 !important;
    }

    .about-final-cta {
        padding: 4.5rem 5% 5.5rem;
    }

    .about-final-cta h2 {
        max-width: 340px;
        font-size: clamp(1.75rem, 9vw, 2.25rem);
        line-height: 1.15;
        margin-bottom: 1.5rem;
    }

    .about-final-cta h2 span {
        display: block;
    }

    .about-final-cta-btn {
        width: min(100%, 340px);
        padding: 0.95rem 1.1rem;
        font-size: 0.95rem;
        line-height: 1.35;
        border-radius: 28px;
        overflow-wrap: anywhere;
    }

    .about-values-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .value-card {
        padding: 1.5rem !important;
        border-radius: 14px !important;
    }

    .glass-form {
        width: 100%;
        padding: 1.25rem;
        border-radius: 14px;
    }

    .contact-dashboard-v2 {
        padding: 4rem 5% !important;
        overflow: hidden;
    }

    .contact-v2-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-sidebar,
    .ultimate-form-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .contact-v2-heading {
        font-size: clamp(2.5rem, 13vw, 3.2rem) !important;
        line-height: 1.05 !important;
        overflow-wrap: anywhere;
    }

    .contact-sidebar p {
        font-size: 1rem !important;
        line-height: 1.65 !important;
        overflow-wrap: anywhere;
    }

    .glass-info-card {
        width: 100%;
        min-width: 0;
        padding: 1.25rem !important;
        border-radius: 18px !important;
        gap: 1rem !important;
        align-items: flex-start;
    }

    .glass-info-card .icon-box {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 14px;
        font-size: 1.25rem;
    }

    .glass-info-card > div:last-child {
        min-width: 0;
        flex: 1;
    }

    .glass-info-card h4,
    .glass-info-card a {
        max-width: 100%;
        font-size: clamp(1.05rem, 5vw, 1.35rem) !important;
        line-height: 1.35 !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .ultimate-form-card {
        padding: 1.25rem !important;
        border-radius: 18px !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .hero-contact-form .form-group,
    .callback-form .form-group {
        min-height: 56px;
        border-radius: 14px;
        padding: 0 0.9rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-contact-form {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-contact-form input,
    .hero-contact-form select,
    .callback-form .form-group input,
    .callback-form .form-group select,
    .callback-form .form-group textarea {
        min-width: 0;
        font-size: 0.95rem !important;
    }

    .hero-contact-form .form-group i {
        flex: 0 0 auto;
    }

    .iti {
        min-width: 0;
    }

    .whatsapp-float,
    .call-float {
        bottom: 16px !important;
        width: 56px !important;
        height: 56px !important;
        font-size: 24px !important;
    }

    .whatsapp-float {
        left: 18px !important;
    }

    .call-float {
        right: 18px !important;
    }

    .back-to-top {
        bottom: 24px !important;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 420px) {
    .nav-logo {
        width: 205px;
        height: 78px;
        max-width: 64vw;
    }

    .hero-btns,
    .repair-popup-actions {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .callback-form .form-group i {
        left: 0.85rem;
        font-size: 1rem;
    }

    .callback-form .form-group input,
    .callback-form .form-group select,
    .callback-form .form-group textarea {
        font-size: 0.86rem !important;
        padding-left: 2.55rem !important;
        padding-right: 0.65rem !important;
    }
}

/* Lightweight Interaction Enhancements */
html {
    scroll-behavior: smooth;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

header.sticky {
    background: #FFFFFF;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    border-bottom-color: rgba(66, 165, 245, 0.18);
}

a,
button,
input,
select,
textarea,
.service-card,
.value-card,
.glass-form,
.callback-form-card,
.contact-info-card,
.footer-column,
.social-icon,
.faq-item,
.service-img,
.about-img img,
.hero-image img,
.repair-popup {
    transition-duration: 0.28s;
    transition-timing-function: ease;
}

button,
.cta-btn,
.service-btn,
.callback-submit-btn,
.form-submit-btn,
.whatsapp-float,
.call-float,
.back-to-top,
.repair-popup-actions a {
    -webkit-tap-highlight-color: transparent;
    transform-origin: center;
}

button:active,
.cta-btn:active,
.service-btn:active,
.callback-submit-btn:active,
.form-submit-btn:active,
.whatsapp-float:active,
.call-float:active,
.back-to-top:active,
.repair-popup-actions a:active {
    transform: translateY(1px) scale(0.98);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.faq-question:focus-visible {
    outline: 3px solid var(--accent-ring);
    outline-offset: 3px;
}

.hamburger-btn i,
.close-menu-btn i {
    transition: transform 0.28s ease, color 0.28s ease;
}

.hamburger-btn:hover i {
    transform: scale(1.08);
    color: var(--accent-color);
}

.close-menu-btn:hover i {
    transform: rotate(90deg);
}

.mobile-sidebar {
    will-change: transform;
}

.mobile-sidebar .sidebar-link {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.28s ease, transform 0.28s ease, color 0.28s ease;
}

.mobile-sidebar.active .sidebar-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-sidebar.active .sidebar-link:nth-child(1) {
    transition-delay: 0.04s;
}

.mobile-sidebar.active .sidebar-link:nth-child(2) {
    transition-delay: 0.08s;
}

.mobile-sidebar.active .sidebar-link:nth-child(3) {
    transition-delay: 0.12s;
}

.mobile-sidebar.active .sidebar-link:nth-child(4) {
    transition-delay: 0.16s;
}

.mobile-sidebar.active .sidebar-link:nth-child(5) {
    transition-delay: 0.2s;
}

.mobile-sidebar.active .sidebar-link:nth-child(6) {
    transition-delay: 0.24s;
}

.mobile-services-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.34s ease, opacity 0.28s ease, transform 0.28s ease;
}

.mobile-services-list.active {
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    will-change: opacity, transform;
}

@media (hover: hover) {
    .service-card:hover,
    .value-card:hover,
    .contact-info-card:hover,
    .callback-form-card:hover {
        transform: translateY(-6px);
    }

    .service-card:hover .service-img,
    .about-img:hover img,
    .hero-image:hover img {
        transform: scale(1.035);
    }

    .service-btn:hover,
    .callback-submit-btn:hover,
    .form-submit-btn:hover,
    .repair-popup-actions a:hover {
        letter-spacing: 0.02em;
    }
}

.faq-question {
    user-select: none;
}

.faq-answer {
    will-change: max-height;
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 16px 34px rgba(66, 165, 245, 0.14);
}

.show-more-content,
[data-show-more-content] {
    max-height: 360px;
    overflow: hidden;
    transition: max-height 0.36s ease;
}

.show-more-content.is-expanded,
[data-show-more-content].is-expanded {
    max-height: 2400px;
}

.show-more-btn,
.show-more-toggle {
    cursor: pointer;
}

.hero-contact-form .form-group,
.callback-form .form-group,
.inner-callback .form-group {
    transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.hero-contact-form .form-group:focus-within,
.callback-form .form-group:focus-within,
.inner-callback .form-group:focus-within {
    box-shadow: 0 0 0 4px var(--accent-ring);
    transform: translateY(-1px);
}

.form-submit-btn.is-loading,
.callback-submit-btn.is-loading,
button[type="submit"].is-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    cursor: wait;
    opacity: 0.86;
}

.btn-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.75s linear infinite;
}

@keyframes btnSpin {
    to {
        transform: rotate(360deg);
    }
}

.back-to-top {
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-sidebar .mobile-services-list {
    display: none !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    margin: 0 0 1rem !important;
    padding: 0.5rem 1rem !important;
}

.mobile-sidebar .mobile-services-list.active {
    display: block !important;
}

.mobile-sidebar .mobile-services-list a {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0.9rem 0 !important;
    color: var(--text-muted) !important;
    line-height: 1.45 !important;
}

.whatsapp-float,
.call-float {
    animation: float 3.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    html,
    * {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .whatsapp-float,
    .call-float {
        animation: none !important;
    }

    .hero-bg-slider {
        animation: none !important;
        transform: translateX(0) !important;
    }
}
