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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #06b6d4, #2563eb);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #0891b2, #1d4ed8);
}

::selection {
    background-color: #06b6d4;
    color: white;
}

/* 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;
    }
}

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

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, #06b6d4, #2563eb);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text h1 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f2937;
    transition: color 0.3s ease;
}

.header:not(.scrolled) .logo-text h1 {
    color: white;
}

.logo-text p {
    font-size: 0.875rem;
    color: #06b6d4;
    transition: color 0.3s ease;
}

.header:not(.scrolled) .logo-text p {
    color: #a5f3fc;
}

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

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

.nav-link {
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header:not(.scrolled) .nav-link {
    color: white;
}

.nav-link:hover {
    color: #06b6d4;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: #1f2937;
    transition: all 0.3s ease;
}

.header:not(.scrolled) .mobile-menu-btn span {
    background: white;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
}

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

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(to right, #06b6d4, #2563eb);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.5);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: white;
    color: #06b6d4;
}

.btn-white:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.icon {
    width: 1rem;
    height: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.95), rgba(6, 182, 212, 0.9), rgba(30, 64, 175, 0.95));
}

.hero-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-bubble-1 {
    width: 24rem;
    height: 24rem;
    background: rgba(6, 182, 212, 0.2);
    top: -12rem;
    left: -6rem;
}

.hero-bubble-2 {
    width: 24rem;
    height: 24rem;
    background: rgba(37, 99, 235, 0.2);
    top: 33%;
    right: -6rem;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 8rem 0;
    display: grid;
    gap: 3rem;
}

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

.hero-left {
    color: white;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    color: #a5f3fc;
    margin-bottom: 2rem;
}

.badge .icon {
    color: #67e8f9;
}

.hero-title h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title h1 {
        font-size: 3.75rem;
    }
}

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

.gradient-text {
    background: linear-gradient(to right, #67e8f9, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    color: #a5f3fc;
    font-weight: 300;
    margin-bottom: 2rem;
}

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

.hero-description {
    font-size: 1.125rem;
    color: #e5e7eb;
    line-height: 1.75;
    max-width: 48rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-right {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, #06b6d4, #2563eb);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #d1d5db;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator span {
    color: white;
    font-size: 0.875rem;
}

.scroll-icon {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: white;
    border-radius: 9999px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* About Section */
.about {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #f9fafb, rgba(6, 182, 212, 0.05));
    overflow: hidden;
}

.section-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.section-bg-1 {
    width: 24rem;
    height: 24rem;
    background: rgba(165, 243, 252, 0.3);
    top: 0;
    right: 0;
}

.section-bg-2 {
    width: 24rem;
    height: 24rem;
    background: rgba(147, 197, 253, 0.3);
    bottom: 0;
    left: 0;
}

.section-bg-3 {
    width: 18rem;
    height: 18rem;
    background: rgba(165, 243, 252, 0.5);
    top: 25%;
    left: 0;
}

.section-bg-4 {
    width: 18rem;
    height: 18rem;
    background: rgba(147, 197, 253, 0.5);
    bottom: 25%;
    right: 0;
}

.section-bg-5 {
    width: 24rem;
    height: 24rem;
    background: rgba(165, 243, 252, 0.3);
    top: 0;
    left: 25%;
}

.section-bg-6 {
    width: 24rem;
    height: 24rem;
    background: rgba(147, 197, 253, 0.3);
    bottom: 0;
    right: 25%;
}

.about-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.6), transparent);
}

.about-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 20rem;
}

.about-card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #06b6d4, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #cffafe;
    color: #0e7490;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.about-text {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.check-list {
    margin-bottom: 2rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.check-item:hover {
    transform: translateX(8px);
}

.check-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(to bottom right, #06b6d4, #2563eb);
    border-radius: 50%;
    position: relative;
}

.check-icon::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.check-item span {
    color: #4b5563;
    font-weight: 500;
}

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

.stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-card-cyan {
    background: linear-gradient(to bottom right, #ecfeff, #cffafe);
    border-color: #a5f3fc;
}

.stat-card-blue {
    background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
    border-color: #93c5fd;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.stat-card-blue .stat-number {
    color: #2563eb;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Expertise Section */
.expertise {
    position: relative;
    padding: 6rem 0;
    background: white;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.accordion {
    max-width: 64rem;
    margin: 0 auto 4rem;
}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-trigger {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-trigger:hover {
    border-color: #06b6d4;
    background: linear-gradient(to right, rgba(6, 182, 212, 0.05), rgba(37, 99, 235, 0.05));
}

.accordion-item.active .accordion-trigger {
    border-color: #06b6d4;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    flex: 1;
}

.accordion-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to bottom right, #06b6d4, #2563eb);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.accordion-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.accordion-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.accordion-header p {
    font-size: 0.875rem;
    color: #6b7280;
}

.chevron {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.accordion-item.active .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    border: 2px solid #06b6d4;
    border-top: none;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 1.5rem;
}

.detail-list {
    list-style: none;
    padding-left: 4.5rem;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.75;
    transition: transform 0.3s ease;
}

.detail-list li:hover {
    transform: translateX(8px);
}

.detail-list li::before {
    content: '';
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    background: linear-gradient(to bottom right, #06b6d4, #2563eb);
    border-radius: 50%;
    margin-top: 0.5rem;
    transition: transform 0.3s ease;
}

.detail-list li:hover::before {
    transform: scale(1.5);
}

.cta-card {
    max-width: 48rem;
    margin: 0 auto;
    background: linear-gradient(to bottom right, #06b6d4, #2563eb);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-card h3 {
        font-size: 1.875rem;
    }
}

.cta-card p {
    font-size: 1.125rem;
    color: #a5f3fc;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #f9fafb, rgba(6, 182, 212, 0.05));
    overflow: hidden;
}

.contact-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
}

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

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-info-card:hover {
    border-color: #06b6d4;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, #06b6d4, #2563eb);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.font-semibold {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

.map-card {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 16rem;
    background: linear-gradient(to bottom right, #cffafe, #dbeafe);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder svg {
    width: 3rem;
    height: 3rem;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: #6b7280;
}

.text-sm {
    font-size: 0.875rem;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, #1f2937, #1e3a8a, #1f2937);
    color: white;
    padding: 3rem 0;
}

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

.footer-brand .logo-text h3 {
    color: white;
    font-size: 1.125rem;
}

.footer-brand .logo-text p {
    color: #67e8f9;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #67e8f9;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a,
.footer-column ul li {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #67e8f9;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-contact svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #06b6d4;
    margin-top: 0.125rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-barreau {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-barreau svg {
    width: 1rem;
    height: 1rem;
    color: #06b6d4;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #67e8f9;
}

/* Responsive */
@media (max-width: 640px) {
    .logo-text {
        display: none;
    }
}
