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

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

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

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

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

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

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-logo i {
    color: #1e3a8a;
    font-size: 1.5rem;
}

.nav-logo h2 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #1e3a8a;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1e3a8a;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

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

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: none;
    border: none;
    pointer-events: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    position: absolute;
    top: 0;
    left: 0;
    display: none; /* hidden by default so it doesn't cover the video */
}

/* Maritime Elements */
.maritime-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-ship {
    position: absolute;
    top: 20%;
    right: 15%;
    color: rgba(255, 255, 255, 0.4);
    font-size: 3rem;
    animation: float 8s ease-in-out infinite;
}

.floating-yacht {
    position: absolute;
    top: 60%;
    left: 10%;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-anchor {
    position: absolute;
    top: 30%;
    left: 20%;
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.5rem;
    animation: float 10s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-compass {
    position: absolute;
    top: 70%;
    right: 25%;
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.5rem;
    animation: float 12s ease-in-out infinite;
    animation-delay: 3s;
}

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

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: wave 6s ease-in-out infinite;
}

.wave1 {
    animation-delay: 0s;
    opacity: 0.3;
}

.wave2 {
    animation-delay: 2s;
    opacity: 0.2;
}

.wave3 {
    animation-delay: 4s;
    opacity: 0.1;
}

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

/* Hero Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.05) 100%) !important;
    z-index: 2 !important;
}

.hero-content {
    position: relative;
    z-index: 5 !important;
    max-width: 1200px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.hero-text h1, .hero-text p {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #1e3a8a;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    opacity: 1 !important;
    visibility: visible !important;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e3a8a;
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6b7280;
    font-weight: 500;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* Cruise Ship Support card background image */
.service-card.cruise-card {
    background: url('562-large-4e4b5fbbbb602b6d35bea8460aa8f8e5-720x540.jpg') center/cover no-repeat;
    color: white;
}

.service-card.cruise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}

.service-card.cruise-card > * {
    position: relative;
    z-index: 1;
}

.service-card.cruise-card i {
    color: #fff;
}

.service-card.cruise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    background: url('562-large-4e4b5fbbbb602b6d35bea8460aa8f8e5-720x540.jpg') center/cover no-repeat;
}

/* Yacht Support card background image */
.service-card.yacht-card {
    background: url('yacht.jpeg') center/cover no-repeat;
    color: white;
}

.service-card.yacht-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}

.service-card.yacht-card > * {
    position: relative;
    z-index: 1;
}

.service-card.yacht-card i {
    color: #fff;
}

.service-card.yacht-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    background: url('yacht.jpeg') center/cover no-repeat;
}

/* Cargo Ship Support card background image */
.service-card.cargo-card {
    background: url('MSS-Graphene.jpg') center/cover no-repeat;
    color: white;
}

.service-card.cargo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}

.service-card.cargo-card > * {
    position: relative;
    z-index: 1;
}

.service-card.cargo-card i {
    color: #fff;
}

.service-card.cargo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    background: url('MSS-Graphene.jpg') center/cover no-repeat;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.service-card i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover i {
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Business Sections */
.business-sections {
    padding: 100px 0;
    background: #f8fafc;
}

.business-section {
    margin-bottom: 80px;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    margin: 0 auto;
    border-radius: 2px;
}

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

.business-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-list h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.services-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
}

.services-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #4b5563;
    font-weight: 500;
}

.services-list i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gallery-placeholder h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Explore the Maldives Section */
.explore-maldives {
    padding: 100px 0;
    background: #f8fafc;
}

/* Mobile Explore Header - Hidden by default */
.mobile-explore-header {
    display: none;
}

.mobile-explore-header h2 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mobile-explore-header .explore-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #0097a7);
    margin: 0 auto;
    border-radius: 2px;
}

.explore-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    height: 70vh;
    min-height: 600px;
    max-height: 800px;
    width: 100%;
    box-sizing: border-box;
}

/* Fallback for older browsers */
@supports not (display: grid) {
    .explore-content {
        display: flex;
        flex-direction: row;
        gap: 3rem;
    }
    
    .explore-panel,
    .map-panel {
        flex: 1;
        width: 50%;
    }
}

