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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #333;
            min-height: 100vh;
        }

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

        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 80px 40px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }



        @keyframes wave-movement {
            0%, 100% { transform: translateX(0) scaleY(1); }
            50% { transform: translateX(-50px) scaleY(1.2); }
        }



        @keyframes float-bubbles {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.1); }
        }

        header h1 {
            font-size: clamp(2.2rem, 6vw, 4rem);
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
            font-weight: 800;
            letter-spacing: 2px;
            position: relative;
            z-index: 3;
            text-transform: uppercase;
            background: linear-gradient(45deg, #fff, #e3f2fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: clamp(1.2rem, 3.5vw, 1.8rem);
            color: #e3f2fd;
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
            z-index: 3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }

        header p:last-child {
            font-size: clamp(1rem, 2.8vw, 1.3rem);
            color: #b3e5fc;
            position: relative;
            z-index: 3;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Enhanced Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 50px 40px;
            margin-bottom: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .hero-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: #2c3e50;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            z-index: 2;
        }


        .hero-section p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #555;
            line-height: 1.8;
            text-align: justify;
            position: relative;
            z-index: 2;
            margin-bottom: 20px;
        }

        /* Enhanced Beach Grid */
        .beach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .beach-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 255, 0.95) 100%);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }



        .beach-card h3 {
            font-size: clamp(1.3rem, 3vw, 1.6rem);
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
        }

        .beach-card p {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #555;
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .beach-card strong {
            color: #3498db;
            font-weight: 600;
        }

        /* Enhanced Activities Section */
        .activities-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 50px 40px;
            margin-bottom: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .activities-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #2c3e50;
            text-align: center;
            margin-bottom: 40px;
        }



        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .activity-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 251, 255, 0.9) 100%);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }




        .activity-item:hover {
            transform: translateY(-8px);
            border-color: #3498db;
            box-shadow: 0 15px 30px rgba(52, 152, 219, 0.2);
        }

        .activity-item h4 {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .activity-item p {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #666;
            line-height: 1.6;
        }

        /* Enhanced Experience Magic Section */
        .experience-magic {
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.95) 0%, rgba(52, 152, 219, 0.95) 100%);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 50px 40px;
            margin-bottom: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            color: white;
            position: relative;
            overflow: hidden;
        }


        .experience-magic h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }



        .experience-magic p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Enhanced Info Section */
        .info-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 50px 40px;
            margin-bottom: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .info-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #2c3e50;
            text-align: center;
            margin-bottom: 40px;
        }

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

        .info-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }


        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .info-card h4 {
            font-size: clamp(1.2rem, 2.5vw, 1.4rem);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .info-card p {
            font-size: clamp(0.9rem, 2vw, 1rem);
            line-height: 1.6;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .highlight {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            color: #333;
            padding: 30px;
            border-radius: 20px;
            margin: 40px 0;
            border-left: 6px solid #e74c3c;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .highlight h3 {
            font-size: clamp(1.3rem, 3vw, 1.6rem);
            margin-bottom: 20px;
            color: #c0392b;
        }

        .highlight p {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            header {
                padding: 60px 30px;
                margin-bottom: 30px;
            }
            
            .hero-section,
            .activities-section,
            .experience-magic,
            .info-section {
                padding: 30px 25px;
                margin-bottom: 30px;
            }
            
            .beach-grid,
            .activities-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .beach-card,
            .activity-item {
                padding: 20px;
            }
            
            .footer-content {
                padding: 120px 25px 30px;
                gap: 30px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-bottom {
                padding: 25px 25px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }
            
            header {
                padding: 50px 20px;
            }
            
            .beach-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .activities-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .footer-content {
                padding: 100px 20px 25px;
                gap: 25px;
                grid-template-columns: 1fr;
            }
            
            .contact-detail {
                flex-direction: row;
                align-items: center;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        /* Modern Footer Styles */
        .modern-footer {
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
            color: white;
            position: relative;
            overflow: hidden;
            margin-top: 60px;
            padding: 0;
        }

        .footer-waves {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120px;
            z-index: 1;
        }

        .footer-waves svg {
            width: 100%;
            height: 100%;
            animation: wave-float 6s ease-in-out infinite;
        }

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

        .footer-content {
            position: relative;
            z-index: 2;
            padding: 140px 40px 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 20px;
            color: #81d4fa;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-section h4 {
            font-size: clamp(1.2rem, 2.5vw, 1.4rem);
            margin-bottom: 20px;
            color: #b3e5fc;
            border-bottom: 2px solid #26c6da;
            padding-bottom: 10px;
            display: inline-block;
        }

        .footer-section p {
            line-height: 1.7;
            color: #e0f2f1;
            margin-bottom: 20px;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #26c6da, #00acc1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;

        }

        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(38, 198, 218, 0.5);
        }

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

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #e0f2f1;
            text-decoration: none;
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: all 0.3s ease;
            padding: 5px 0;
            display: inline-block;
            position: relative;
        }

        .footer-section ul li a::before {
            content: '▶';
            margin-right: 8px;
            color: #26c6da;
            transition: all 0.3s ease;
            font-size: 0.8rem;
        }

        .footer-section ul li a:hover {
            color: #81d4fa;
            transform: translateX(10px);
        }

        .footer-section ul li a:hover::before {
            color: #81d4fa;
            transform: scale(1.2);
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .contact-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #00acc1, #0097a7);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1rem;
        }

        .hours-info p {
            margin-bottom: 10px;
            color: #e0f2f1;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .hours-info strong {
            color: #81d4fa;
        }

        .footer-bottom {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 30px 40px;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .footer-divider {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #26c6da, transparent);
            margin-bottom: 20px;
        }

        .footer-bottom p {
            margin-bottom: 10px;
            color: #b3e5fc;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .footer-tagline {
            color: #81d4fa !important;
            font-style: italic;
            font-weight: 300;
            letter-spacing: 1px;
        }

        /* Additional Animations */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

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

        .slide-in {
            animation: slideIn 0.8s ease-out;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
