/* ============================================
   AMBIKA ENTERPRISES - MAIN STYLESHEET
   Professional 2026 UI/UX Design
   ============================================ */

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: var(--text-base, 16px);
    line-height: var(--leading-normal, 1.6);
    color: var(--neutral-800, #262626);
    background: var(--neutral-50, #fafafa);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.page-loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: var(--container-xl, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-5, 20px);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base, 300ms) ease;
}

ul {
    list-style: none;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-weight: var(--font-bold, 700);
    line-height: var(--leading-tight, 1.25);
    color: var(--neutral-900, #171717);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-50, #e6f0ff) 0%, var(--primary-100, #b3d4ff) 100%);
    color: var(--primary-600, #0052b3);
    padding: var(--space-2, 8px) var(--space-4, 16px);
    border-radius: var(--radius-full, 9999px);
    font-size: var(--text-lg, 18px);
    font-weight: var(--font-bold, 700);
    letter-spacing: var(--tracking-wide, 0.025em);
    text-transform: uppercase;
    margin-bottom: var(--space-4, 16px);
}

.section-title {
    font-size: clamp(var(--text-2xl, 24px), 5vw, var(--text-4xl, 36px));
    color: var(--neutral-900, #171717);
    margin-bottom: var(--space-4, 16px);
}

.section-subtitle {
    font-size: clamp(var(--text-3xl, 30px), 6vw, var(--text-5xl, 48px));
    color: var(--primary-600, #0052b3);
    margin-bottom: var(--space-6, 24px);
}

.section-description {
    font-size: var(--text-lg, 18px);
    color: var(--neutral-600, #525252);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: var(--space-12, 48px);
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: var(--gradient-primary, linear-gradient(135deg, #0066e6, #00294d));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2, 8px);
    padding: var(--space-4, 16px) var(--space-8, 32px);
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: var(--text-base, 16px);
    font-weight: var(--font-semibold, 600);
    border-radius: var(--radius-lg, 12px);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base, 300ms) var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary, linear-gradient(135deg, #0066e6, #003d80));
    color: white;
    box-shadow: var(--shadow-primary, 0 10px 40px -10px rgba(0, 102, 230, 0.4));
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px -10px rgba(0, 102, 230, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--glass-bg-light, rgba(255, 255, 255, 0.2));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-600, #0052b3);
}

/* Shine effect for buttons */
.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow, 500ms) ease;
}

.btn-shine:hover::before {
    left: 100%;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.1));
    z-index: var(--z-header, 100);
    transition: all var(--transition-base, 300ms) ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4, 16px) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3, 12px);
}

.company-logo {
    height: 55px;
    width: auto;
    transition: transform var(--transition-base, 300ms) ease;
}

.logo:hover .company-logo {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: var(--text-xl, 20px);
    font-weight: var(--font-bold, 700);
    color: var(--neutral-900, #171717);
    margin-bottom: 2px;
}

.logo-text p {
    font-size: var(--text-xs, 12px);
    color: var(--neutral-500, #737373);
    font-weight: var(--font-medium, 500);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1, 4px);
}

.nav-menu li a {
    display: block;
    padding: var(--space-2, 8px) var(--space-4, 16px);
    font-size: var(--text-sm, 14px);
    font-weight: var(--font-medium, 500);
    color: var(--neutral-700, #404040);
    border-radius: var(--radius-md, 8px);
    transition: all var(--transition-base, 300ms) ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-500, #0066e6);
    transition: all var(--transition-base, 300ms) ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-600, #0052b3);
}

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

.nav-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    border-radius: var(--radius-lg, 12px) !important;
    padding: var(--space-2, 8px) var(--space-5, 20px) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2, 8px);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--neutral-800, #262626);
    border-radius: 2px;
    transition: all var(--transition-base, 300ms) ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 20, 40, 0.85) 0%,
            rgba(0, 40, 80, 0.75) 50%,
            rgba(0, 30, 60, 0.85) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(52, 152, 219, 0.6);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.particle-dot:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-dot:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 0.5s;
}

.particle-dot:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: 1s;
}

