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

:root {
    --primary-blue: #1e3a8a;
    --dark-blue: #1e40af;
    --light-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --light-green: #34d399;
    --dark-grey: #4b5563;
    --light-grey: #f3f4f6;
    --medium-grey: #9ca3af;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --gradient-primary: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    --gradient-green: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    --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-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Header Styles
   ============================================ */
.header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 244, 246, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.logo-placeholder:hover::before {
    animation: shine 1s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.brand-info {
    flex: 1;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-blue);
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 11px;
    color: var(--dark-grey);
    text-transform: capitalize;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--dark-grey);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--primary-blue);
    font-weight: 700;
    background: rgba(59, 130, 246, 0.15);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    background: var(--gradient-primary);
    height: 3px;
}

.btn-contact {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-contact > * {
    position: relative;
    z-index: 1;
}

.btn-contact:hover::before {
    width: 300px;
    height: 300px;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-grey);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-accent {
    position: absolute;
    right: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-blue);
}

/* ============================================
   Home Hero Section
   ============================================ */
.hero-home {
    position: relative;
    min-height: 600px;
    padding: 80px 0 60px;
    background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 64, 175, 0.85)),
                url('../images/hero-bg.jpg') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.7) 0%, rgba(30, 64, 175, 0.8) 100%);
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    animation: pulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(34, 197, 94, 0.5);
    }
}

.badge-icon {
    font-size: 16px;
    font-weight: bold;
}

.hero-content-home {
    max-width: 800px;
    margin-bottom: 40px;
}

.hero-title-home {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.hero-title-line1 {
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
}

.hero-title-line2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1.2;
    margin-top: 5px;
}

.hero-subtitle-home {
    font-size: 18px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary-home {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 35px;
    font-weight: 800;
    font-size: 17px;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary-home::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-primary-home > * {
    position: relative;
    z-index: 1;
}

.btn-primary-home:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-2xl);
    color: var(--white);
}

.btn-primary-home:hover::before {
    width: 400px;
    height: 400px;
}

.btn-arrow {
    font-size: 20px;
}

.hero-contact-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.contact-card-hero {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 255, 0.98) 100%);
    padding: 25px 28px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    flex: 1;
    min-width: 250px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-card-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
    transition: left 0.5s ease;
}

.contact-card-hero:hover::before {
    left: 100%;
}

.contact-card-hero:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: var(--light-blue);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(224, 242, 254, 1) 100%);
}

.card-icon {
    font-size: 36px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-grey);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-card-hero:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.whatsapp-card .card-icon {
    background: rgba(34, 197, 94, 0.1);
}

.emergency-card .card-icon {
    background: rgba(59, 130, 246, 0.1);
}

.card-content {
    flex: 1;
}

.card-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.card-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.card-desc {
    font-size: 13px;
    color: var(--text-light);
}

.card-arrow {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: bold;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-icon-small {
    font-size: 16px;
}

/* Statistics Bar */
.stats-bar {
    background: linear-gradient(135deg, #3b82f6 0%, #34d399 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    color: var(--white);
    position: relative;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--white);
    transition: width 0.3s ease;
}

.stat-item:hover::after {
    width: 60px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.4;
}

/* ============================================
   Hero Section / Slider
   ============================================ */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide:nth-child(1) {
    background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 64, 175, 0.7)),
                url('../images/hero-1.jpg') center/cover;
}

.hero-slide:nth-child(2) {
    background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 64, 175, 0.7)),
                url('../images/hero-2.jpg') center/cover;
}

.hero-slide:nth-child(3) {
    background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 64, 175, 0.7)),
                url('../images/hero-3.jpg') center/cover;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-blue);
    padding: 16px 40px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1.2s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-2xl);
    color: var(--white);
    border-color: transparent;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--white);
    width: 30px;
    border-radius: 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-up.animated {
    opacity: 1;
}

/* Additional smooth animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Selection color */
::selection {
    background: var(--light-blue);
    color: var(--white);
}

::-moz-selection {
    background: var(--light-blue);
    color: var(--white);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

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

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

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

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

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.title-continuation {
    font-weight: 400;
    color: var(--text-dark);
}

.section-title .title-continuation {
    display: block;
    font-size: 32px;
    font-weight: 600;
    margin-top: 5px;
    color: var(--primary-blue);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--light-blue);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 5px;
    transition: all 0.4s ease;
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

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

.highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.highlight-card:hover {
    transform: translateX(8px) translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--light-green);
}

.highlight-card:hover::after {
    transform: scaleY(1);
    transform-origin: top;
}

