*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --deep: #04101e;
  --navy: #071e38;
  --mid: #0a3256;
  --teal: #0d7a7a;
  --aqua: #1ab8b8;
  --foam: #7de8e8;
  --sand: #d4b896;
  --gold: #c9943a;
  --white: #f0f6f6;
  --text: #c8dede;
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'Josefin Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--deep); color: var(--text); font-family: var(--ff-body); font-weight: 300; overflow-x: hidden; }
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.5rem 4rem; display: flex; align-items: center; justify-content: space-between; transition: background 0.4s, padding 0.4s; }
nav.scrolled { background: rgba(4,16,30,0.92); backdrop-filter: blur(12px); padding: 1rem 4rem; border-bottom: 1px solid rgba(26,184,184,0.15); }
.nav-logo { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--foam); letter-spacing: 0.04em; text-decoration: none; }
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--aqua); }

/* HERO */
.hero { position: relative; height: 100vh; overflow: hidden; }
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; background: linear-gradient(160deg, #04101e 0%, #071e38 30%, #0a3256 60%, #0d4a6e 100%); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(4,16,30,0.35) 0%, rgba(4,16,30,0.15) 40%, rgba(4,16,30,0.75) 100%); }
.hero-rays { position: absolute; inset: 0; z-index: 3; pointer-events: none; background: repeating-linear-gradient(105deg, transparent 0%, transparent 8%, rgba(125,232,232,0.03) 9%, transparent 10%); animation: rays 8s ease-in-out infinite alternate; }
@keyframes rays { 0% { transform: skewX(-5deg) translateX(-5%); opacity: 0.5; } 100% { transform: skewX(5deg) translateX(5%); opacity: 1; } }
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 4; overflow: hidden; }
.h-bubble { position: absolute; bottom: -20px; border-radius: 50%; background: rgba(125,232,232,0.15); border: 1px solid rgba(125,232,232,0.3); animation: rise linear infinite; }
@keyframes rise { 0% { transform: translateY(0) translateX(0); opacity: 0.8; } 50% { transform: translateY(-40vh) translateX(15px); opacity: 0.5; } 100% { transform: translateY(-100vh) translateX(-10px); opacity: 0; } }
.hero-content { position: absolute; inset: 0; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--aqua); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s 0.5s forwards; }
.hero-title { font-family: var(--ff-display); font-size: clamp(3.5rem,9vw,8rem); font-weight: 300; line-height: 1.0; color: var(--white); margin-bottom: 0.3rem; opacity: 0; animation: fadeUp 1s 0.8s forwards; }
.hero-title em { font-style: italic; color: var(--foam); font-weight: 300; }
.hero-sub { font-family: var(--ff-display); font-size: clamp(1rem,2.5vw,1.6rem); font-weight: 300; font-style: italic; color: var(--sand); margin-bottom: 3rem; opacity: 0; animation: fadeUp 1s 1.1s forwards; }
.hero-cta { display: flex; gap: 1.2rem; opacity: 0; animation: fadeUp 1s 1.4s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.btn { font-family: var(--ff-body); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 1rem 2.5rem; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; display: inline-block; }
.btn-primary { background: var(--aqua); color: var(--deep); font-weight: 600; }
.btn-primary:hover { background: var(--foam); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(240,246,246,0.4); }
.btn-outline:hover { border-color: var(--aqua); color: var(--aqua); transform: translateY(-2px); }
.scroll-hint { position: absolute; bottom: 2.5rem; right: 4rem; z-index: 10; display: flex; align-items: center; gap: 0.6rem; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(200,222,222,0.5); }
.scroll-line { width: 40px; height: 1px; background: rgba(200,222,222,0.3); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; inset: 0; background: var(--aqua); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* OCEAN WORLD */
#ocean-world { position: relative; background: var(--deep); overflow: hidden; }
#ocean-world::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%; background: repeating-linear-gradient(108deg, transparent 0%, transparent 7%, rgba(26,184,184,0.022) 7.6%, transparent 8.2%, transparent 14%, rgba(125,232,232,0.015) 14.5%, transparent 15.1%); animation: shafts 14s ease-in-out infinite alternate; pointer-events: none; z-index: 0; }
@keyframes shafts { 0% { transform: skewX(-4deg) translateX(-3%); opacity: 0.6; } 100% { transform: skewX(4deg) translateX(3%); opacity: 1; } }
#ocean-world::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 30% at 20% 15%, rgba(13,122,122,0.13) 0%, transparent 60%), radial-gradient(ellipse 50% 25% at 80% 40%, rgba(26,184,184,0.09) 0%, transparent 55%), radial-gradient(ellipse 60% 20% at 40% 68%, rgba(10,50,86,0.25) 0%, transparent 60%), radial-gradient(ellipse 70% 25% at 65% 85%, rgba(13,122,122,0.10) 0%, transparent 55%); pointer-events: none; z-index: 0; animation: glowPulse 12s ease-in-out infinite alternate; }
@keyframes glowPulse { 0% { opacity: 0.7; } 100% { opacity: 1.0; } }
#world-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.w-bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(125,232,232,0.35), rgba(26,184,184,0.08)); border: 1px solid rgba(125,232,232,0.25); animation: wRise linear infinite; }
@keyframes wRise { 0% { transform: translateY(0) translateX(0px); opacity: 0; } 5% { opacity: 0.9; } 50% { transform: translateY(-45vh) translateX(18px); opacity: 0.5; } 100% { transform: translateY(-105vh) translateX(-12px); opacity: 0; } }
.seaweed { position: absolute; bottom: 0; width: 18px; pointer-events: none; z-index: 1; transform-origin: bottom center; }
.sw-sway { animation: sway ease-in-out infinite alternate; }
@keyframes sway { 0% { transform: rotate(-18deg) scaleX(1); } 100% { transform: rotate(18deg) scaleX(0.95); } }
.jelly { position: absolute; pointer-events: none; z-index: 2; animation: jellyFloat ease-in-out infinite; opacity: 0.18; }
@keyframes jellyFloat { 0% { transform: translateY(0px) rotate(0deg); } 33% { transform: translateY(-22px) rotate(4deg); } 66% { transform: translateY(-10px) rotate(-3deg); } 100% { transform: translateY(0px) rotate(0deg); } }
.fish { position: absolute; pointer-events: none; z-index: 2; opacity: 0.12; animation: fishSwim linear infinite; }
@keyframes fishSwim { 0% { transform: translateX(-120px); opacity: 0; } 5% { opacity: 0.15; } 95% { opacity: 0.12; } 100% { transform: translateX(calc(100vw + 120px)); opacity: 0; } }
.fish.rtl { animation: fishSwimR linear infinite; }
@keyframes fishSwimR { 0% { transform: translateX(calc(100vw + 120px)) scaleX(-1); opacity: 0; } 5% { opacity: 0.15; } 95% { opacity: 0.12; } 100% { transform: translateX(-120px) scaleX(-1); opacity: 0; } }
.plankton { position: absolute; border-radius: 50%; background: var(--aqua); pointer-events: none; z-index: 1; animation: plankDrift ease-in-out infinite; }
@keyframes plankDrift { 0%,100% { transform: translate(0,0); opacity: 0.25; } 25% { transform: translate(8px,-15px); opacity: 0.5; } 50% { transform: translate(-6px,-28px); opacity: 0.3; } 75% { transform: translate(12px,-18px); opacity: 0.45; } }
.ocean-divider { position: relative; z-index: 3; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(26,184,184,0.15) 30%, rgba(26,184,184,0.25) 50%, rgba(26,184,184,0.15) 70%, transparent 100%); }
#ocean-world > section { position: relative; z-index: 3; background: transparent; }

/* SHARED */
.section-label { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--aqua); margin-bottom: 1rem; display: block; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ABOUT */
#about { padding: 8rem 4rem; }
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.about-visual { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, rgba(10,50,86,0.55) 0%, rgba(13,122,122,0.35) 50%, rgba(7,30,56,0.7) 100%), url('../media/images/IMG_4975.png'); background-size: cover; background-position: center; position: relative; overflow: hidden; border: 1px solid rgba(26,184,184,0.2); }
.about-img-main::after { content: '⚓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 6rem; opacity: 0.08; }
.about-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 120px; height: 120px; background: var(--aqua); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--deep); font-family: var(--ff-display); z-index: 2; }
.about-badge .num { font-size: 2rem; font-weight: 600; line-height: 1; }
.about-badge .label { font-size: 0.55rem; font-family: var(--ff-body); letter-spacing: 0.1em; text-transform: uppercase; }
.about-text h2 { font-family: var(--ff-display); font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 1.5rem; }
.about-text h2 em { font-style: italic; color: var(--foam); }
.about-text p { font-size: 0.85rem; line-height: 1.9; color: var(--text); margin-bottom: 1.2rem; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(26,184,184,0.15); }
.stat-item { text-align: center; }
.stat-num { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 300; color: var(--aqua); display: block; line-height: 1; }
.stat-desc { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); margin-top: 0.4rem; display: block; }