.particle-dot:nth-child(4) {
    top: 70%;
    left: 70%;
    animation-delay: 1.5s;
}

.particle-dot:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

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

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--space-2, 8px) var(--space-5, 20px);
    border-radius: var(--radius-full, 9999px);
    font-size: var(--text-sm, 14px);
    font-weight: var(--font-medium, 500);
    margin-bottom: var(--space-6, 24px);
    animation: pulse 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(var(--text-sm, 14px), 2vw, var(--text-lg, 18px));
    color: var(--primary-300, #4d9cff);
    letter-spacing: var(--tracking-widest, 0.1em);
    margin-bottom: var(--space-4, 16px);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(var(--text-3xl, 30px), 6vw, var(--text-6xl, 60px));
    color: white;
    font-weight: var(--font-extrabold, 800);
    margin-bottom: var(--space-6, 24px);
    line-height: 1.1;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #4d9cff, #e6a200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(var(--text-base, 16px), 2vw, var(--text-lg, 18px));
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-8, 32px);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4, 16px);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-10, 40px);
}

.hero-contact {
    display: flex;
    gap: var(--space-6, 24px);
    justify-content: center;
    flex-wrap: wrap;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: var(--space-2, 8px);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm, 14px);
    transition: color var(--transition-base, 300ms) ease;
}

.quick-contact:hover {
    color: white;
}

.quick-contact i {
    color: var(--primary-400, #1a80ff);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8, 32px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2, 8px);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs, 12px);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== WELCOME SECTION ========== */
.welcome {
    padding: var(--space-24, 96px) 0;
    background: var(--neutral-50, #fafafa);
    position: relative;
    overflow: hidden;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16, 64px);
    align-items: center;
}

.welcome-text p {
    color: var(--neutral-600, #525252);
    margin-bottom: var(--space-4, 16px);
    line-height: 1.8;
}

.feature-list {
    margin: var(--space-6, 24px) 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3, 12px);
    padding: var(--space-2, 8px) 0;
    color: var(--neutral-700, #404040);
    font-weight: var(--font-medium, 500);
}

.feature-list li i {
    color: var(--success, #10b981);
    font-size: var(--text-lg, 18px);
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4, 16px);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-5, 20px) var(--space-8, 32px);
    border-radius: var(--radius-xl, 16px);
    margin-top: var(--space-6, 24px);
    box-shadow: var(--shadow-primary);
}

.badge-number {
    font-size: var(--text-5xl, 48px);
    font-weight: var(--font-extrabold, 800);
    line-height: 1;
}

.experience-badge .badge-number::after {
    content: "+";
    display: inline-block;
    position: relative;
    top: -0.2em;
    font-size: 0.6em;
    opacity: 0.9;
}

.badge-text {
    font-size: var(--text-base, 16px);
    line-height: 1.3;
    opacity: 0.9;
}

/* Welcome Image */
.welcome-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl, 24px);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow, 500ms) ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base, 300ms) ease;
    cursor: pointer;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2, 8px);
    color: white;
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl, 20px);
}

/* Floating Stats Card */
.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-5, 20px) var(--space-6, 24px);
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-4, 16px);
    animation: float 3s ease-in-out infinite;
}

.floating-card .stat {
    text-align: center;
}