.highlight-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.3;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background-color: var(--light-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--light-blue);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.service-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 12px rgba(59, 130, 246, 0.3));
}

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
    background: var(--light-grey);
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.service-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

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

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

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-grey) 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--light-blue);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--light-blue);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
    padding: 100px 0 120px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.gallery-breadcrumbs {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-breadcrumbs a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-breadcrumbs a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.breadcrumb-separator {
    color: var(--white);
    margin: 0 5px;
    opacity: 0.8;
    font-weight: 600;
    font-size: 16px;
}

.gallery-breadcrumbs span:last-child {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    opacity: 1;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.gallery-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.gallery-hero-subtitle {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

.gallery-filters {
    background-color: var(--white);
    padding: 30px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    background-color: var(--light-grey);
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.filter-tab:hover {
    background-color: var(--medium-grey);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.filter-tab:hover::before {
    width: 200px;
    height: 200px;
}

.filter-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px) scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gallery {
    background-color: var(--light-grey);
    padding: 60px 0;
}

.gallery-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    height: 250px;
    background: var(--light-grey);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: var(--shadow-2xl);
    z-index: 10;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    padding: 25px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay small {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.gallery-placeholder p {
    font-size: 18px;
    margin-bottom: 8px;
}

.gallery-placeholder small {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-grey) 100%);
    padding: 28px;
    border-radius: 12px;
    border-left: 5px solid var(--light-blue);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-primary);
    transform: translateY(-50%);
    transition: height 0.4s ease;
}

.contact-card:hover {
    transform: translateX(10px) translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--light-green);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.contact-card:hover::before {
    height: 100%;
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-map h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 15px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   Contact Form Styles
   ============================================ */
.contact-form-wrapper {
    flex: 1;
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    height: 100%;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.contact-form-container h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.required {
    color: #ef4444;
}

.form-control {
    padding: 14px 18px;
    border: 2px solid var(--light-grey);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--white);
    color: var(--text-dark);
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    background-color: #fafbfc;
}

.form-control:hover:not(:focus) {
    border-color: var(--medium-grey);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-control::placeholder {
    color: var(--medium-grey);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234b5563' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 35px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.error-message {
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--text-dark) 0%, #111827 100%);
    color: var(--white);
    padding: 60px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-section p {
    color: var(--medium-grey);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--medium-grey);
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--light-blue);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-section a {
    color: var(--medium-grey);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--medium-grey);
    font-size: 14px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */

/* Tablet Styles */
@media (max-width: 968px) {
    .brand-name {
        font-size: 24px;
    }

    .brand-subtitle {
        font-size: 11px;
    }

    .nav-list {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-home {
        min-height: 500px;
        padding: 60px 0 40px;
    }

    .hero-title-line1 {
        font-size: 28px;
    }

    .hero-title-line2 {
        font-size: 42px;
    }

    .hero-subtitle-home {
        font-size: 16px;
    }

    .hero-contact-cards {
        flex-direction: column;
    }

    .contact-card-hero {
        width: 100%;
    }

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

    .stat-item {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 25px 15px;
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-item:nth-child(n+3) {
        border-bottom: none;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 13px;
    }

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

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

    .section-title {
        font-size: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        gap: 10px;
    }

    .logo-section {
        flex: 1;
        min-width: 0;
        gap: 10px;
    }

    .logo-section a {
        gap: 10px !important;
    }

    .logo-placeholder {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }

    .brand-info {
        min-width: 0;
        flex: 1;
    }

    .brand-name {
        font-size: 18px;
        margin-bottom: 2px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-subtitle {
        font-size: 9px;
        line-height: 1.2;
        margin-bottom: 1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-tagline {
        font-size: 8px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .main-nav {
        position: relative;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        z-index: 1001;
        padding: 8px;
        background: transparent;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background: rgba(59, 130, 246, 0.1);
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 3px;
        background-color: var(--primary-blue);
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background-color: var(--primary-blue);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: var(--primary-blue);
    }

    .nav-list {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-radius: 0;
        margin-top: 0;
    }

    .nav-list.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-list::before {
        content: 'Menu';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
        z-index: 1;
        display: flex;
        align-items: center;
        padding: 0 25px;
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 1px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-list li {
        width: 100%;
        padding: 0 25px;
    }

    .nav-link {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-dark);
        border-radius: 12px;
        margin: 5px 0;
        transition: all 0.3s ease;
        position: relative;
        background: transparent;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
        color: var(--primary-blue);
        transform: translateX(5px);
        border-bottom-color: transparent;
    }

    .nav-link.active {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(52, 211, 153, 0.15) 100%);
        border-left: 4px solid var(--light-blue);
        padding-left: 16px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .btn-contact {
        width: calc(100% - 50px);
        text-align: center;
        margin: 15px 25px;
        padding: 14px 28px !important;
        border-radius: 30px;
        background: var(--gradient-primary);
        color: var(--white) !important;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        border: none;
    }

    .btn-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }

    .nav-list.active {
        animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .gallery-hero {
        padding: 60px 0 80px;
    }

    .gallery-hero-title {
        font-size: 36px;
    }

    .gallery-hero-subtitle {
        font-size: 16px;
    }

    .filter-tabs {
        gap: 10px;
    }

    .filter-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .about-text h3 {
        font-size: 24px;
    }

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

/* ============================================
   Index Page Specific Styles
   ============================================ */

/* Index About Section */
.index-about-section {
    background-color: var(--white);
    padding: 100px 0;
}

.index-about-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.index-about-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.index-about-header {
    margin-bottom: 10px;
}

.index-about-title {
    font-size: 35px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.2;
}

.index-about-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.index-about-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 100%);
    border-radius: 2px;
    margin-top: 10px;
}

.index-about-text {
    text-align: left;
}

.index-about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

.index-about-right {
    display: flex;
    flex-direction: column;
}

.index-about-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.index-about-card {
    background: var(--white);
    border: 2px solid var(--light-grey);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
}

.index-about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-blue);
}

.index-about-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.index-about-card-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.index-about-card:hover .index-about-card-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

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

.index-about-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.index-about-card-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Index Section Headers */
.index-section-header {
    text-align: center;
}

.index-subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-top: 15px;
    color: var(--text-dark);
}

.section-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.index-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Index Services Section */
.index-services-section {
    background: linear-gradient(180deg, var(--light-grey) 0%, #ffffff 100%);
    padding: 100px 0;
}

.index-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

/* Index Process Section */
.index-process-section {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
}

.process-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(52, 211, 153, 0.15) 100%);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-main-title {
    font-size: 35px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: Georgia, 'Times New Roman', serif;
}

.process-flow-wrapper {
    margin-top: 60px;
    position: relative;
    padding: 40px 0 80px;
}

.process-icons-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-icons-line::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #34d399 100%);
    z-index: 0;
}

.process-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.process-icon-square {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.process-icon-square:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.step-icon-blue {
    background: #3b82f6;
}

.step-icon-green {
    background: #10b981;
}

.step-icon-purple {
    background: #8b5cf6;
}

.step-icon-orange {
    background: #f59e0b;
}

.step-icon-teal {
    background: #14b8a6;
}

.process-icon-square svg {
    width: 40px;
    height: 40px;
}

.process-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step-item:hover .process-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.process-step-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-label-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.step-label-green {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.step-label-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.step-label-orange {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.step-label-teal {
    background: rgba(20, 184, 166, 0.15);
    color: #14b8a6;
}

.process-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.process-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Index Facility Section */
.index-facility-section {
    background: linear-gradient(180deg, var(--light-grey) 0%, #f8fafc 100%);
    padding: 100px 0;
}

.index-facility-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Index Testimonials Section */
.index-testimonials-section {
    background-color: var(--white);
    padding: 100px 0;
}

.index-testimonials-grid {
    margin-top: 60px;
}

.testimonial-name {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.testimonial-category {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 15px;
}

/* Index Contact Section */
.index-contact-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.contact-badge {
    display: inline-block;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-main-title {
    font-size: 35px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: Georgia, 'Times New Roman', serif;
}

.index-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.index-contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.index-contact-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.contact-card-title {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-info-item:last-of-type {
    margin-bottom: 40px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-blue {
    background: rgba(59, 130, 246, 0.15);
}

.contact-icon-green {
    background: rgba(16, 185, 129, 0.15);
}

.contact-icon-purple {
    background: rgba(139, 92, 246, 0.15);
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-info-text {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #10b981;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-call-now {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #3b82f6;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-call-now:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contact-form-card .form-group {
    margin-bottom: 20px;
}

.contact-form-card label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-form-card .required {
    color: #ef4444;
}

.contact-form-card .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-form-card .form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-gradient {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-submit-gradient:active {
    transform: translateY(0);
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
}

/* FAQ Section - Enhanced Beautiful Design */
.faq-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.faq-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.faq-badge-tab {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-title-wrapper {
    position: relative;
    display: inline-block;
}

.faq-main-heading {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.3;
    font-family: Georgia, 'Times New Roman', serif;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-heading-main {
    display: block;
    font-weight: 700;
}

.faq-heading-accent {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
}

.faq-underline {
    display: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 15px;
    padding: 25px 30px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.faq-question {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s ease, opacity 0.3s ease;
    margin-top: 0;
    opacity: 0;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 800px;
    margin-top: 25px;
    opacity: 1;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding-left: 5px;
}

.faq-answer p {
    margin: 0 0 15px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Index FAQ Section (Legacy Support) */
.index-faq-section {
    background-color: var(--white);
    padding: 100px 0;
}

.faq-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(52, 211, 153, 0.15) 100%);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-main-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0;
    font-family: Georgia, 'Times New Roman', serif;
}

.index-faq-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

/* Index Final CTA Section */
.index-cta-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.index-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.index-cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 19px;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--white) !important;
    color: var(--primary-blue) !important;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 17px;
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    background: transparent !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 17px;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for index page */
@media (max-width: 768px) {
    .success-rate-badge {
        flex-direction: column;
        gap: 10px;
    }

    .success-number {
        font-size: 42px;
    }

    .success-label {
        font-size: 20px;
    }

    .index-about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .index-about-title {
        font-size: 36px;
    }

    .index-about-subtitle {
        font-size: 26px;
    }

    .index-about-text p {
        font-size: 16px;
    }

    .index-about-cards {
        gap: 20px;
    }

    .process-main-title {
        font-size: 32px;
    }

    .process-icons-line {
        flex-direction: column;
        gap: 50px;
        padding: 0;
    }

    .process-icons-line::before {
        display: none;
    }

    .process-step-item {
        width: 100%;
    }

    .process-card {
        max-width: 100%;
    }

    .process-icon-square {
        width: 70px;
        height: 70px;
    }

    .process-icon-square svg {
        width: 35px;
        height: 35px;
    }

    .index-features-grid,
    .index-services-grid,
    .index-facility-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 16px;
    }

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

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .index-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .index-contact-card {
        padding: 30px 25px;
    }

    .contact-main-title {
        font-size: 32px;
    }

    .contact-action-buttons {
        flex-direction: column;
    }

    .faq-item {
        padding: 20px 25px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-main-title {
        font-size: 32px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-header-wrapper {
        margin-bottom: 40px;
    }

    .faq-main-heading {
        font-size: 36px;
    }

    .faq-badge-tab {
        padding: 8px 20px;
        font-size: 12px;
    }

    .faq-item {
        padding: 20px 25px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 15px;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 10px 0;
    }

    .logo-placeholder {
        width: 50px;
        height: 50px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 8px;
    }

    .brand-tagline {
        font-size: 7px;
    }

    .nav-list {
        width: 90%;
        max-width: 300px;
    }

    .nav-link {
        padding: 14px 15px;
        font-size: 15px;
    }

    .mobile-menu-toggle {
        padding: 6px;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-home {
        min-height: 450px;
        padding: 40px 0 30px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-title-line1 {
        font-size: 22px;
    }

    .hero-title-line2 {
        font-size: 32px;
    }

    .hero-subtitle-home {
        font-size: 14px;
    }

    .btn-primary-home {
        padding: 12px 25px;
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 25px 15px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-label {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

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

    .gallery-hero-title {
        font-size: 28px;
    }

    .gallery-hero-subtitle {
        font-size: 14px;
    }

    .filter-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-tab {
        width: 100%;
        text-align: center;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .contact-form-container h3 {
        font-size: 20px;
    }

    .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }

    .faq-main-heading {
        font-size: 28px;
    }

    .faq-badge-tab {
        padding: 6px 16px;
        font-size: 11px;
    }

    .faq-item {
        padding: 18px 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* ============================================
   Video Card Slider Section
   ============================================ */
.video-slider-section {
    background: var(--light-grey);
    padding: 80px 0;
    position: relative;
}

.video-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.video-slider-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.video-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.video-card {
    flex: 0 0 calc(33.333% - 17px);
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.video-card[data-video-url] {
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.video-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #000;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card:hover .video-thumbnail {
    opacity: 1;
    transform: scale(1.05);
}


.recovery-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.recovery-badge {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.recovery-badge svg {
    width: 32px;
    height: 32px;
}

.recovery-percentage {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.recovery-text {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--light-grey);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-card:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.play-icon {
    font-size: 24px;
    color: var(--primary-blue);
    margin-left: 4px;
    font-weight: bold;
}

.video-card-content {
    padding: 25px;
}

.video-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.video-card-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.video-slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.video-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.video-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--medium-grey);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-indicator.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

/* Responsive Video Slider */
@media (max-width: 968px) {
    .video-card {
        flex: 0 0 calc(50% - 13px);
    }
    
    .video-card-image {
        height: 240px;
    }
    
    .recovery-badge {
        padding: 15px 20px;
        min-width: 120px;
    }
    
    .recovery-percentage {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .video-card {
        flex: 0 0 calc(100% - 0px);
    }
    
    .video-card-image {
        height: 220px;
    }
    
    .video-slider-nav {
        margin-top: 20px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .recovery-badge {
        padding: 12px 18px;
        min-width: 110px;
    }
    
    .recovery-percentage {
        font-size: 24px;
    }
    
    .recovery-text {
        font-size: 11px;
    }
}

/* ============================================
   Gallery Slider Section
   ============================================ */
.gallery-slider-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-grey) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gallery-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(59,130,246,0.03)"/></svg>');
    pointer-events: none;
}

.gallery-badge-slider {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(52, 211, 153, 0.12) 100%);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

.gallery-slider-container {
    overflow: hidden;
    position: relative;
    margin: 0 50px;
}

.gallery-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-slider-card {
    flex: 0 0 calc(33.333% - 17px);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.gallery-slider-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-slider-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--light-grey);
}

.gallery-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

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

.gallery-slider-content {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-slider-card:hover .gallery-slider-content {
    transform: translateY(0);
}

.gallery-slider-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.gallery-slider-content p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

.gallery-slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.gallery-slider-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-slider-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.gallery-slider-btn:active {
    transform: scale(0.95);
}

.gallery-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.gallery-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--medium-grey);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator.active {
    background: var(--primary-blue);
    width: 35px;
    border-radius: 5px;
}

.gallery-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.gallery-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #34d399 100%);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.gallery-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.gallery-view-all-btn svg {
    transition: transform 0.3s ease;
}

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

/* Responsive Gallery Slider */
@media (max-width: 968px) {
    .gallery-slider-card {
        flex: 0 0 calc(50% - 13px);
    }
    
    .gallery-slider-image {
        height: 280px;
    }
    
    .gallery-slider-container {
        margin: 0 30px;
    }
}

@media (max-width: 768px) {
    .gallery-slider-section {
        padding: 60px 0;
    }
    
    .gallery-slider-card {
        flex: 0 0 calc(100% - 0px);
    }
    
    .gallery-slider-image {
        height: 250px;
    }
    
    .gallery-slider-container {
        margin: 0 20px;
    }
    
    .gallery-slider-nav {
        margin-top: 30px;
    }
    
    .gallery-slider-btn {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   Video Modal Styles
   ============================================ */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
}

.video-modal-player {
    width: 100%;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-modal-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        padding: 15px;
        max-height: 85vh;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }

    .video-modal-title {
        font-size: 20px;
    }
}

/* ============================================
   Recovery Success Section
   ============================================ */
.recovery-success-section {
    background: var(--white);
    padding: 100px 0;
}

.recovery-success-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.recovery-image-container {
    position: relative;
}

.recovery-main-image {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.recovery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recovery-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    z-index: 2;
}

.recovery-image-badge svg {
    width: 36px;
    height: 36px;
}

.recovery-badge-percentage {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.recovery-badge-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recovery-content-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.recovery-content-header {
    margin-bottom: 10px;
}

.recovery-badge-label {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recovery-main-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.recovery-heading-accent {
    color: var(--light-blue);
    background: linear-gradient(135deg, #3b82f6 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recovery-content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recovery-content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.recovery-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.recovery-feature-card {
    background: var(--light-grey);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.recovery-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.recovery-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.recovery-feature-icon.blue-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.recovery-feature-icon.green-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.recovery-feature-icon.purple-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.recovery-feature-icon.orange-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.recovery-feature-card:hover .recovery-feature-icon {
    transform: scale(1.1);
}

.recovery-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.recovery-feature-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.recovery-cta-wrapper {
    margin-top: 20px;
}

.recovery-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #34d399 100%);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.recovery-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.recovery-cta-button svg {
    transition: transform 0.3s ease;
}

.recovery-cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Recovery Success Section */
@media (max-width: 968px) {
    .recovery-success-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .recovery-main-image {
        height: 450px;
    }

    .recovery-main-heading {
        font-size: 36px;
    }

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

@media (max-width: 768px) {
    .recovery-success-section {
        padding: 60px 0;
    }

    .recovery-main-image {
        height: 350px;
    }

    .recovery-image-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px 25px;
        min-width: 140px;
    }

    .recovery-badge-percentage {
        font-size: 36px;
    }

    .recovery-badge-text {
        font-size: 12px;
    }

    .recovery-main-heading {
        font-size: 28px;
    }

    .recovery-content-text p {
        font-size: 15px;
    }

    .recovery-cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

