:root {
    /* Color Palette */
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    
    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --bg-gradient: linear-gradient(135deg, #f59e0b 0%, rgba(37, 99, 235, 0.2) 100%);
    
    --text-main: #334155;
    --text-light: #64748b;
    --text-heading: #0f172a;
    --text-white: #ffffff;
    
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.2);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --container-width: 1200px;
    --header-height: 80px;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* ================================
   RESET & BASE
================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   UTILITIES
================================ */
.text-primary { color: var(--primary) !important; }
.text-center { text-align: center; }
.bg-light { background-color: #f1f5f9; }
.bg-gradient { 
    background: var(--bg-gradient);
    color: white;
}
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.hidden-mobile { display: inline-flex !important; }

/* ================================
   SCROLL PROGRESS BAR
================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* ================================
   POPUP SYSTEM
================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-container {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: popupSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-base);
}

.popup-close:hover {
    background: var(--danger);
    color: white;
    transform: rotate(90deg);
}

.popup-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-text {
    padding: 30px;
    text-align: center;
}

.popup-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-heading);
}

.popup-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.6;
}

.popup-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* ================================
   HEADER
================================ */
.vision-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition-base);
}

.vision-header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-heading);
}

.brand-logo .logo-img {
    height: 45px;
    transition: var(--transition-base);
}

.vision-header.scrolled .brand-logo .logo-img {
    height: 38px;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-text span {
    color: var(--primary);
}

/* ================================
   NAVIGATION
================================ */
.vision-nav .nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.vision-nav a {
    font-weight: 600;
    color: var(--text-heading);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.vision-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.vision-nav a:hover::after,
.vision-nav a.active::after {
    width: 100%;
}

.vision-nav a:hover,
.vision-nav a.active {
    color: var(--primary);
}

/* Mega Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
    pointer-events: all;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: #f8fafc;
    transition: var(--transition-base);
}

.menu-item:hover {
    background: #eff6ff;
    color: var(--primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.icon-box {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

.menu-item:hover .icon-box {
    background: var(--primary);
    color: white;
    transform: rotate(360deg);
}

/* ================================
   BUTTONS
================================ */
.btn-vision {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-vision:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-vision:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline-light {
    border: 2px solid #e2e8f0;
    color: var(--text-heading);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-glass {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5A;
}

/* ================================
   HERO SECTION
================================ */
.hero-vision {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 58, 138, 0.85) 50%,
        rgba(15, 23, 42, 0.7) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 700px;
    color: white;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-pill {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(37, 99, 235, 0.4);
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-pill.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gradient-text {
    background: linear-gradient(to right, #60a5fa, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-separator {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

/* ================================
   SECTION COMMON
================================ */
.section-vision {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.sub-title {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-heading);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   GRID LAYOUTS
================================ */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.card-vision {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.card-vision:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-vision:hover .card-image img {
    transform: scale(1.15);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.card-vision:hover .card-overlay {
    opacity: 1;
}

.card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-heading);
    font-weight: 700;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.read-more {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.card-vision:hover .read-more {
    gap: 12px;
}

/* ================================
   SPLIT LAYOUT
================================ */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-image {
    position: relative;
}

.rounded-vision {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
}

.split-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 20px;
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    padding: 10px 0;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ================================
   TESTIMONIALS SLIDER
================================ */
.testimonials-slider {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-heading);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-base);
}

.slider-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: -60px;
}

.slider-nav.next {
    right: -60px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* ================================
   FEATURES GRID
================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: var(--transition-base);
}

.feature-box:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================
   INNER PAGE STYLES
================================ */
.page-header-vision {
    height: clamp(300px, 40vh, 400px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    margin-top: var(--header-height);
}

.page-header-vision .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, 
        rgba(15,23,42,0.95) 0%, 
        rgba(15,23,42,0.5) 50%,
        rgba(15,23,42,0.3) 100%
    );
}

.page-header-content {
    position: relative;
    z-index: 5;
    color: white;
}

.page-header-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    display: flex;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 12px;
    color: rgba(255,255,255,0.5);
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

/* Layout Grid */
.layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.paper-card {
    background: white;
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

/* Content Typography */
.content-typography h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.3;
}

.content-typography h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-heading);
    font-weight: 700;
}

.content-typography p {
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.8;
}

.content-typography ul {
    margin-bottom: 25px;
    padding-left: 25px;
    list-style: disc;
}

.content-typography ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-main);
}

.content-typography strong {
    font-weight: 700;
    color: var(--text-heading);
}

/* Content Gallery */
.content-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {

    object-fit: cover;
}

/* Content CTA */
.content-cta {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    margin-top: 40px;
}

.content-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.content-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btns .btn-vision {
    background: white;
    color: var(--primary);
}

.cta-btns .btn-whatsapp {
    background: #25D366;
    color: white;
}

/* Benefits Grid */
.section-title-inner {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-inner i {
    color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.benefit-item:hover {
    background: #eff6ff;
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-heading);
}

.benefit-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ================================
   SIDEBAR WIDGETS
================================ */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.widget-vision {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition-base);
}

.widget-vision:hover {
    box-shadow: var(--shadow-lg);
}

.widget-title {
    font-size: 1.15rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 18px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-heading);
    font-weight: 700;
}

.widget-title i {
    color: var(--primary);
}

/* Quick Contact Widget */
.widget-contact {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
}

.widget-contact .widget-title {
    border-bottom-color: rgba(255,255,255,0.3);
    color: white;
}

.widget-contact .widget-title i {
    color: white;
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    color: white;
}

.contact-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.contact-btn i {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.call-btn i {
    color: var(--primary);
}

.whatsapp-btn i {
    color: #25D366;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.opening-hours {
    background: rgba(255,255,255,0.15);
    padding: 12px;
    border-radius: var(--radius-sm);
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    justify-content: center;
}

/* Search Widget */
.search-input-wrapper {
    position: relative;
}

.vision-input {
    width: 100%;
    padding: 14px 45px 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    background: #f8fafc;
    font-family: inherit;
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.vision-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
}

/* Scrollbar */
.custom-scrollbar {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 8px;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Region Links */
.region-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition-base);
}

.region-link:hover {
    background: #eff6ff;
    color: var(--primary);
    padding-left: 18px;
    border-radius: var(--radius-sm);
}

.region-icon {
    font-size: 0.75rem;
    color: #cbd5e1;
    transition: var(--transition-base);
}

.region-link:hover .region-icon {
    color: var(--primary);
}

/* Accordion (Districts) */
.city-header {
    background: var(--secondary);
    color: white;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 0.95rem;
}

.district-item {
    margin-bottom: 8px;
}

.district-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 3px;
    transition: var(--transition-base);
}