.floating-card .stat-number {
    font-size: var(--text-2xl, 24px);
    font-weight: var(--font-bold, 700);
    color: var(--primary-600, #0052b3);
    display: block;
}

.floating-card .stat-label {
    font-size: var(--text-sm, 14px);
    color: var(--neutral-500, #737373);
}

.floating-card .divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-200, #e5e5e5);
}

/* ========== ADVANTAGES SECTION ========== */
.advantages {
    padding: var(--space-24, 96px) 0;
    background: white;
}

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

.advantage-card {
    background: var(--neutral-50, #fafafa);
    padding: var(--space-8, 32px) var(--space-6, 24px);
    border-radius: var(--radius-xl, 16px);
    text-align: center;
    border: 1px solid var(--neutral-100, #f5f5f5);
    transition: background var(--transition-base, 300ms) ease,
        border-color var(--transition-base, 300ms) ease,
        box-shadow var(--transition-base, 300ms) ease;
}

.advantage-card:hover {
    background: white;
    border-color: var(--primary-100, #b3d4ff);
    box-shadow: var(--shadow-xl);
    transform: none;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-5, 20px);
    position: relative;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base, 300ms) ease;
}

.advantage-card:hover .advantage-icon img {
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-base, 300ms) ease;
    border-radius: 50%;
}

.advantage-card:hover .icon-glow {
    opacity: 1;
}

.advantage-card h3 {
    font-size: var(--text-lg, 18px);
    color: var(--neutral-800, #262626);
    margin-bottom: var(--space-3, 12px);
}

.advantage-card p {
    font-size: var(--text-sm, 14px);
    color: var(--neutral-500, #737373);
    line-height: 1.6;
}

/* ========== CLIENTS SECTION ========== */
.clients {
    padding: var(--space-16, 64px) 0;
    background: var(--neutral-50, #fafafa);
    overflow: hidden;
}

.clients-slider {
    position: relative;
    overflow: hidden;
    margin-top: var(--space-8, 32px);
}

.clients-track {
    display: flex;
    gap: var(--space-6, 24px);
    animation: scrollClients 20s linear infinite;
    width: max-content;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

.client-card {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background: white;
    border-radius: var(--radius-lg, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4, 16px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base, 300ms) ease;
}

.client-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.client-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base, 300ms) ease;
}

.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========== CLIENTS FACTS SECTION ========== */
.clients-facts {
    padding: var(--space-24, 96px) 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.clients-facts .section-title {
    color: white;
    font-size: var(--text-4xl, 36px);
    margin-bottom: var(--space-12, 48px);
}

.facts-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6, 24px);
    position: relative;
    z-index: 2;
}

.fact-card {
    flex: 1;
    text-align: center;
    padding: var(--space-10, 40px) var(--space-6, 24px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl, 16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base, 300ms) var(--ease-spring);
}

.fact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.fact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4, 16px);
}

.fact-icon i {
    font-size: var(--text-2xl, 24px);
    color: white;
}

.fact-number {
    font-size: var(--text-6xl, 60px);
    font-weight: var(--font-extrabold, 800);
    color: white;
    margin-bottom: var(--space-2, 8px);
    line-height: 1;
}

.fact-card:nth-child(1) .fact-number::after,
.fact-card:nth-child(2) .fact-number::after {
    content: '+';
    font-size: 0.6em;
}

.fact-card:nth-child(3) .fact-number::after {
    content: '%';
    font-size: 0.6em;
}

.fact-label {
    font-size: var(--text-lg, 18px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-medium, 500);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide, 0.025em);
}

.facts-image {
    flex: 0 0 auto;
}

.facts-image img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Background decorations */
.clients-facts::before,
.clients-facts::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.clients-facts::before {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.clients-facts::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

/* ========== REVIEWS SECTION ========== */
.reviews {
    padding: var(--space-24, 96px) 0;
    background: var(--neutral-50, #fafafa);
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6, 24px);
    margin-bottom: var(--space-12, 48px);
}

.review-card {
    background: white;
    padding: var(--space-8, 32px);
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-100, #f5f5f5);
    transition: all var(--transition-base, 300ms) ease;
}

.review-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-4, 16px);
    margin-bottom: var(--space-4, 16px);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold, 700);
    font-size: var(--text-lg, 18px);
}

