:root {
    --primary: #005f73;
    --secondary: #0a9396;
    --accent: #94d2bd;
    --dark: #001219;
    --light: #e9d8a6;
    --bg-light: #f4f6f8;
    --white: #ffffff;
    --text-color: #333333;
    --border-radius: 16px;
    --box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content {
    max-width: 900px;
    color: var(--white);
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(10, 147, 150, 0.4);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 95, 115, 0.5);
}

/* Sections */
.section {
    padding: 7rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Activity Card */
.activity-card {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.activity-card h3 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.activity-card p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.activity-card .highlight-text {
    font-size: 1.3rem;
    color: var(--primary);
    line-height: 1.7;
}

.activity-card .highlight-text strong {
    color: var(--secondary);
}

.divider {
    height: 1px;
    background: #e0e0e0;
    width: 60%;
    margin: 2.5rem auto;
}

.activity-card .legal-text {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    line-height: 1.8;
}

/* Grid Layout for Brands */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.card-img {
    height: 240px;
    background-position: center;
    background-size: cover;
    background-color: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px dashed #e0e0e0;
}

.card-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.card-content .desc {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    flex-grow: 1;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.btn-secondary {
    display: block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 95, 115, 0.2);
}

/* Location */
.location-container {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.location-info {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.location-info p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 1;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--light);
    margin-top: 0.3rem;
}

.map-wrapper {
    min-height: 500px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

footer p {
    opacity: 0.7;
    font-size: 1rem;
}

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

/* Responsive */
@media (max-width: 992px) {
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 400px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        background: var(--dark);
        position: relative;
    }
    
    .hero {
        height: auto;
        padding: 8rem 2rem 5rem;
        background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    }

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

    .section {
        padding: 4rem 0;
    }

    .activity-card {
        padding: 2.5rem 1.5rem;
    }
    
    .activity-card h3 {
        font-size: 1.8rem;
    }
}
