﻿:root {
    --primary-color: #1A7B88; 
    --primary-dark: #125c66;
    --primary-light: rgba(26, 123, 136, 0.1);
    --secondary-color: #1E2528; 
    --light-bg: #F4F7F6;
    --white: #FFFFFF;
    --text-color: #333333;
    --transition-speed: 0.4s;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; color: var(--text-color); background-color: var(--light-bg); line-height: 1.7; overflow-x: hidden; position: relative; }

/* Utilities */
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.section-padding { padding: 100px 0; position: relative; z-index: 1;}
h1, h2, h3, h4 { color: var(--secondary-color); font-weight: 800; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.8rem; margin-bottom: 15px; position: relative; display: inline-block; }
.section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 5px; background-color: var(--primary-color); border-radius: 5px; }
.section-title p { font-size: 1.2rem; color: #666; }
.w-100 { width: 100%; }

/* Glassmorphism Utilities */
.glass-effect { background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); }
.glass-effect-strong { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--glass-border); box-shadow: 0 -8px 32px 0 rgba(31, 38, 135, 0.05); }

/* Glowing Orbs Background */
.bg-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1; opacity: 0.6; animation: orbFloat 20s infinite alternate ease-in-out; }
.orb-1 { width: 500px; height: 500px; background: rgba(26, 123, 136, 0.15); top: -100px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(30, 37, 40, 0.08); bottom: 20%; left: -100px; animation-delay: -5s; }