.district-link:hover {
    background: #eff6ff;
    color: var(--primary);
}

.district-item.active .district-link {
    background: var(--primary);
    color: white;
}

.neighborhood-list {
    margin-left: 18px;
    padding-left: 18px;
    border-left: 3px solid var(--primary-light);
    margin-top: 8px;
    margin-bottom: 18px;
}

.neighborhood-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition-base);
}

.neighborhood-link:hover,
.neighborhood-link.active {
    color: var(--primary);
    font-weight: 600;
    padding-left: 5px;
}

/* ================================
   FOOTER
================================ */
.vision-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    padding-top: 90px;
    padding-bottom: 35px;
    position: relative;
}

.vision-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 22px;
    display: block;
    color: white;
}

.footer-logo span {
color: var(--primary-light);
}.footer-desc {
color: rgba(255,255,255,0.7);
margin-bottom: 25px;
line-height: 1.7;
}.social-links {
display: flex;
gap: 12px;
}.social-links a {
width: 42px;
height: 42px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition-base);
}.social-links a:hover {
background: var(--primary);
transform: translateY(-3px);
}.footer-col h4 {
margin-bottom: 28px;
font-size: 1.15rem;
color: white;
font-weight: 700;
}.footer-links li {
margin-bottom: 14px;
}.footer-links a {
color: rgba(255,255,255,0.7);
transition: var(--transition-base);
}.footer-links a:hover {
color: white;
padding-left: 8px;
}.contact-col .contact-item {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
color: rgba(255,255,255,0.8);
transition: var(--transition-base);
}.contact-col .contact-item:hover {
color: white;
}.contact-col .contact-item i {
width: 38px;
height: 38px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
color: var(--primary-light);
flex-shrink: 0;
}.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 35px;
text-align: center;
color: rgba(255,255,255,0.5);
font-size: 0.9rem;
}.design-credit {
color: var(--primary-light);
font-weight: 600;
}/* ================================
FLOAT ACTIONS
================================ */
.float-actions {
position: fixed;
bottom: 35px;
right: 35px;
display: flex;
flex-direction: column;
gap: 15px;
z-index: 990;
}.float-btn {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: white;
box-shadow: var(--shadow-xl);
transition: var(--transition-base);
animation: float 3s ease-in-out infinite;
}.float-btn:hover {
transform: scale(1.15);
}.float-btn.whatsapp {
background: #25D366;
}.float-btn.phone {
background: var(--primary);
}.float-btn.scroll-top {
background: var(--secondary);
display: none;
}.float-btn.scroll-top.visible {
display: flex;
}/* ================================
MOBILE MENU
================================ */
.mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
padding: 8px;
}.mobile-menu-toggle span {
display: block;
width: 28px;
height: 3px;
background: var(--text-heading);
border-radius: 3px;
transition: var(--transition-base);
}.mobile-menu-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(5px);
z-index: 1001;
opacity: 0;
visibility: hidden;
transition: var(--transition-base);
}.mobile-menu-overlay.active {
display: block;
opacity: 1;
visibility: visible;
}.mobile-menu-content {
position: absolute;
top: 0;
right: 0;
width: 85%;
max-width: 350px;
height: 100%;
background: white;
padding: 25px;
transform: translateX(100%);
transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
overflow-y: auto;
box-shadow: -5px 0 30px rgba(0,0,0,0.3);
}.mobile-menu-overlay.active .mobile-menu-content {
transform: translateX(0);
}.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 35px;
padding-bottom: 20px;
border-bottom: 2px solid var(--primary);
}.mobile-menu-header h3 {
font-size: 1.4rem;
color: var(--text-heading);
}.close-menu {
width: 38px;
height: 38px;
background: var(--danger);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition-base);
}.close-menu:hover {
transform: rotate(90deg);
}.mobile-links a {
display: block;
padding: 15px 0;
border-bottom: 1px solid #f1f5f9;
font-weight: 600;
color: var(--text-heading);
transition: var(--transition-base);
}.mobile-links a:hover {
color: var(--primary);
padding-left: 10px;
}.mobile-dropdown-trigger {
padding: 15px 0;
border-bottom: 1px solid #f1f5f9;
font-weight: 600;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
transition: var(--transition-base);
}.mobile-dropdown-trigger:hover {
color: var(--primary);
}.mobile-dropdown-content {
display: none;
padding: 10px 0 10px 20px;
background: #f8fafc;
border-radius: var(--radius-sm);
margin: 5px 0;
}.mobile-dropdown-content.active {
display: block;
}.mobile-dropdown-content a {
font-size: 0.9rem;
border: none;
padding: 10px 0;
}/* ================================
RESPONSIVE DESIGN
================================ */
@media (max-width: 1200px) {
:root {
--container-width: 960px;
}.layout-grid {
    grid-template-columns: 1fr 300px;
    gap: 35px;
}
}@media (max-width: 992px) {
:root {
--header-height: 70px;
}.vision-nav {
    display: none;
}.hidden-mobile {
    display: none !important;
}.mobile-menu-toggle {
    display: flex;
}.hero-title {
    font-size: 2.5rem;
}.hero-stats {
    gap: 20px;
}.stat-separator {
    display: none;
}.layout-grid {
    grid-template-columns: 1fr;
}.split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
}.experience-badge {
    bottom: -15px;
    right: -15px;
    padding: 20px;
}.footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}.testimonial-card {
    min-width: calc(50% - 15px);
}.slider-nav {
    display: none;
}.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}@media (max-width: 768px) {
.section-vision {
padding: 60px 0;
}.section-header {
    margin-bottom: 40px;
}.hero-vision {
    min-height: 80vh;
}.hero-title {
    font-size: 2rem;
}.hero-desc {
    font-size: 1rem;
}.hero-btns {
    flex-direction: column;
    align-items: stretch;
}.hero-btns .btn-vision {
    justify-content: center;
}.hero-stats {
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 25px;
}.stat-num {
    font-size: 1.5rem;
}.vision-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}.paper-card {
    padding: 30px 20px;
}.content-cta {
    padding: 30px 20px;
}.cta-btns {
    flex-direction: column;
}.benefits-grid {
    grid-template-columns: 1fr;
}.testimonial-card {
    min-width: 100%;
}.features-grid {
    grid-template-columns: 1fr;
}.page-header-vision {
    height: 300px;
    padding-bottom: 40px;
}.page-header-content h1 {
    font-size: 1.8rem;
}.float-actions {
    bottom: 20px;
    right: 20px;
    gap: 12px;
}.float-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
}
}@media (max-width: 576px) {
.container {
padding: 0 15px;
}.hero-title {
    font-size: 1.75rem;
}.hero-stats {
    display: none;
}.footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
}.social-links {
    justify-content: center;
}.footer-links {
    text-align: center;
}.contact-col .contact-item {
    justify-content: center;
}.footer-logo {
    text-align: center;
}.brand-logo .logo-text {
    display: none;
}.mobile-menu-content {
    width: 100%;
    max-width: 100%;
}.page-header-vision {
    height: 250px;
}.breadcrumb {
    font-size: 0.8rem;
}
}@media (max-width: 400px) {
.hero-btns .btn-vision {
font-size: 0.9rem;
padding: 12px 20px;
}.float-actions {
    bottom: 15px;
    right: 15px;
}.float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
}
}/* ================================
ANIMATIONS
================================ */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}/* ================================
PRINT STYLES
================================ */
@media print {
.vision-header,
.mobile-menu-overlay,
.float-actions,
#scroll-progress,
#welcomePopup {
display: none !important;
}body {
    background: white;
}.section-vision {
    padding: 20px 0;
}
}