.reviewer-info h4 {
    font-size: var(--text-base, 16px);
    color: var(--neutral-800, #262626);
    margin-bottom: 2px;
}

.stars {
    font-size: var(--text-sm, 14px);
}

.review-text {
    color: var(--neutral-600, #525252);
    line-height: 1.7;
    font-style: italic;
}

.review-footer {
    text-align: right;
    margin-top: var(--space-4, 16px);
}

.review-footer i {
    font-size: var(--text-2xl, 24px);
    color: var(--neutral-200, #e5e5e5);
}

/* Add Review Form */
.add-review {
    background: white;
    padding: var(--space-10, 40px);
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.add-review h3 {
    font-size: var(--text-xl, 20px);
    color: var(--neutral-800, #262626);
    margin-bottom: var(--space-6, 24px);
    display: flex;
    align-items: center;
    gap: var(--space-3, 12px);
}

.add-review h3 i {
    color: var(--primary-500, #0066e6);
}

.review-form .form-group {
    margin-bottom: var(--space-5, 20px);
}

.review-input,
.review-textarea {
    width: 100%;
    padding: var(--space-4, 16px);
    background: var(--neutral-50, #fafafa);
    border: 2px solid var(--neutral-200, #e5e5e5);
    border-radius: var(--radius-lg, 12px);
    font-size: var(--text-base, 16px);
    font-family: inherit;
    transition: all var(--transition-base, 300ms) ease;
}

.review-input:focus,
.review-textarea:focus {
    outline: none;
    border-color: var(--primary-400, #1a80ff);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-50, #e6f0ff);
}

.rating-box {
    display: flex;
    align-items: center;
    gap: var(--space-4, 16px);
    margin-bottom: var(--space-5, 20px);
}

.rating-label {
    font-weight: var(--font-medium, 500);
    color: var(--neutral-700, #404040);
}

.stars-select i {
    font-size: var(--text-2xl, 24px);
    color: var(--neutral-300, #d4d4d4);
    cursor: pointer;
    transition: all var(--transition-fast, 150ms) ease;
}

.stars-select i:hover,
.stars-select i.active {
    color: var(--accent-500, #e6a200);
    transform: scale(1.1);
}

.review-btn {
    width: 100%;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: var(--space-16, 64px) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8, 32px);
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: clamp(var(--text-2xl, 24px), 4vw, var(--text-4xl, 36px));
    color: white;
    margin-bottom: var(--space-3, 12px);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg, 18px);
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4, 16px);
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-600, #0052b3);
    box-shadow: var(--shadow-lg);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--neutral-900, #171717);
    color: white;
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: var(--neutral-900, #171717);
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-10, 40px);
    padding: var(--space-16, 64px) 0 var(--space-10, 40px);
}

.footer-section h4 {
    font-size: var(--text-lg, 18px);
    color: white;
    margin-bottom: var(--space-5, 20px);
    position: relative;
    padding-bottom: var(--space-3, 12px);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-500, #0066e6);
}

.footer-about {
    padding-right: var(--space-8, 32px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3, 12px);
    margin-bottom: var(--space-4, 16px);
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: var(--text-xl, 20px);
    color: white;
}

.footer-about p {
    color: var(--neutral-400, #a3a3a3);
    line-height: 1.7;
    margin-bottom: var(--space-5, 20px);
}

.social-links {
    display: flex;
    gap: var(--space-3, 12px);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--neutral-800, #262626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base, 300ms) ease;
}

.social-links a:hover {
    background: var(--primary-500, #0066e6);
    transform: translateY(-3px);
}

.footer-section ul li {
    margin-bottom: var(--space-3, 12px);
}

.footer-section ul li a {
    color: var(--neutral-400, #a3a3a3);
    display: flex;
    align-items: center;
    gap: var(--space-2, 8px);
    transition: all var(--transition-base, 300ms) ease;
}

.footer-section ul li a:hover {
    color: var(--primary-400, #1a80ff);
    transform: translateX(5px);
}

.footer-section ul li a i {
    font-size: var(--text-xs, 12px);
    color: var(--primary-500, #0066e6);
}

.contact-list li {
    display: flex;
    gap: var(--space-3, 12px);
    margin-bottom: var(--space-4, 16px);
}

.contact-list li i {
    color: var(--primary-500, #0066e6);
    margin-top: 4px;
}

.contact-list li span,
.contact-list li a {
    color: var(--neutral-400, #a3a3a3);
}

.footer-bottom {
    border-top: 1px solid var(--neutral-800, #262626);
    padding: var(--space-6, 24px) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4, 16px);
}

.footer-bottom p {
    color: var(--neutral-500, #737373);
    font-size: var(--text-sm, 14px);
}

.made-with i {
    color: #ef4444;
    animation: heartbeat 1.5s infinite;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: var(--space-6, 24px);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg, 18px);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base, 300ms) ease;
    z-index: 99;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: var(--space-12, 48px);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fact-card {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 200px;
    }

    .facts-image {
        flex: 1 1 100%;
        text-align: center;
        margin-top: var(--space-8, 32px);
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: var(--space-4, 16px);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base, 300ms) ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: var(--space-3, 12px) var(--space-4, 16px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        text-align: center;
    }

    .cta-text p {
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: var(--space-6, 24px);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl, 30px);
    }

    .fact-card {
        flex: 1 1 100%;
    }

    .fact-number {
        font-size: var(--text-5xl, 48px);
    }

    .add-review {
        padding: var(--space-6, 24px);
    }

    .scroll-indicator {
        display: none;
    }
}

/* ========== CONTACT PAGE STYLES ========== */
.contact {
    padding: var(--space-24, 96px) 0;
    background: var(--neutral-50, #fafafa);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12, 48px);
    margin-top: var(--space-12, 48px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6, 24px);
}

.contact-item {
    display: flex;
    gap: var(--space-4, 16px);
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-50, #e6f0ff);
    color: var(--primary-600, #0052b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl, 20px);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: var(--text-lg, 18px);
    color: var(--neutral-800, #262626);
    margin-bottom: var(--space-1, 4px);
}

.contact-item p {
    color: var(--neutral-600, #525252);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5, 20px);
    background: white;
    padding: var(--space-8, 32px);
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: var(--space-4, 16px);
    background: var(--neutral-50, #fafafa);
    border: 2px solid var(--neutral-200, #e5e5e5);
    border-radius: var(--radius-lg, 12px);
    font-size: var(--text-base, 16px);
    font-family: inherit;
    transition: all var(--transition-base, 300ms) ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-400, #1a80ff);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-50, #e6f0ff);
}

.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: var(--space-6, 24px);
    flex-wrap: wrap;
    margin-top: var(--space-12, 48px);
}

.contact-card {
    width: 300px;
    background: white;
    border: 2px solid var(--primary-100, #b3d4ff);
    border-radius: var(--radius-xl, 16px);
    padding: var(--space-8, 32px) var(--space-6, 24px);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base, 300ms) ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-400, #1a80ff);
}

.contact-icon {
    width: 70px;
    margin: 0 auto var(--space-4, 16px);
}

.contact-card h3 {
    color: var(--primary-600, #0052b3);
    margin-bottom: var(--space-3, 12px);
}

.contact-card p {
    color: var(--neutral-600, #525252);
    font-size: var(--text-sm, 14px);
}

.location-content iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg);
}

/* ========== SERVICES PAGE ========== */
.services {
    padding: var(--space-24, 96px) 0;
    padding-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6, 24px);
    margin-top: var(--space-12, 48px);
}

.service-card {
    background: white;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base, 300ms) var(--ease-spring);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow, 500ms) ease;
}

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

.service-card h3 {
    padding: var(--space-4, 16px) var(--space-5, 20px);
    text-align: center;
    font-size: var(--text-base, 16px);
    color: var(--neutral-700, #404040);
}

/* ========== GALLERY PAGE ========== */
.gallery-page {
    padding: var(--space-24, 96px) 0;
    padding-top: 120px;
    background: white;
}

.gallery-grid {
    display: flex;
    gap: var(--space-6, 24px);
    margin-top: var(--space-12, 48px);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-4, 16px) 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-500, #0066e6) var(--neutral-200, #e5e5e5);
    cursor: grab;
}

.gallery-grid:active {
    cursor: grabbing;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: var(--neutral-200, #e5e5e5);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary-500, #0066e6);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-600, #0052b3);
}

.gallery-card {
    background: white;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base, 300ms) ease;
    cursor: pointer;
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    max-width: 400px;
    scroll-snap-align: start;
    animation: slideInFromRight 0.6s ease forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gallery-card:nth-child(even) {
    animation-delay: 0.1s;
}

.gallery-card:nth-child(3n) {
    animation-delay: 0.2s;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow, 500ms) ease;
    object-position: center;
}

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

/* ========== ABOUT PAGE - VMV SECTION ========== */
.vmv-section {
    padding: var(--space-24, 96px) 0;
    background: var(--neutral-50, #fafafa);
}

.vmv-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-12, 48px);
    background: white;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vmv-tab-btn {
    flex: 1;
    padding: var(--space-6, 24px) var(--space-8, 32px);
    background: white;
    border: none;
    cursor: pointer;
    font-size: var(--text-base, 16px);
    font-weight: var(--font-semibold, 600);
    color: var(--neutral-700, #404040);
    transition: all var(--transition-base, 300ms) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2, 8px);
    border-right: 1px solid var(--neutral-200, #e5e5e5);
}

.vmv-tab-btn:last-child {
    border-right: none;
}

.vmv-tab-btn i {
    font-size: var(--text-xl, 20px);
    transition: transform var(--transition-base, 300ms) ease;
}

.vmv-tab-btn:hover {
    background: var(--neutral-50, #fafafa);
}

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

.vmv-tab-btn.active i {
    transform: scale(1.2);
}

.vmv-content-wrapper {
    position: relative;
    min-height: 300px;
}

.vmv-tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.vmv-tab-content.active {
    display: block;
}

.vmv-content-box {
    background: white;
    padding: var(--space-12, 48px);
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.vmv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-6, 24px);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.vmv-icon i {
    font-size: var(--text-4xl, 36px);
    color: white;
}

.vmv-content-box h3 {
    font-size: var(--text-2xl, 24px);
    color: var(--neutral-800, #262626);
    margin-bottom: var(--space-5, 20px);
}

.vmv-content-box p {
    font-size: var(--text-lg, 18px);
    line-height: 1.8;
    color: var(--neutral-600, #525252);
    max-width: 700px;
    margin: 0 auto;
}

.values-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: var(--space-6, 24px) auto 0;
    text-align: left;
}

.values-list li {
    padding: var(--space-4, 16px) var(--space-5, 20px);
    margin-bottom: var(--space-3, 12px);
    background: var(--neutral-50, #fafafa);
    border-radius: var(--radius-lg, 12px);
    display: flex;
    align-items: center;
    gap: var(--space-4, 16px);
    transition: all var(--transition-base, 300ms) ease;
}

.values-list li:hover {
    background: var(--primary-50, #e6f0ff);
    transform: translateX(10px);
}

.values-list li i {
    color: var(--primary-500, #0066e6);
    font-size: var(--text-lg, 18px);
}

/* ========== PRINT STYLES ========== */
@media print {

    .header,
    .page-loader,
    .whatsapp-float,
    .back-to-top,
    .scroll-indicator {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-video,
    .hero-overlay,
    .hero-particles {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* ========== PAGE BANNER ========== */
.page-banner {
    position: relative;
    height: 300px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.banner-content h1 {
    font-size: clamp(var(--text-3xl, 30px), 6vw, var(--text-5xl, 48px));
    font-weight: var(--font-extrabold, 800);
    color: white;
    margin-bottom: var(--space-4, 16px);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2, 8px);
    font-size: var(--text-sm, 14px);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base, 300ms) ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base, 300ms) ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: transform var(--transition-base, 300ms) ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl, 20px);
    transition: all var(--transition-base, 300ms) ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ========== GALLERY OVERLAY ========== */
.gallery-card {
    position: relative;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 230, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base, 300ms) ease;
}

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

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-content i {
    font-size: var(--text-2xl, 24px);
    margin-bottom: var(--space-2, 8px);
    display: block;
}

.gallery-content span {
    font-size: var(--text-sm, 14px);
    font-weight: var(--font-medium, 500);
}

/* ========== SERVICE FEATURES ========== */
.services-intro {
    padding: var(--space-16, 64px) 0 var(--space-8, 32px);
}

.service-features {
    padding: var(--space-16, 64px) 0;
    background: var(--neutral-50, #fafafa);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6, 24px);
    margin-top: var(--space-10, 40px);
}

.feature-card {
    background: white;
    padding: var(--space-8, 32px);
    border-radius: var(--radius-xl, 16px);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base, 300ms) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5, 20px);
}

.feature-icon i {
    font-size: var(--text-2xl, 24px);
    color: white;
}

.feature-card h3 {
    font-size: var(--text-lg, 18px);
    margin-bottom: var(--space-3, 12px);
    color: var(--neutral-800, #262626);
}

.feature-card p {
    font-size: var(--text-sm, 14px);
    color: var(--neutral-600, #525252);
    line-height: 1.6;
}

/* ========== SERVICE CARD OVERLAY ========== */
.service-card {
    position: relative;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 230, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base, 300ms) ease;
    border-radius: var(--radius-xl, 16px) var(--radius-xl, 16px) 0 0;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: var(--text-3xl, 30px);
    color: white;
}

.service-info {
    padding: var(--space-4, 16px) var(--space-5, 20px);
    text-align: center;
}

.service-info h3 {
    padding: 0;
    margin-bottom: var(--space-1, 4px);
}

.size-spec {
    font-size: var(--text-sm, 14px);
    color: var(--primary-600, #0052b3);
    font-weight: var(--font-semibold, 600);
}

/* ========== CONTACT CARD ICON ========== */
.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4, 16px);
}

.contact-card-icon i {
    font-size: var(--text-2xl, 24px);
    color: white;
}

.card-link {
    display: inline-block;
    margin-top: var(--space-3, 12px);
    color: var(--primary-600, #0052b3);
    font-weight: var(--font-semibold, 600);
    font-size: var(--text-sm, 14px);
    transition: color var(--transition-base, 300ms) ease;
}

.card-link:hover {
    color: var(--primary-700, #003d80);
}

/* ========== CONTACT ITEM ICON ========== */
.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-50, #e6f0ff);
    color: var(--primary-600, #0052b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl, 20px);
    flex-shrink: 0;
}

/* ========== WHY CHOOSE GRID ========== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4, 16px);
    margin: var(--space-6, 24px) 0;
}

.why-item {
    display: flex;
    align-items: center;
    gap: var(--space-3, 12px);
    padding: var(--space-3, 12px);
    background: var(--neutral-50, #fafafa);
    border-radius: var(--radius-lg, 12px);
    transition: all var(--transition-base, 300ms) ease;
}

.why-item:hover {
    background: var(--primary-50, #e6f0ff);
    transform: translateX(5px);
}

.why-item i {
    color: var(--success, #10b981);
    font-size: var(--text-lg, 18px);
}

.why-item span {
    font-weight: var(--font-medium, 500);
    color: var(--neutral-700, #404040);
}

/* ========== CONTACT FORM HEADING ========== */
.contact-form h3 {
    font-size: var(--text-xl, 20px);
    color: var(--neutral-800, #262626);
    margin-bottom: var(--space-6, 24px);
}

/* ========== LOCATION SECTION ========== */
.location {
    margin-top: var(--space-12, 48px);
}

/* ========== RESPONSIVE UPDATES ========== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 250px;
    }

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

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: var(--text-base, 16px);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

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

@media (max-width: 480px) {
    .page-banner {
        height: 200px;
    }

    .contact-info-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 320px;
    }

    .gallery-card {
        flex: 0 0 85%;
        min-width: 260px;
    }
}
