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

/* Main color scheme - Updated to match Athelas Diving logo */
:root {
    --main: rgb(2, 20, 21.6);      /* Deep ocean blue */
    --accent: rgb(3, 30, 32);      /* Medium ocean blue */
    --highlight: rgb(4, 40, 43);   /* Light ocean blue */
    --background: rgb(240, 245, 245); /* Very light ocean blue */
    --text: rgb(1, 10, 11);        /* Dark ocean blue */
    --white: #FFFFFF;
    --ethereal-glow: rgba(255, 255, 255, 0.1);
}

/* General styles */
body {
    background: var(--background);
    color: var(--text);
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 160px;
    transition: padding-top 0.3s ease;
    position: relative;
}

/* Magical underwater background effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(2, 20, 21.6, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(2, 20, 21.6, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, rgba(2, 20, 21.6, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(2, 20, 21.6, 0.02) 25%, transparent 25%);
    background-size: 100% 100%, 100% 100%, 20px 20px, 20px 20px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    z-index: -1;
    animation: gentleFloat 20s ease-in-out infinite;
}

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

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

/* Header styles */
header {
    background: linear-gradient(120deg, var(--main) 0%, var(--accent) 50%, var(--highlight) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(2, 20, 21.6, 0.2);
    backdrop-filter: blur(10px);
}

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

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--white);
    transition: all 0.5s ease;
    background: var(--white);
    padding: 5px;
    filter: drop-shadow(0 0 10px var(--ethereal-glow));
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 30px rgba(2, 20, 21.6, 0.4);
    filter: drop-shadow(0 0 15px var(--ethereal-glow));
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 80%;
}

/* Language Selector */
.language-selector {
    margin-left: 2rem;
}

.language-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: var(--white);
    padding: 0.5rem 1rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    outline: none;
}

.language-select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-select:focus {
    border-color: var(--white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.language-select option {
    background: var(--main);
    color: var(--white);
    border: none;
    padding: 0.5rem;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile menu overlay */
.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 20, 21.6, 0.95);
    z-index: -1;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(2, 20, 21.6, 0.3), rgba(3, 30, 32, 0.4)), url('../assets/ocean_landscape03.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 50 Q25 40 50 50 T100 50" stroke="rgb(255,255,255)" fill="none" stroke-width="0.5" opacity="0.2"/></svg>'),
        url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20 20 Q40 10 60 20 T100 20" stroke="rgb(255,255,255)" fill="none" stroke-width="0.5" opacity="0.2"/></svg>');
    background-size: 50px 50px, 70px 70px;
    opacity: 0.3;
    animation: wave 20s linear infinite;
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    text-shadow: 2px 2px 8px rgba(2, 20, 21.6, 0.8);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--white);
    text-align: center;
    margin-top: 1rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.5s both;
}

/* Name Explanation Section */
.name-explanation {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(2, 20, 21.6, 0.05) 0%, rgba(3, 30, 32, 0.05) 50%, rgba(4, 40, 43, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.name-explanation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(2, 20, 21.6, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(3, 30, 32, 0.03) 0%, transparent 50%);
    z-index: -1;
}

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

.explanation-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--main);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
}

.explanation-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--main), var(--accent));
    border-radius: 2px;
}

.explanation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
    text-align: justify;
}

.explanation-text em {
    color: var(--main);
    font-style: italic;
    font-weight: 600;
}

.explanation-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Better grid layout for larger screens */
@media (min-width: 1200px) {
    .explanation-points {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .explanation-points {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    /* Center the third card when there are only 2 columns */
    .explanation-points .point:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }
}

.point {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(2, 20, 21.6, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(2, 20, 21.6, 0.1);
    position: relative;
    overflow: hidden;
}

.point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main), var(--accent), var(--highlight));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(2, 20, 21.6, 0.15);
    border-color: rgba(2, 20, 21.6, 0.2);
}

.point:hover::before {
    transform: scaleX(1);
}

.point h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--main);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 1px;
}

.point h3 i {
    font-size: 1.2rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.point:hover h3 i {
    transform: scale(1.1);
    color: var(--highlight);
}

.point p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
    text-align: justify;
}

