/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #0a0f1c;
    --secondary-color: #00d4ff;
    --accent-color: #7000ff;
    --text-color: #ffffff;
    --dark-bg: #050914;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --heading-font: 'Outfit', sans-serif;
    --body-font: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    font-weight: 400;
    letter-spacing: 0.2px;
    overflow-x: hidden;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

/* Header & Navigation */
.glass-nav {
    position: fixed;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    top: 0;
    transition: var(--transition);
    padding: 0.8rem 0; /* Increased from 0.5rem to 0.8rem */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px; /* Increased from 60px to 80px */
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 0;
}

.logo-img {
    width: 80px; /* Increased from 60px to 80px */
    height: auto;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.company-name {
    font-family: var(--heading-font);
    font-size: 2rem; /* Increased from 1.8rem to 2rem */
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    line-height: 1;
}

.tagline {
    font-family: var(--body-font);
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li {
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

nav a {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--dark-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-2px);
}

.social-links i {
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

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

.parallax-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    will-change: transform;
    transform-origin: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Ensure consistent text styling across pages */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-content p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.9;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-static {
    display: block;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-dynamic {
    display: block;
    min-height: 3rem;
    color: #2980b9;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-subtitle {
    font-size: 1.25rem; /* Slightly reduced for better readability */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
    max-width: 800px; /* Added max-width for better line length */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

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

#typed-text::after {
    content: '|';
    animation: blink 1s infinite;
    font-weight: 100;
    color: var(--text-color);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Drone Services Section */
.drone-services {
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    background: var(--background-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

.service-card .image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

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

.service-card h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 1.5rem 1.5rem 1rem;
    transition: color 0.3s ease;
}

.service-card:hover h2 {
    color: var(--accent-color);
}

.service-card .service-description {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-description {
    opacity: 1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--body-font);
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

@media (max-width: 1200px) {
    .service-grid {
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .service-card .image-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card .image-container {
        height: 200px;
    }
    
    .service-card h2 {
        font-size: 1.25rem;
        margin: 1.25rem 1.25rem 0.75rem;
    }
    
    .service-card .service-description {
        margin: 0 1.25rem 1.25rem;
    }
}

/* Services Section */
.services {
    position: relative;
    padding: 8rem 2rem;
    min-height: 100vh;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.service-card {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.1) 0%,
        rgba(112, 0, 255, 0.1) 100%
    );
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    background: rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #3498db;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #00d4ff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, #00d4ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #00d4ff, #7000ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
}

/* Mission Section */
.mission {
    padding: 5rem 2rem;
    background: linear-gradient(to right, rgba(44, 62, 80, 0.95), rgba(52, 152, 219, 0.95));
    color: var(--text-color);
    margin-top: 0;
    position: relative;
    z-index: 1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h1 {
    font-family: var(--heading-font);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.mission-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.mission-description p {
    font-family: var(--body-font);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.location-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    font-family: var(--body-font);
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.badge span {
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .mission-content h1 {
        font-size: 2.25rem;
    }
    
    .mission-description p {
        font-size: 1.05rem;
    }
    
    .badge {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    position: relative;
    z-index: 1;
    background: rgba(10, 15, 28, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6rem 4rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1200px;
}

.testimonials-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: visible;
    padding: 0 20px;
}

.slides-container {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: relative;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.slider-nav:hover {
    opacity: 0.8;
}

.slider-nav.prev {
    left: -50px;
}

.slider-nav.next {
    right: -50px;
    transform: translateY(-50%) rotate(180deg);
}

.slider-nav svg {
    width: 20px;
    height: 40px;
    fill: var(--secondary-color);
}

@media (max-width: 768px) {
    .slider-nav.prev {
        left: -30px;
    }
    
    .slider-nav.next {
        right: -30px;
    }
    
    .slider-nav svg {
        width: 15px;
        height: 30px;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--secondary-color);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .dot {
        width: 10px;
        height: 10px;
    }
}

.testimonial-text {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text blockquote {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 300;
    color: var(--text-color);
}

.testimonial-text cite {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Partner Logos Section */
.partner-logos {
    padding: 4rem 2rem;
    background-color: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.logo-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    height: 80px;
    width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .logo-row {
        gap: 2rem;
    }
    
    .partner-logo {
        height: 60px;
        width: 120px;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    z-index: 1;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 6rem 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--primary-color);
    font-family: var(--body-font);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(10, 15, 28, 0.6);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230a0f1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.form-group select option {
    background-color: #fff;
    color: var(--primary-color);
    padding: 0.75rem 1rem;
}

/* Remove default select styling in Firefox */
.form-group select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--primary-color);
}

/* Remove default select styling in IE */
.form-group select::-ms-expand {
    display: none;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:active,
.form-group select option:checked {
    background-color: var(--primary-color);
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-2px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.success-message {
    background: var(--card-bg);
    border: 1px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 1.5rem;
    display: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.success-message.show {
    display: block;
    animation: fadeInOut 5s forwards;
}

.success-message .icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: checkmark 0.5s ease-in-out forwards;
}

.success-message .text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
    font-family: var(--body-font);
}

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

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Buttons */
.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: #2980b9;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #2980b9;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary:hover {
    background: #3498db;
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(41, 128, 185, 0.1);
    border-color: #3498db;
}

/* Responsive Enhancement */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .mission-content h1 {
        font-size: 2.25rem;
    }
    
    .mission-description p {
        font-size: 1.05rem;
    }
    
    .cta-button.large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
}

/* Service Area Section */
.service-area {
    padding: 6rem 2rem;
    background: white;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

#map {
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-area-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-area-info h3 {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-area-info p {
    font-family: var(--body-font);
    color: #505965;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-area-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-area-info li {
    font-family: var(--body-font);
    color: #505965;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.service-area-info li:last-child {
    border-bottom: none;
}

.service-area-info li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
    }

    #map {
        height: 400px;
    }

    .service-area-info {
        text-align: center;
    }

    .service-area-info li {
        justify-content: center;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0f1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
    background-color: #fff;
    color: #333;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Partners Section */
.partners-section {
    position: relative;
    z-index: 1;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 4rem 0;
}

.partners-grid {
    position: relative;
    z-index: 2;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mission-section {
    position: relative;
    z-index: 1;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 6rem 0;
}

.footer {
    position: relative;
    z-index: 1;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 4rem 0;
}

.quote-container {
    margin-top: 2rem;
    max-width: 800px;
    text-align: left;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid #3498db;
}

.quote-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    min-height: 4.8rem;
}

.quote-typewriter {
    display: inline;
}

.quote-author {
    color: #3498db;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: #fff;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, #00d4ff, #7000ff);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Icons */
.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-header h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 700;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Improve Service Cards */
.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 1rem 0;
    font-family: var(--heading-font);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 2rem;
    background: var(--background-color);
}

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

.why-choose-us h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.why-choose-us .underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

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

.feature-card .icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.feature-card:hover .icon-container {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.feature-card .icon-container i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backface-visibility: visible;
}

.feature-card:hover .icon-container i {
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--accent-color);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    transition: opacity 0.3s ease;
}

.feature-card:hover p {
    opacity: 1;
}

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

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-us h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Confirmation Message */
.success-message {
    background: var(--card-bg);
    border: 1px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 1.5rem;
    display: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.success-message.show {
    display: block;
    animation: fadeInOut 5s forwards;
}

.success-message .icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: checkmark 0.5s ease-in-out forwards;
}

.success-message .text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
    font-family: var(--body-font);
}

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

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .success-message {
        width: 90%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    .success-message .text {
        font-size: 1rem;
        white-space: normal;
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.main-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.main-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.main-cta-button:hover::before {
    left: 100%;
}

.main-cta-button .cta-description {
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .main-cta-button {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    .main-cta-button .cta-description {
        font-size: 0.85rem;
    }
}

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

.main-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #88c8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
    background: var(--background-color);
}

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

.services-section h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.services-section .underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

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

.service-item .icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.service-item:hover .icon-container {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.service-item .icon-container i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backface-visibility: visible;
}

.service-item:hover .icon-container i {
    transform: rotateY(180deg);
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: var(--accent-color);
}

.service-item p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    transition: opacity 0.3s ease;
}

.service-item:hover p {
    opacity: 1;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
}


/* Partner Logos Carousel */
.partner-logos {
    padding: 3rem 0;
    background-color: rgba(10, 15, 28, 0.7);
    overflow: hidden;
    position: relative;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    animation: scroll 60s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo {
    max-width: 240px;
    max-height: 120px;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Fix for Lenovo logo with white background */
img[src*="lenovo-partner-logo"] {
    background-color: transparent;
    mix-blend-mode: multiply;
}

.partner-logo-container:hover {
    transform: scale(1.1);
}

.partner-logo-container:hover .partner-logo {
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.7));
}

@media (max-width: 768px) {
    .partner-logo {
        max-width: 180px;
        max-height: 90px;
    }
    
    .partner-logo-container {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .partner-logo {
        max-width: 140px;
        max-height: 70px;
    }
    
    .partner-logo-container {
        padding: 0 1.5rem;
    }
}

/* Mission Section with Mascot */
.mission {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: var(--heading-font);
}

.mission-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.mascot-container {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.surgeon-mascot {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.mascot-container:hover .surgeon-mascot {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.7));
}

.location-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: none;
}

.badge i {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .mission-content {
        flex-direction: column;
        padding: 2rem;
    }
    
    .mascot-container {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .mission-text h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .location-info {
        justify-content: center;
    }
}