/* DIVES */
#dives { padding: 8rem 4rem; }
.dives-header { max-width: 1200px; margin: 0 auto 4rem; display: flex; align-items: flex-end; justify-content: space-between; }
.dives-header h2 { font-family: var(--ff-display); font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 300; color: var(--white); line-height: 1.15; }
.dives-header h2 em { font-style: italic; color: var(--foam); }
.dives-header p { max-width: 300px; font-size: 0.8rem; line-height: 1.8; color: var(--text); text-align: right; }
.dives-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dive-card { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.dive-card-bg { position: absolute; inset: 0; transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.dive-card:hover .dive-card-bg { transform: scale(1.07); }
.dive-card-1 .dive-card-bg { 
  background: 
    radial-gradient(ellipse at 40% 60%, rgba(26,184,184,0.15) 0%, transparent 55%), 
    linear-gradient(180deg, rgba(7,30,56,0.2) 0%, rgba(10,74,122,0.15) 50%, rgba(13,122,122,0.2) 100%), 
    url('../media/images/IMG_1980.JPG.jpeg'); 
  background-size: cover; background-position: center; 
}

.dive-card-2 .dive-card-bg { 
  background: 
    radial-gradient(ellipse at 60% 40%, rgba(7,30,56,0.3) 0%, transparent 60%), 
    radial-gradient(ellipse at 30% 70%, rgba(13,122,122,0.2) 0%, transparent 50%), 
    linear-gradient(180deg, rgba(3,11,20,0.3) 0%, rgba(4,16,30,0.25) 50%, rgba(7,30,56,0.25) 100%), 
    url('../media/images/IMG_4179.png'); 
  background-size: cover; background-position: center; 
}

.dive-card-overlay { 
  position: absolute; inset: 0; 
  background: linear-gradient(to top, rgba(4,16,30,0.75) 0%, rgba(4,16,30,0.1) 60%, transparent 100%); 
  transition: opacity 0.4s; 
}
.dive-card:hover .dive-card-overlay { opacity: 0.7; }
.dive-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; z-index: 2; }
.dive-tag { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--aqua); margin-bottom: 0.6rem; display: block; }
.dive-title { font-family: var(--ff-display); font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 0.8rem; line-height: 1.15; }
.dive-desc { font-size: 0.78rem; line-height: 1.8; color: rgba(200,222,222,0.8); max-width: 380px; transform: translateY(10px); opacity: 0; transition: all 0.4s; }
.dive-card:hover .dive-desc { opacity: 1; transform: translateY(0); }
.dive-icon { position: absolute; top: 2rem; right: 2rem; width: 50px; height: 50px; border: 1px solid rgba(26,184,184,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; background: rgba(4,16,30,0.5); backdrop-filter: blur(8px); }

/* EXPERIENCE */
#experience { padding: 5rem 4rem; }
.exp-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.exp-item { text-align: center; padding: 2.5rem 1.5rem; border: 1px solid rgba(26,184,184,0.12); background: rgba(7,30,56,0.45); backdrop-filter: blur(8px); transition: border-color 0.3s, transform 0.3s; }
.exp-item:hover { border-color: rgba(26,184,184,0.35); transform: translateY(-4px); }
.exp-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.exp-title { font-family: var(--ff-display); font-size: 1.1rem; color: var(--white); margin-bottom: 0.4rem; font-weight: 400; }
.exp-desc { font-size: 0.72rem; line-height: 1.7; color: rgba(200,222,222,0.75); }

/* GALLERY */
#gallery { padding: 8rem 4rem; }
.gallery-header { max-width: 1200px; margin: 0 auto 3rem; text-align: center; }
.gallery-header h2 { font-family: var(--ff-display); font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 300; color: var(--white); }
.gallery-header h2 em { font-style: italic; color: var(--foam); }
.gallery-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: repeat(2,220px); gap: 4px; }
.g-item { overflow: hidden; position: relative; cursor: pointer; }
.g-item::after { content: ''; position: absolute; inset: 0; background: rgba(26,184,184,0.15); opacity: 0; transition: opacity 0.3s; }
.g-item:hover::after { opacity: 1; }
.g-item-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.g-item-bg.photo { background-size: cover !important; background-position: center center !important; background-repeat: no-repeat; background-color: rgba(7,30,56,0.6); }
.g-item:hover .g-item-bg { transform: scale(1.05); }
.g1 { grid-column: span 5; } .g2 { grid-column: span 4; } .g3 { grid-column: span 3; }
.g4 { grid-column: span 3; } .g5 { grid-column: span 5; } .g6 { grid-column: span 4; }
.g1 .g-item-bg { background: linear-gradient(135deg,#0a3256 0%,#0d7a7a 100%); }
.g2 .g-item-bg { background: linear-gradient(160deg,#071e38 0%,#1ab8b8 100%); }
.g3 .g-item-bg { background: linear-gradient(120deg,#0d4a6e 0%,#04101e 100%); }
.g4 .g-item-bg { background: linear-gradient(200deg,#04101e 0%,#0d7a7a 100%); }
.g5 .g-item-bg { background: linear-gradient(150deg,#071e38 0%,#0a4a7a 100%); }
.g6 .g-item-bg { background: linear-gradient(110deg,#0a3256 0%,#071e38 100%); }

/* GALLERY MODAL */
.gallery-modal { position: fixed; inset: 0; background: rgba(4,16,30,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; z-index: 2000; }
.gallery-modal.open { opacity: 1; pointer-events: auto; }
.gallery-modal-dialog { width: min(90vw, 1000px); aspect-ratio: 16/10; background: rgba(7,30,56,0.9); border: 1px solid rgba(26,184,184,0.2); border-radius: 12px; position: relative; overflow: hidden; transform: translateY(18px) scale(0.98); transition: transform 0.35s ease; box-shadow: 0 24px 60px rgba(3,11,20,0.6); }
.gallery-modal.open .gallery-modal-dialog { transform: translateY(0) scale(1); }
.gallery-modal-media { width: 100%; height: 100%; background-size: contain; background-position: center; background-repeat: no-repeat; }
.gallery-modal-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(26,184,184,0.35); background: rgba(4,16,30,0.6); color: var(--white); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.3s, color 0.3s, transform 0.3s; }
.gallery-modal-close:hover { border-color: var(--aqua); color: var(--aqua); transform: translateY(-2px); }
body.modal-open { overflow: hidden; }

/* LOCATION */
#location { padding: 8rem 4rem; }
.location-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.location-map { aspect-ratio: 16/9; background: rgba(7,30,56,0.5); border: 1px solid rgba(26,184,184,0.15); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.map-pin-area { text-align: center; }
.map-pin { font-size: 2.5rem; animation: bounce 2s ease-in-out infinite; display: block; }
@keyframes bounce { 0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);} }
.map-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aqua); margin-top: 0.5rem; }
.location-info h2 { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.location-info h2 em { font-style: italic; color: var(--foam); }
.location-info p { font-size: 0.82rem; line-height: 1.9; color: var(--text); margin-bottom: 1.5rem; }
.location-facts { display: flex; flex-direction: column; gap: 0.8rem; }
.loc-fact { display: flex; align-items: center; gap: 0.8rem; font-size: 0.78rem; }
.loc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); flex-shrink: 0; }

/* TESTIMONIALS */
#testimonials { padding: 8rem 4rem; }
.testi-header { max-width: 1200px; margin: 0 auto 4rem; text-align: center; }
.testi-header h2 { font-family: var(--ff-display); font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 300; color: var(--white); line-height: 1.15; }
.testi-header h2 em { font-style: italic; color: var(--foam); }
.testi-header p { font-size: 0.8rem; color: var(--text); margin-top: 0.8rem; line-height: 1.8; }
.testi-track-wrap { max-width: 1200px; margin: 0 auto; position: relative; overflow: hidden; }
.testi-track-wrap::before, .testi-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.testi-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--deep), transparent); }
.testi-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--deep), transparent); }
.testi-track { display: flex; gap: 1.5rem; width: max-content; animation: tScroll 42s linear infinite; }
.testi-track:hover { animation-play-state: paused; }
@keyframes tScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.testi-card { width: 320px; flex-shrink: 0; background: rgba(7,30,56,0.55); border: 1px solid rgba(26,184,184,0.14); backdrop-filter: blur(10px); padding: 2rem; position: relative; transition: border-color 0.3s, transform 0.3s; }
.testi-card:hover { border-color: rgba(26,184,184,0.35); transform: translateY(-4px); }
.testi-dive-badge { position: absolute; top: 1.2rem; right: 1.2rem; font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--aqua); border: 1px solid rgba(26,184,184,0.25); padding: 0.25rem 0.6rem; }
.testi-quote-mark { font-family: var(--ff-display); font-size: 4rem; line-height: 0.8; color: var(--aqua); opacity: 0.35; display: block; margin-bottom: 0.8rem; font-style: italic; }
.testi-text { font-family: var(--ff-display); font-size: 1rem; font-style: italic; font-weight: 300; line-height: 1.75; color: var(--white); margin-bottom: 1.5rem; }
.testi-stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.star { color: var(--gold); font-size: 0.75rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; border-top: 1px solid rgba(26,184,184,0.1); padding-top: 1rem; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,var(--teal),var(--mid)); border: 1px solid rgba(26,184,184,0.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.testi-name { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--white); font-weight: 400; }
.testi-origin { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aqua); margin-top: 0.1rem; }