.explanation-closing {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    text-align: justify;
    font-style: italic;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

/* Responsive design for name explanation */
@media (max-width: 768px) {
    .name-explanation {
        padding: 3rem 0;
    }
    
    .explanation-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .explanation-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .explanation-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .point {
        padding: 1.5rem;
    }
    
    .point h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .point p {
        text-align: center;
    }
    
    .explanation-closing {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .explanation-content h2 {
        font-size: 1.8rem;
    }
    
    .point {
        padding: 1rem;
    }
    
    .point h3 {
        font-size: 1.1rem;
    }
}

/* Services section */
.services {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(2, 20, 21.6, 0.05), transparent);
}

.services h2 {
    text-align: center;
    color: var(--main);
    margin-bottom: 4rem;
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Cards - Simplified for Modal System */
.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(2, 20, 21.6, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(2, 20, 21.6, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 20, 21.6, 0.05) 0%, rgba(3, 30, 32, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(2, 20, 21.6, 0.2);
    border-color: rgba(2, 20, 21.6, 0.3);
}

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 20, 21.6, 0.7) 0%, rgba(3, 30, 32, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.expand-icon {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .expand-icon {
    transform: scale(1);
    opacity: 1;
}

.service-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--main);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 1px;
}

.service-teaser {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.service-status {
    text-align: center;
    margin-top: 1rem;
}

.coming-soon {
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    display: inline-block;
}

/* Service Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 20, 21.6, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 245, 245, 0.95) 100%);
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(2, 20, 21.6, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(2, 20, 21.6, 0.8);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--main);
    transform: scale(1.1);
}

.modal-body {
    padding: 3rem 2rem 2rem;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

/* Modal Content Styles */
.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--main);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.pricing-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(2, 20, 21.6, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--main), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-item:hover::before {
    transform: scaleX(1);
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(2, 20, 21.6, 0.15);
    border-color: rgba(2, 20, 21.6, 0.2);
}

.pricing-item h5 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-item h5 i {
    color: var(--accent);
    font-size: 1.1rem;
}

.pricing-item p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}

.pricing-item .price {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--main);
    background: linear-gradient(135deg, rgba(2, 20, 21.6, 0.1), rgba(3, 30, 32, 0.1));
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.modal-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border-left: 4px solid var(--accent);
}

.modal-features h5 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--main);
    margin-bottom: 1rem;
    text-align: center;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-features li:hover {
    background: rgba(2, 20, 21.6, 0.05);
    transform: translateX(5px);
}

.modal-features li i {
    color: var(--accent);
    font-size: 0.9rem;
    min-width: 16px;
}