/* Left Panel - Content Area */
.explore-panel {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.explore-header {
    margin-bottom: 2rem;
}

.explore-header h2 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.explore-underline {
    width: 60px;
    height: 3px;
    background: #00bcd4;
    border-radius: 2px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #00bcd4;
    background: transparent;
    color: #00bcd4;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.filter-btn:hover,
.filter-btn.active {
    background: #00bcd4;
    color: white;
}

/* Location Listings */
.location-listings {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    max-height: calc(70vh - 200px);
    min-height: 400px;
}

.location-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.location-item:hover {
    background: #f8fafc;
    border-color: #00bcd4;
    transform: translateX(5px);
}

.location-item.active {
    background: #e0f7fa;
    border-color: #00bcd4;
}

.location-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-content {
    flex: 1;
}

.location-content h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-content h3 i {
    color: #00bcd4;
    font-size: 0.9rem;
}

.location-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Right Panel - Interactive Map */
.map-panel {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 600px;
    max-height: 800px;
    height: 100%;
}

.map-container {
    height: 100%;
    position: relative;
}

.map-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a9eff 0%, #1e90ff 50%, #0066cc 100%);
    position: relative;
    overflow: hidden;
}

/* Map visual effect */
.map-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.08) 1px, transparent 1px),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
}

.map-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.map-marker {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.map-marker i {
    color: #ff6b6b;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.map-marker:hover i {
    color: #ff5252;
    font-size: 1.8rem;
    animation: bounce 0.6s ease;
}

.map-marker.active i {
    color: #ff5252;
    font-size: 1.8rem;
    animation: pulse 1s infinite;
}

.marker-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.map-text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.map-text h2 {
    color: rgba(255,255,255,0.8);
    font-size: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.map-attribution {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 3;
}

.map-attribution span {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes locationPulse {
    0% {
        background-color: transparent;
        border-color: transparent;
    }
    50% {
        background-color: #e0f7fa;
        border-color: #00bcd4;
    }
    100% {
        background-color: #e0f7fa;
        border-color: #00bcd4;
    }
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Hide locations based on filter */
.location-item.hidden {
    display: none !important;
}

/* Force proper layout on hosted sites */
.explore-maldives .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.explore-maldives .explore-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
}

.explore-maldives .explore-panel {
    width: 100% !important;
    max-width: none !important;
}

.explore-maldives .map-panel {
    width: 100% !important;
    max-width: none !important;
}

/* Custom scrollbar for location listings */
.location-listings::-webkit-scrollbar {
    width: 6px;
}

.location-listings::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.location-listings::-webkit-scrollbar-thumb {
    background: #00bcd4;
    border-radius: 3px;
}

.location-listings::-webkit-scrollbar-thumb:hover {
    background: #0097a7;
}

/* Responsive Design for Explore Section */
@media (max-width: 1024px) {
    .explore-content {
        gap: 2rem;
        height: auto;
        min-height: 500px;
    }
    
    .explore-panel {
        padding: 1.5rem;
    }
    
    .location-listings {
        max-height: calc(60vh - 150px);
        min-height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .explore-maldives {
        padding: 40px 0 !important;
    }
    
    .explore-maldives .container {
        padding: 0 15px !important;
    }
    
    /* Show mobile header, hide desktop header */
    .explore-maldives .mobile-explore-header {
        display: block !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        padding: 0 15px !important;
    }
    
    .explore-maldives .mobile-explore-header h2 {
        font-size: 1.8rem !important;
        color: #333 !important;
        font-weight: 700 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .explore-maldives .mobile-explore-header .explore-underline {
        width: 80px !important;
        height: 4px !important;
        background: linear-gradient(90deg, #00bcd4, #0097a7) !important;
        margin: 0 auto !important;
        border-radius: 2px !important;
    }
    
    /* Hide the desktop header inside explore panel */
    .explore-maldives .explore-panel .explore-header {
        display: none !important;
    }
    
    .explore-maldives .explore-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 0 12px !important;
        height: auto !important;
        grid-template-columns: none !important;
    }
    
    .explore-maldives .map-panel {
        order: 1 !important;
        height: 350px !important;
        min-height: 350px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        position: relative !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
        margin-bottom: 0.5rem !important;
        width: 100% !important;
    }
    
    .explore-maldives .explore-panel {
        order: 2 !important;
        padding: 1.2rem !important;
        background: white !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        width: 100% !important;
    }
    
    .explore-panel::before {
        content: '';
        position: absolute;
        top: -0.75rem;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: linear-gradient(90deg, #00bcd4, #0097a7);
        border-radius: 2px;
    }
    
    
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
        border-radius: 20px;
        text-align: center;
        white-space: nowrap;
        background: #f8fafc;
        border: 2px solid #e2e8f0;
        color: #64748b;
        transition: all 0.3s ease;
        font-weight: 600;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        min-width: 80px;
    }
    
    .filter-btn.active {
        background: linear-gradient(135deg, #00bcd4, #0097a7);
        border-color: #00bcd4;
        color: white;
        transform: scale(1.02);
        box-shadow: 0 4px 16px rgba(0, 188, 212, 0.3);
    }
    
    .location-listings {
        max-height: 500px;
        min-height: 300px;
        overflow-y: auto;
        padding-right: 8px;
    }
    
    .location-item {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.25rem;
        margin-bottom: 1rem;
        background: #ffffff;
        border-radius: 12px;
        border: 2px solid #f1f5f9;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .location-item:hover, .location-item.active {
        background: #f0fdfa;
        border-color: #00bcd4;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 188, 212, 0.15);
    }
    
    .location-image {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .location-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .location-content {
        flex: 1;
        min-width: 0;
    }
    
    .location-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        color: #1e293b;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
    }
    
    .location-content h3 i {
        color: #00bcd4;
        font-size: 1rem;
    }
    
    .location-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #64748b;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .map-text h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
        font-weight: 300;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .map-marker {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .map-marker i {
        font-size: 1.4rem;
        transition: all 0.3s ease;
    }
    
    .map-marker:hover i, .map-marker.active i {
        font-size: 1.6rem;
        animation: bounce 0.6s ease;
    }
    
    .map-marker .marker-label {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        bottom: -24px;
        white-space: nowrap;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(8px);
        border-radius: 6px;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
}

/* iPhone and small mobile optimizations */
@media (max-width: 480px) {
    .explore-maldives {
        padding: 30px 0;
    }
    
    .mobile-explore-header h2 {
        font-size: 1.5rem;
    }
    
    .explore-content {
        padding: 0 12px;
        gap: 1.5rem;
    }
    
    .map-panel {
        order: 1;
        height: 300px;
        min-height: 300px;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }
    
    .explore-panel {
        order: 2;
        padding: 1.25rem;
        border-radius: 16px;
        min-height: auto;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }
    
    
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-bottom: 1.25rem;
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
        border-radius: 18px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        background: #f8fafc;
        border: 2px solid #e2e8f0;
        color: #64748b;
        transition: all 0.3s ease;
        flex: 0 0 auto;
        min-width: 70px;
    }
    
    .filter-btn.active {
        background: linear-gradient(135deg, #00bcd4, #0097a7);
        border-color: #00bcd4;
        color: white;
        transform: scale(1.02);
        box-shadow: 0 4px 16px rgba(0, 188, 212, 0.3);
    }
    
    .location-listings {
        max-height: 450px;
        min-height: 250px;
        padding-right: 6px;
    }
    
    .location-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 0.75rem;
        background: #ffffff;
        border-radius: 12px;
        border: 2px solid #f1f5f9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .location-item:hover, .location-item.active {
        background: #f0fdfa;
        border-color: #00bcd4;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0, 188, 212, 0.15);
    }
    
    .location-image {
        width: 75px;
        height: 75px;
        flex-shrink: 0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .location-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .location-content {
        flex: 1;
        min-width: 0;
    }
    
    .location-content h3 {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        color: #1e293b;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
    }
    
    .location-content h3 i {
        font-size: 0.9rem;
        color: #00bcd4;
    }
    
    .location-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #64748b;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .map-text h2 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 0.75rem;
        font-weight: 300;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .map-marker {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .map-marker i {
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .map-marker:hover i, .map-marker.active i {
        font-size: 1.4rem;
        animation: bounce 0.6s ease;
    }
    
    .map-marker .marker-label {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        bottom: -22px;
        white-space: nowrap;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(8px);
        border-radius: 6px;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    
    /* Improve touch targets for mobile */
    .filter-btn,
    .location-item,
    .map-marker {
        min-height: 48px;
    }
}

/* iPhone 14 Pro Max specific optimizations - REMOVED restrictive styles */
@media (max-width: 430px) {
    .explore-maldives {
        padding: 30px 0;
    }
    
    .explore-content {
        padding: 0 10px;
        gap: 1rem;
    }
    
    .map-panel {
        order: 1;
        height: 280px;
        min-height: 280px;
    }
    
    .explore-panel {
        order: 2;
        padding: 1rem;
        min-height: auto;
    }
    
    
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .filter-btn {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
        min-width: 75px;
        min-height: 40px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }
    
    .location-listings {
        max-height: 350px;
        min-height: 200px;
    }
    
    .location-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .location-image {
        width: 65px;
        height: 65px;
    }
    
    .location-content h3 {
        font-size: 0.9rem;
    }
    
    .location-content p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.testimonial-content {
    position: relative;
}

.testimonial-content i {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #4b5563;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #4b5563;
}

.contact-item i {
    color: #1e3a8a;
    font-size: 1.2rem;
    width: 20px;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.submit-btn i {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 50px 0 20px;
}

.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;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

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

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

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Partners / Rotating Logos */
.partners {
    padding: 80px 0;
    background: white;
}

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

.logo-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: marquee 25s linear infinite;
    will-change: transform;
    width: max-content;
}

.logo-item {
    height: 50px;
    width: auto;
    filter: grayscale(0%);
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.logo-item.logo-tui {
    height: 70px;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

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



/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .stats {
        flex-direction: row;
        gap: 0.75rem;
    }

    .stat-item {
        flex: 1;
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .about-features {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    /* Hide some background elements on mobile for better performance */
    .floating-ship,
    .floating-yacht,
    .floating-anchor,
    .floating-compass {
        display: none;
    }

    /* Optimize video for mobile */
    .hero-video {
        object-position: center 25%;
    }
    
    /* Improve section spacing */
    .about,
    .services-overview,
    .business-sections,
    .gallery,
    .explore-maldives,
    .contact {
        padding: 60px 0;
    }
    
    /* Contact section mobile optimization */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-info h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .contact-info p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .contact-details {
        gap: 1.5rem !important;
    }
    
    .contact-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        text-align: left !important;
        flex-direction: row !important;
    }
    
    .contact-item i {
        color: #1e3a8a !important;
        font-size: 1.2rem !important;
        width: 20px !important;
        margin-top: 0.25rem !important;
        flex-shrink: 0 !important;
    }
    
    .contact-item div {
        flex: 1 !important;
    }
    
    .contact-item h4 {
        color: #1e3a8a !important;
        font-weight: 600 !important;
        margin-bottom: 0.25rem !important;
        font-size: 1rem !important;
    }
    
    .contact-item span {
        color: #4b5563 !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }

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

    .stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }

    .hero-stats {
        gap: 0.5rem;
    }

    .stat-card {
        padding: 0.75rem;
    }

    /* Disable video on very small screens for performance */
    .hero-video {
        display: none;
    }

    .video-fallback {
        display: block; /* show fallback only on very small screens */
    }
    
    /* Optimize gallery for mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .gallery-item img {
        max-height: 200px;
    }
    
    /* Improve navigation for mobile */
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-logo-img {
        height: 30px;
    }
    
    /* Optimize service cards */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* Improve contact section */
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        text-align: left !important;
        flex-direction: row !important;
    }
    
    .contact-item i {
        color: #1e3a8a !important;
        font-size: 1.2rem !important;
        width: 20px !important;
        margin-top: 0.25rem !important;
        flex-shrink: 0 !important;
    }
    
    .contact-item div {
        flex: 1 !important;
    }
    
    .contact-item h4 {
        color: #1e3a8a !important;
        font-weight: 600 !important;
        margin-bottom: 0.25rem !important;
        font-size: 1rem !important;
    }
    
    .contact-item span {
        color: #4b5563 !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    /* Optimize footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        margin-top: 1rem;
    }
    
    /* Improve team page for mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-photo {
        width: 200px;
        height: 240px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-position {
        font-size: 1rem;
    }
    
    .member-description {
        font-size: 0.9rem;
    }
}

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

.service-card,
.stat-item,
.business-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* AOS Animation Overrides and Fixes - Commented out to disable animations */
/*
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

[data-aos="fade-up"] {
    transform: translateY(100px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-down"] {
    transform: translateY(-100px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-100px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(100px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.6);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

[data-aos] {
    transition-duration: 800ms;
    transition-timing-function: ease-in-out;
}
*/

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-widget a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128c7e;
}

.whatsapp-widget i {
    font-size: 28px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-widget a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-widget i {
        font-size: 24px;
    }
} 