:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #e0f2fe;
    --secondary-color: #0f172a;
    --accent-color: #10b981;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.text-center { text-align: center; }
.highlight { color: var(--primary-color); }
.bg-light { background-color: var(--bg-main); }
.section { padding: 100px 0; }

.section-title {
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}
.section-title h2 span {
    color: var(--primary-color);
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}
.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}
.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}
.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}
.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}
.logo span {
    color: var(--primary-color);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover {
    color: var(--primary-color);
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.nav-links a:hover::after {
    width: 100%;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}
.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(14, 165, 233, 0.3);
}
.shape-2 {
    bottom: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.2);
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 24px;
}
.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.hero-stats {
    display: flex;
    gap: 40px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}
.stat-item div {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}
.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.hero-image-wrapper {
    position: relative;
}
.schedule-card {
    background: linear-gradient(145deg, var(--primary-light), white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.schedule-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--primary-color);
}
.schedule-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}
.schedule-header h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}
.schedule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.schedule-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: var(--transition);
}
.schedule-list li:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: var(--shadow-sm);
}
.schedule-list .day {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}
.schedule-list .time {
    color: var(--primary-dark);
    font-weight: 500;
    text-align: right;
}
.schedule-list .closed .time {
    color: #ef4444;
}
.schedule-footer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--primary-light);
    padding: 15px;
    border-radius: 12px;
}
.schedule-footer i {
    color: var(--primary-color);
    margin-top: 3px;
}
.schedule-footer p {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 500;
}
.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 4s ease-in-out infinite;
}
.floating-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}
.floating-text h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
}
.floating-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* Timeline */
.timeline-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.column-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.column-title i {
    color: var(--primary-color);
}
.timeline {
    position: relative;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary-light);
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-dot {
    position: absolute;
    left: -37px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid var(--bg-main);
    box-shadow: 0 0 0 2px var(--primary-light);
}
.timeline-content {
    padding: 24px;
    transition: var(--transition);
}
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}
.timeline-content h5 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.timeline-date {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
}
.service-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}
.service-card p {
    color: var(--text-muted);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    overflow: hidden;
    background: var(--bg-white);
}
.contact-info {
    padding: 60px;
}
.contact-info h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}
.contact-info h2 span {
    color: var(--primary-color);
}
.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.contact-text {
    display: flex;
    flex-direction: column;
}
.contact-text strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.contact-text span {
    color: var(--text-muted);
}
.contact-action {
    background-color: var(--primary-light);
    padding: 60px 40px;
    display: flex;
    align-items: center;
}
.action-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.action-card h3 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 1.5rem;
}
.action-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}
.footer-logo i {
    color: var(--primary-color);
}
.footer-logo span {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container,
    .timeline-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .floating-card {
        bottom: 20px;
        left: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        text-align: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-btn {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 40px 20px;
    }
    .contact-action {
        padding: 40px 20px;
    }
}