.modal-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 2rem 1.5rem 1.5rem;
        max-height: calc(95vh - 80px);
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .modal-pricing {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-item {
        padding: 1rem;
    }
    
    .modal-features {
        padding: 1rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-body {
        padding: 1.5rem 1rem 1rem;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .pricing-item h5 {
        font-size: 1.1rem;
    }
    
    .pricing-item .price {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }
}

/* Experience section */
.experience {
    padding: 6rem 0;
    background: linear-gradient(rgba(2, 20, 21.6, 0.05), rgba(3, 30, 32, 0.1));
    position: relative;
}

.experience h2 {
    text-align: center;
    color: var(--main);
    margin-bottom: 4rem;
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

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

.experience-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.experience-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.experience-text li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.experience-text li::before {
    content: "❧";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Experience section image styles */
.experience-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(2, 20, 21.6, 0.15);
}

.experience-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-image:hover .experience-img {
    transform: scale(1.05);
}

/* Fun section styles */
.fun {
    padding: 6rem 0;
    background: linear-gradient(rgba(2, 20, 21.6, 0.03), rgba(3, 30, 32, 0.08));
}

.fun h2 {
    text-align: center;
    color: var(--main);
    margin-bottom: 4rem;
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

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

.fun-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(2, 20, 21.6, 0.15);
}

.fun-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fun-image:hover .fun-img {
    transform: scale(1.05);
}

.fun-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.fun-text p {
    margin: 0;
    padding: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .experience-content,
    .fun-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-image,
    .fun-image {
        order: -1;
    }

    .experience-img,
    .fun-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    /* Show burger menu on mobile */
    .burger-menu {
        display: flex;
    }

    /* Mobile navigation menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--main) 0%, var(--accent) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.3s ease;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

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

    nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin: 0;
    }

    nav a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    nav a:hover {
        border-color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    /* Language Selector Mobile Styles */
    .language-selector {
        margin-left: 0;
        margin-top: 2rem;
    }

    .language-select {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        min-width: 150px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

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

    .subtitle {
        font-size: 1.3rem;
    }

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

    .service-card {
        margin-bottom: 2rem;
    }

    .service-teaser {
        font-size: 0.95rem;
    }

    .coming-soon {
        font-size: 0.8rem;
    }

    .services h2,
    .experience h2,
    .fun h2,
    .contact h2,
    .professional h2,
    .healthy-diving h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Add image hover effects */
.service-image::after,
.experience-image::after,
.fun-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(2, 20, 21.6, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-image:hover::after,
.experience-image:hover::after,
.fun-image:hover::after {
    opacity: 1;
}

/* Contact section */
.contact {
    padding: 6rem 0;
    text-align: center;
    background: var(--white);
    position: relative;
}

.contact h2 {
    color: var(--main);
    margin-bottom: 3rem;
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.button {
    display: inline-block;
    background: linear-gradient(90deg, var(--main) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.5s ease;
    margin-top: 1.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(2, 20, 21.6, 0.2);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.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: all 0.5s ease;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(2, 20, 21.6, 0.3);
    background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
}

.button:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background: var(--main);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

/* Animation classes */
.animate {
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Professional section styles */
.professional {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.professional h2 {
    text-align: center;
    color: var(--main);
    margin-bottom: 4rem;
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.professional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.professional-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.professional-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.professional-text li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.professional-text li::before {
    content: "✦";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.professional-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(2, 20, 21.6, 0.15);
    transform: rotate(90deg);
    width: fit-content;
    margin: 0 auto;
}

.professional-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.5s ease;
    transform: rotate(-90deg);
    display: block;
}

.professional-image:hover .professional-img {
    transform: rotate(-90deg) scale(1.05);
}

/* Update responsive styles */
@media (max-width: 992px) {
    .professional-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .professional-image {
        order: -1;
        transform: rotate(0deg);
    }

    .professional-img {
        transform: rotate(0deg);
    }

    .professional-image:hover .professional-img {
        transform: rotate(0deg) scale(1.05);
    }
}

@media (max-width: 768px) {
    .professional {
        padding: 4rem 0;
    }

    .professional h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .professional-text {
        font-size: 1rem;
    }
}

/* Healthy Diving section */
.healthy-diving {
    padding: 6rem 0;
    background: linear-gradient(rgba(2, 20, 21.6, 0.02), rgba(3, 30, 32, 0.05));
    position: relative;
}

.healthy-diving h2 {
    text-align: center;
    color: var(--main);
    margin-bottom: 3rem;
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.healthy-diving-content {
    max-width: 1000px;
    margin: 0 auto;
}

.healthy-diving-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.healthy-diving-intro h3 {
    color: var(--main);
    font-size: 2rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.healthy-diving-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
}

.health-benefits {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(2, 20, 21.6, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(2, 20, 21.6, 0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(2, 20, 21.6, 0.12);
}

.benefit-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--main), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(2, 20, 21.6, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(2, 20, 21.6, 0.3);
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    color: var(--main);
    font-size: 1.4rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.benefit-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
}

.source {
    font-size: 0.9rem;
    color: var(--accent);
    font-style: italic;
    line-height: 1.4;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(2, 20, 21.6, 0.1);
}

.healthy-diving-cta {
    text-align: center;
    padding: 3rem 0;
}

.healthy-diving-cta h3 {
    color: var(--main);
    font-size: 2.2rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--main), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

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

/* Responsive design for Healthy Diving */
@media (max-width: 768px) {
    .healthy-diving {
        padding: 4rem 0;
    }
    
    .healthy-diving h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .healthy-diving-intro h3 {
        font-size: 1.6rem;
    }
    
    .healthy-diving-intro p {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .benefit-content h4 {
        font-size: 1.2rem;
    }
    
    .benefit-content p {
        font-size: 1rem;
    }
    
    .source {
        font-size: 0.8rem;
    }
    
    .healthy-diving-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .health-benefits {
        gap: 2rem;
    }
    
    .benefit-item {
        padding: 1.2rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .healthy-diving-cta h3 {
        font-size: 1.5rem;
    }
} 