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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-blue: #0A2342;
    --electric-blue: #00C6FF;
    --metallic-gray: #6C7A89;
    --emerald-green: #2ECC71;
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f8f9fa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 35, 66, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 3rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-left: -180px;
    position: absolute;
    left: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--electric-blue), var(--emerald-green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

.logo-image {
    width: 280px;
    height: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
    z-index: 10;
    position: relative;
}

.footer-logo-image {
    width: 280px;
    height: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: -40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Navigation Right Side Container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 0;
    margin-right: -100px;
}

/* Currency Selector Styles */
.currency-selector {
    display: flex;
    align-items: center;
}

.currency-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' 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 0.5rem center;
    background-size: 12px;
    padding-right: 2rem;
    min-width: 120px;
}

.currency-dropdown:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.currency-dropdown:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 2px rgba(0, 198, 255, 0.3);
}

.currency-dropdown option {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--electric-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-blue); /* Fallback */
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 120%;
    min-height: 120%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    clip-path: inset(8% 8% 12% 8%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 35, 66, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(10, 35, 66, 0.6) 100%
    );
    z-index: 2;
}

/* Fallback background for when video doesn't load */
.hero-background-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), #1a365d);
    z-index: 0;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--electric-blue), var(--emerald-green));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    border-radius: 20px;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    border-radius: 30px;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    border-radius: 15px;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 30%;
    border-radius: 25px;
    animation-delay: 1s;
}

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

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-logo-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 800;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6),
        0 8px 16px rgba(10, 35, 66, 0.4);
    animation: fadeInUp 1s ease-out;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 500;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 4px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, var(--electric-blue), var(--emerald-green));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 
        0 10px 30px rgba(0, 198, 255, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 198, 255, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--metallic-gray);
    max-width: 700px;
    margin: 0 auto;
}

.value-proposition {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 198, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 198, 255, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.15);
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-item span:last-child {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.services-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .services-grid-two {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .service-card {
        min-height: 600px;
        padding: 2rem;
    }
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: visible;
    min-height: 750px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--electric-blue), var(--emerald-green));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--electric-blue);
}

.service-icon {
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--metallic-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-setup {
    font-size: 1rem;
    font-weight: 600;
    color: var(--metallic-gray);
    margin-bottom: 0.5rem;
}

.price-monthly {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--emerald-green);
}

.recommended-badge {
    background: linear-gradient(135deg, var(--emerald-green), #27ae60);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    position: absolute;
    top: -10px;
    right: 20px;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.service-card.featured {
    position: relative;
    border: 3px solid var(--emerald-green);
    box-shadow: 0 20px 60px rgba(46, 204, 113, 0.25);
    background: linear-gradient(135deg, #f8fffc, #ffffff);
}

.service-card.featured::before {
    background: linear-gradient(135deg, var(--emerald-green), #27ae60);
}

.service-card.premium {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    border: 3px solid var(--electric-blue);
    box-shadow: 0 20px 60px rgba(0, 198, 255, 0.25);
}

.service-card.premium::before {
    background: linear-gradient(135deg, var(--electric-blue), #0ea5e9);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.service-card.featured:hover {
    box-shadow: 0 25px 70px rgba(46, 204, 113, 0.35);
}

.service-card.premium:hover {
    box-shadow: 0 25px 70px rgba(0, 198, 255, 0.35);
}

.pilot-offer {
    background: linear-gradient(135deg, var(--electric-blue), var(--emerald-green));
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--white);
}

.pilot-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pilot-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.pilot-note {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.25rem;
    font-style: italic;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--metallic-gray);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card.premium .service-features li::before {
    color: var(--electric-blue);
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--metallic-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
    flex-shrink: 0;
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pilot-offer {
    margin-top: auto;
    flex-shrink: 0;
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background: var(--primary-blue);
    color: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card, .vision-card {
    text-align: center;
    padding: 2rem;
}

.card-icon {
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--metallic-gray);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form {
    padding: 6rem 0;
    background: var(--light-gray);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--primary-blue);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--metallic-gray);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn {
    background: linear-gradient(135deg, var(--electric-blue), var(--emerald-green));
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.4);
}

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

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card .contact-icon {
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--metallic-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.response-time {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Responsive Design for Contact Form */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        display: grid;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-form-grid {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--metallic-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--metallic-gray);
    font-size: 0.9rem;
}

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

.image-placeholder {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 20px;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue), #1a365d);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-contact h4, .footer-social h4 {
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

.social-link {
    color: var(--white);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--electric-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        width: 100px;
        height: 50px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    /* Navigation right side responsive */
    .nav-right {
        gap: 0.5rem;
    }
    
    /* Currency selector responsive */
    .currency-selector {
        order: -1; /* Show before hamburger menu */
    }
    
    .currency-dropdown {
        min-width: 100px;
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        padding-right: 1.8rem;
    }

    /* Hero video responsive */
    .hero-video {
        /* On mobile, prioritize height over width */
        min-height: 120%;
        min-width: 120%;
        width: auto;
        object-position: center center;
        clip-path: inset(10% 10% 15% 10%);
    }

    .video-overlay {
        background: linear-gradient(
            135deg,
            rgba(10, 35, 66, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(10, 35, 66, 0.7) 100%
        );
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Reduce video quality on mobile for performance */
    .hero-video {
        filter: blur(0.5px);
    }

    .container {
        padding: 0 1rem;
    }

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

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

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

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

    .stat-number {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 80px;
        height: 40px;
    }
    
    .footer-logo-image {
        width: 120px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    /* Ultra mobile video optimization */
    .hero-video {
        transform: translateX(-50%) translateY(-50%);
        filter: blur(0.5px);
        min-width: 130%;
        min-height: 130%;
        clip-path: inset(12% 12% 18% 12%);
    }

    .video-overlay {
        background: linear-gradient(
            135deg,
            rgba(10, 35, 66, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(10, 35, 66, 0.8) 100%
        );
    }

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

    .service-card {
        padding: 2rem;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

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

    .nav-container {
        padding: 0 1rem;
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.cta-button:focus,
.booking-btn:focus,
.nav-link:focus {
    outline: 2px solid var(--electric-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: var(--primary-blue);
    }
    
    .service-card {
        border: 2px solid var(--primary-blue);
    }
}