@keyframes orbFloat { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(50px, 50px) scale(1.1); } 100% { transform: translate(-50px, 100px) scale(0.9); } }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; transition: all var(--transition-speed); border-bottom: 1px solid var(--glass-border); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 100px; } /* Increased height to accommodate larger logo */
/* INCREASED LOGO SIZE HERE */
.logo-img { height: 80px; max-height: 85px; object-fit: contain; }
.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a { font-weight: 700; font-size: 1.1rem; color: var(--secondary-color); transition: color var(--transition-speed); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -8px; right: 0; width: 0; height: 3px; background-color: var(--primary-color); transition: width var(--transition-speed) ease-in-out; border-radius: 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.mobile-menu { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.mobile-menu span { width: 30px; height: 3px; background-color: var(--secondary-color); border-radius: 3px; transition: 0.3s; }

/* ðŸ”´ HERO SECTION (DARK THEME) ðŸ”´ */
.dark-hero { background: #0c1214; position: relative; overflow: hidden; padding-top: 100px; min-height: 100vh; display: flex; align-items: center; }
.dark-orb { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; }
.do-1 { width: 600px; height: 600px; background: rgba(26, 123, 136, 0.4); top: -200px; left: -200px; }
.do-2 { width: 500px; height: 500px; background: rgba(26, 123, 136, 0.2); bottom: 0; right: -100px; }

.dark-hero .hero-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.dark-hero h1 { color: #ffffff; text-shadow: 0 4px 20px rgba(0,0,0,0.5); font-size: 4.5rem; line-height: 1.2; margin-bottom: 25px; }
.dark-hero .highlight-cyan { color: #00e5ff; text-shadow: 0 0 20px rgba(0, 229, 255, 0.4); }
.dark-hero .text-light { color: #b0c4c6; font-size: 1.3rem; margin-bottom: 35px; }

.glow-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(26, 123, 136, 0.2); border: 1px solid rgba(0, 229, 255, 0.3); color: #00e5ff; padding: 12px 25px; border-radius: 50px; font-weight: 800; font-size: 1.1rem; margin-bottom: 40px; box-shadow: 0 0 20px rgba(0, 229, 255, 0.1); }
.glow-badge .icon { color: #00e5ff; }

.cta-button { display: inline-block; background: linear-gradient(135deg, var(--primary-color), #00b4d8); color: var(--white); padding: 18px 45px; border-radius: 50px; font-weight: 800; font-size: 1.3rem; border: none; cursor: pointer; transition: all var(--transition-speed); box-shadow: 0 10px 30px rgba(26, 123, 136, 0.4); }
.cta-button:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(26, 123, 136, 0.6); color: white;}

.hero-image { flex: 1; display: flex; justify-content: center; perspective: 1000px; }
.masked-image { width: 140%; margin-right: -20%; animation: floating 6s ease-in-out infinite; -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 80%); mask-image: radial-gradient(circle at center, black 50%, transparent 80%); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8)) contrast(1.1); }

.wave-bottom { position: absolute; bottom: -5px; left: 0; width: 100%; z-index: 5; }

/* Brands Marquee */
.brands-marquee { background: var(--white); padding: 20px 0; border-bottom: 1px solid var(--glass-border); overflow: hidden; white-space: nowrap; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.marquee-content { display: inline-block; animation: marquee 20s linear infinite; font-size: 1.5rem; font-weight: 800; color: #ccc; }
.marquee-content span { margin: 0 40px; color: var(--secondary-color); font-family: 'Arial', sans-serif; opacity: 0.7; transition: 0.3s; }
.marquee-content span:hover { opacity: 1; color: var(--primary-color); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(50%); } }

/* Features Section */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.feature-card { padding: 50px 40px; border-radius: 24px; text-align: center; transform-style: preserve-3d; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-card:hover { box-shadow: 0 20px 50px rgba(31, 38, 135, 0.15); }
.icon-svg { width: 60px; height: 60px; margin: 0 auto 25px; color: var(--primary-color); display: flex; justify-content: center; align-items: center; transform: translateZ(30px); }
.feature-card h3 { margin-bottom: 15px; color: var(--secondary-color); font-size: 1.6rem; transform: translateZ(20px); }
.feature-card p { color: #555; font-size: 1.1rem; transform: translateZ(10px); }

/* Stats Section */
.stats-section { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--white); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-item h3 { display: inline-block; font-size: 4rem; color: var(--white); margin: 0; }
.stat-item span { font-size: 3rem; font-weight: 800; color: #00e5ff; }
.stat-item p { font-size: 1.2rem; font-weight: 700; opacity: 0.9; }

/* Products Section */
.category-filters { display: flex; justify-content: center; gap: 15px; margin-bottom: 70px; flex-wrap: wrap; }
.filter-btn { background: var(--glass-bg); backdrop-filter: blur(5px); border: 1px solid var(--glass-border); padding: 10px 25px; border-radius: 30px; font-family: system-ui, sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--secondary-color); cursor: pointer; transition: all 0.3s; box-shadow: var(--glass-shadow); }
.filter-btn:hover, .filter-btn.active { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 60px 40px; padding-top: 50px; }

.product-card { background: var(--white); border-radius: 20px; padding: 20px; text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.05); transition: all 0.5s ease; margin-top: 50px; border: 1px solid rgba(0,0,0,0.02); cursor: pointer; }
.product-card:hover { box-shadow: 0 25px 45px rgba(26,123,136,0.15); transform: translateY(-10px); }

.product-image-container { position: relative; height: 180px; margin-top: -80px; margin-bottom: 20px; display: flex; justify-content: center; align-items: flex-end; }
.background-shape { position: absolute; bottom: 0; width: 140px; height: 140px; background-color: var(--light-bg); border-radius: 50%; z-index: 1; border: 4px solid var(--white); box-shadow: inset 0 5px 15px rgba(0,0,0,0.05); transition: all 0.5s ease; }
.product-card:hover .background-shape { background-color: var(--primary-color); transform: scale(1.1); }

.product-img { position: relative; z-index: 2; max-height: 220px; width: auto; max-width: 120%; filter: drop-shadow(0 20px 15px rgba(0,0,0,0.2)); transition: all 0.5s ease; }
.blend-multiply { mix-blend-mode: multiply; }
.product-card:hover .product-img { transform: translateY(-15px) scale(1.05); filter: drop-shadow(0 30px 20px rgba(0,0,0,0.3)); }

.product-info h3 { margin-bottom: 10px; font-size: 1.5rem; color: var(--secondary-color); transition: 0.3s;}
.product-card:hover .product-info h3 { color: var(--primary-color); }
.product-info p { color: #666; font-size: 0.95rem; }

/* Booking Section */
.booking-section { 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="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%231a7b88" fill-opacity="0.05" fill-rule="evenodd"/></svg>'); }
.booking-container { display: flex; gap: 40px; padding: 50px; border-radius: 20px; align-items: center; }
.booking-text { flex: 1; }
.booking-text h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary-color); }
.booking-features { list-style: none; margin-top: 20px; }
.booking-features li { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; color: var(--secondary-color); }
.booking-form-area { flex: 1; background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.booking-form input, .booking-form select { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 10px; font-family: system-ui, sans-serif; font-size: 1.1rem; outline: none; transition: 0.3s; }
.booking-form input:focus, .booking-form select:focus { border-color: var(--primary-color); box-shadow: 0 0 10px rgba(26,123,136,0.1); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimo-card { padding: 40px; border-radius: 20px; text-align: center; }
.stars { color: #f1c40f; font-size: 1.5rem; letter-spacing: 5px; margin-bottom: 20px; }
.testimo-card p { font-size: 1.1rem; font-style: italic; color: #555; margin-bottom: 20px; }
.testimo-card h4 { color: var(--primary-color); }

/* Contact Section */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary-color); }
.contact-info p { margin-bottom: 40px; font-size: 1.2rem; color: #555; }
.contact-list { list-style: none; }
.contact-list li { display: flex; align-items: flex-start; margin-bottom: 30px; padding: 25px; border-radius: 20px; transition: transform 0.3s ease; }
.contact-list li:hover { transform: translateX(-10px); border-color: rgba(255,255,255,0.8); }
.circle-icon { width: 60px; height: 60px; margin: 0 0 0 20px; background: rgba(26, 123, 136, 0.1); border-radius: 50%; padding: 15px; }
.info-text strong { display: block; font-size: 1.1rem; color: var(--primary-color); margin-bottom: 5px; }
.info-text span, .info-text a { font-size: 1.2rem; font-weight: 700; color: var(--secondary-color); }
.phone-link { display: inline-block; direction: ltr; }
.contact-map { height: 400px; border-radius: 30px; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden; }
.map-illustration { text-align: center; padding: 40px; border-radius: 20px; background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.giant-icon { width: 80px; height: 80px; margin: 0 auto 15px; color: var(--primary-color); }
.pulse { animation: pulseIcon 2s infinite; }
@keyframes pulseIcon { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* Footer & Legal */
footer { padding: 40px 0; text-align: center; position: relative; z-index: 10; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.legal-links { margin: 15px 0; }
.legal-links a { font-weight: 700; color: #555; transition: color 0.3s; margin: 0 10px; cursor: pointer;}
.legal-links a:hover { color: var(--primary-color); text-decoration: underline; }
.separator { color: #ccc; }

/* Modals */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.3s; }
.modal.show { display: flex; justify-content: center; align-items: center; opacity: 1; }
.modal-content { border-radius: 20px; padding: 40px; width: 90%; max-width: 800px; max-height: 80vh; overflow-y: auto; position: relative; transform: translateY(-50px); transition: transform 0.3s; }
.modal.show .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 20px; right: 30px; font-size: 2.5rem; font-weight: bold; color: #555; cursor: pointer; transition: 0.3s; line-height: 1; }
.close-modal:hover { color: var(--primary-color); }
#modal-title { margin-bottom: 20px; border-bottom: 2px solid var(--primary-light); padding-bottom: 10px; color: var(--primary-color); font-size: 2rem;}
#modal-body { font-size: 1.1rem; color: #444; line-height: 1.8; }

/* Product Modal Specific Styles */
.product-modal-flex { display: flex; gap: 40px; align-items: center; }
.pm-image { flex: 1; text-align: center; position: relative;}
.pm-image img { max-width: 100%; max-height: 350px; filter: drop-shadow(0 20px 20px rgba(0,0,0,0.2)); transition: transform 0.5s ease; }
.pm-image img:hover { transform: scale(1.05); }
.pm-details { flex: 1; }
.pm-details p { font-size: 1.2rem; margin-bottom: 20px;}

/* Animations */
@keyframes floating { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-25px) rotate(3deg); } 100% { transform: translateY(0px) rotate(0deg); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Reveal Classes */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .dark-hero .hero-content { flex-direction: column; text-align: center; padding-top: 40px; }
    .dark-hero h1 { font-size: 3.2rem; }
    .masked-image { width: 100%; margin-right: 0; margin-top: 30px; }
    .contact-container, .booking-container { flex-direction: column; display: flex; }
    .product-modal-flex { flex-direction: column; }
    .pm-image img { max-height: 250px; }
}
@media (max-width: 768px) {
    .nav-links { position: absolute; top: 100px; left: 0; width: 100%; background: var(--glass-bg); backdrop-filter: blur(15px); flex-direction: column; align-items: center; padding: 30px 0; gap: 20px; border-bottom: 1px solid var(--glass-border); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease-out; }
    .nav-links.nav-active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .mobile-menu { display: flex; }
    .dark-hero h1 { font-size: 2.5rem; }
}