/* CONTACT */
#contact { padding: 8rem 4rem; }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start; }
.contact-info h2 { font-family: var(--ff-display); font-size: clamp(2.2rem,3.5vw,3rem); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 1.5rem; }
.contact-info h2 em { font-style: italic; color: var(--foam); }
.contact-info p { font-size: 0.82rem; line-height: 1.9; color: var(--text); margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 40px; height: 40px; border: 1px solid rgba(26,184,184,0.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; background: rgba(7,30,56,0.4); }
.contact-item-text { font-size: 0.78rem; line-height: 1.6; }
.contact-item-label { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aqua); margin-bottom: 0.2rem; display: block; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aqua); }
.form-field input, .form-field select, .form-field textarea { background: rgba(7,30,56,0.6); border: 1px solid rgba(26,184,184,0.2); color: var(--white); padding: 0.9rem 1.2rem; font-family: var(--ff-body); font-size: 0.8rem; font-weight: 300; outline: none; -webkit-appearance: none; transition: border-color 0.3s, background 0.3s; backdrop-filter: blur(4px); }
.form-field select option { background: var(--navy); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--aqua); background: rgba(10,50,86,0.7); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(200,222,222,0.35); }
.form-submit { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.form-note { font-size: 0.7rem; color: rgba(200,222,222,0.5); font-style: italic; }
#formMsg { font-size: 0.75rem; color: var(--aqua); margin-top: 0.5rem; display: none; }

/* FOOTER */
footer { position: relative; z-index: 4; background: rgba(4,16,30,0.95); border-top: 1px solid rgba(26,184,184,0.12); padding: 3rem 4rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--foam); }
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tagline { font-size: 0.7rem; color: rgba(200,222,222,0.4); margin-top: 0.3rem; letter-spacing: 0.1em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(200,222,222,0.5); text-decoration: none; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--aqua); }
.footer-copy { font-size: 0.65rem; color: rgba(200,222,222,0.3); }
.footer-social { display: flex; gap: 0.8rem; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(26,184,184,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; text-decoration: none; transition: all 0.3s; color: var(--text); }
.social-btn:hover { border-color: var(--aqua); color: var(--aqua); background: rgba(26,184,184,0.08); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; } nav.scrolled { padding: 0.8rem 2rem; }
  .nav-links { display: none; }
  #about,#dives,#gallery,#contact,#location,#experience,#testimonials { padding: 5rem 2rem; }
  .about-grid,.contact-grid,.location-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dives-grid { grid-template-columns: 1fr; }
  .dives-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .dives-header p { text-align: left; max-width: 100%; }
  .exp-inner { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: unset; }
  .g1,.g2,.g3,.g4,.g5,.g6 { grid-column: span 1; aspect-ratio: 1; }
}
