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

:root {
    --background: oklch(0.95 0.02 280);
    --foreground: oklch(0.15 0.01 260);
    --card: oklch(1 0 0 / 0.5);
    --card-foreground: oklch(0.15 0.01 260);
    --primary: oklch(0.55 0.22 260);
    --primary-foreground: oklch(1 0 0);
    --secondary: oklch(0.97 0.01 280);
    --secondary-foreground: oklch(0.15 0.01 260);
    --muted: oklch(0.95 0.02 280);
    --muted-foreground: oklch(0.45 0.01 260);
    --accent: oklch(0.6 0.2 250);
    --accent-foreground: oklch(1 0 0);
    --border: oklch(1 0 0 / 0.3);
    --input: oklch(1 0 0 / 0.4);
    --ring: oklch(0.55 0.22 260);
    --radius: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.5;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Mesh Gradient Background */
.mesh-gradient {
    min-height: 100vh;
    background: radial-gradient(ellipse at 20% 30%, rgba(255, 182, 193, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(173, 216, 230, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(221, 160, 221, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(176, 224, 230, 0.3) 0%, transparent 40%),
        linear-gradient(135deg, #fef7f8 0%, #f0f4ff 50%, #f8f0ff 100%);
}

/* Glass Card Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.glass-card-strong {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(to right, #2563eb, #9333ea, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
}

.logo {
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(to right, #2563eb, #9333ea, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    text-decoration: none;
}

@media (min-width: 768px) {
    .logo {
        font-size: 1.25rem;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.025em;
}

.nav-link:hover {
    color: var(--primary);
}

/* Language Switcher */
.language-switcher-desktop {
    display: none;
}

@media (min-width: 768px) {
    .language-switcher-desktop {
        display: block;
    }
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    padding: 0.25rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.lang-btn[disabled] {
    cursor: default;
    opacity: 1;
}

.lang-btn:hover {
    color: var(--foreground);
    background: rgba(255, 255, 255, 0.3);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.7);
    color: var(--foreground);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.lang-text {
    display: none;
}

.flag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flag-icon svg {
    display: block;
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .lang-text {
        display: inline;
    }
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.language-switcher-mobile {
    display: block;
}

@media (min-width: 768px) {
    .language-switcher-mobile {
        display: none;
    }
}

.menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
}

.menu-icon,
.close-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    animation: fadeIn 0.2s ease;
}

.nav-mobile.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-mobile .nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }
}

.hero-decorative {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.hero-decorative-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: linear-gradient(to bottom right, rgba(255, 182, 193, 0.4), rgba(221, 160, 221, 0.4));
}

.hero-decorative-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to bottom right, rgba(173, 216, 230, 0.4), rgba(176, 224, 230, 0.4));
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
    .hero-badge {
        margin-bottom: 2rem;
    }
}

.badge-dot {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
}

.badge-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #10b981;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.badge-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #10b981;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.025em;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-slogan {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 0.75rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-slogan {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-slogan {
        font-size: 1.5rem;
    }
}

.hero-subslogan {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subslogan {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #3b82f6, #9333ea);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.15), 0 0 80px rgba(139, 92, 246, 0.1);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .btn-primary {
        padding: 1.5rem 2rem;
        font-size: 1.125rem;
    }
}

.btn-primary:hover {
    background: linear-gradient(to right, #2563eb, #7e22ce);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.25), 0 0 80px rgba(139, 92, 246, 0.15);
    transform: scale(1.05);
}

/* Hero Benefits */
.hero-benefits {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-benefits {
        margin-top: 4rem;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .benefit-card {
        padding: 1.5rem;
    }
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    text-align: center;
}

.benefit-card p {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    position: relative;
}

@media (min-width: 768px) {
    .services-section {
        padding: 6rem 0;
    }
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.service-card p {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .about-section {
        padding: 6rem 0;
    }
}

.about-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        align-items: stretch;
    }
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-left {
        gap: 2rem;
    }
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
}

.competencies-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .competencies-card {
        padding: 1.5rem;
    }
}

.competencies-card h3 {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.competencies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
    align-content: flex-start;
}

.competency-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.8);
    transition: background 0.2s;
}

.competency-tag:hover {
    background: rgba(255, 255, 255, 0.7);
}

.competency-tag svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.experience-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}

@media (min-width: 768px) {
    .experience-card {
        padding: 2rem;
    }
}

.experience-card h3 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.experience-content {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .experience-content {
        font-size: 1rem;
    }
}

.experience-content p {
    margin-bottom: 1rem;
}

.experience-content strong {
    color: var(--foreground);
}

.roi-section {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

.roi-section h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.roi-section ul {
    list-style: none;
    padding: 0;
}

.roi-section li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.roi-bullet {
    color: var(--primary);
    margin-top: 0.25rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 6rem 0;
    }
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(221, 160, 221, 0.2), transparent);
    pointer-events: none;
}

.testimonials-container {
    max-width: 48rem;
    margin: 0 auto;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .testimonials-controls {
        gap: 1rem;
    }
}

.testimonial-btn {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.testimonial-btn:hover {
    background: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 2.5rem;
    }
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #fbbf24;
    color: #fbbf24;
}

.testimonial-content {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    line-height: 1.75;
    margin-bottom: 2rem;
    min-height: 120px;
}

@media (min-width: 768px) {
    .testimonial-content {
        font-size: 1.125rem;
        min-height: 100px;
    }
}

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

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

.author-role {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.25rem;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.testimonial-dot.active {
    width: 1.5rem;
    height: 0.5rem;
    border-radius: 0.25rem;
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 6rem 0;
    }
}

.contact-container {
    max-width: 56rem;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 2rem;
    }
}

.contact-card h3 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.contact-link:hover {
    transform: translateY(-4px);
}

.contact-link:nth-child(1):hover {
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(239, 246, 255, 0.8);
}

.contact-link:nth-child(2):hover {
    color: #16a34a;
    border-color: rgba(22, 163, 74, 0.3);
    background: rgba(240, 253, 244, 0.8);
}

.contact-link:nth-child(3):hover {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(239, 246, 255, 0.8);
}

.contact-link:nth-child(4):hover {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(254, 242, 242, 0.8);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
}

.contact-link span {
    font-weight: 500;
    color: var(--foreground);
}

.contact-geography {
    margin-top: 2rem;
    padding: 1.25rem;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 0.75rem;
    text-align: center;
}

.contact-geography p {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
    .contact-geography p {
        font-size: 1rem;
    }
}

.contact-geography p:first-child {
    margin-bottom: 0.5rem;
}

.contact-geography strong {
    color: var(--foreground);
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .footer {
        padding: 3rem 0;
    }
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-nav {
        gap: 1.5rem;
    }
}

.footer-link {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

/* Password Protection Modal */
#passwordModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

#passwordModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.password-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999998;
}

.password-modal {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    margin: auto;
}

.password-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.password-modal-header svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.password-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.password-modal-body {
    text-align: center;
}

.password-modal-body p {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.password-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#passwordInput {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--foreground);
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

#passwordInput:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.password-error {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    color: #dc2626;
    font-size: 0.875rem;
    text-align: center;
}

#passwordSubmit {
    width: 100%;
    justify-content: center;
}
