@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: #ffffff; color: #1d1d1f; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* === NAV === */
nav { 
  position: fixed; top: 0; width: 100%; padding: 20px 50px; 
  display: flex; justify-content: space-between; align-items: center; 
  z-index: 1000; 
  background: rgba(10, 10, 10, 0.7); 
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.logo { font-size: 18px; font-weight: 600; letter-spacing: 3px; color: #fff; }
.menu { display: flex; align-items: center; }
.menu > a, .menu > .dropdown > a { 
  margin-left: 36px; font-size: 12px; letter-spacing: 1.5px; 
  text-transform: uppercase; color: rgba(255, 255, 255, 0.8); opacity: 0.8; font-weight: 500;
}
.menu > a:hover, .menu > .dropdown > a:hover { opacity: 1; color: #fff; }

/* === DROPDOWN === */
.dropdown { position: relative; display: inline-block; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%); min-width: 240px;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; padding: 10px 0;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu a {
  display: block; padding: 10px 24px; margin-left: 0;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  opacity: 1; color: rgba(255, 255, 255, 0.7); font-weight: 400;
  border-left: 2px solid transparent; transition: all 0.2s ease;
}
.dropdown-menu a:hover {
  opacity: 1; color: #fff; border-left-color: #0071e3;
  padding-left: 28px;
}
.dropdown-menu .divider { height: 1px; background: rgba(255, 255, 255, 0.1); margin: 6px 16px; }

/* === HERO PARALLAX === */
.parallax {
  height: 100vh; background-attachment: fixed; background-position: center;
  background-repeat: no-repeat; background-size: cover;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.parallax::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.35); z-index: 1;
}
.parallax-content { 
  position: relative; z-index: 2; text-align: center; padding: 20px; 
}
.parallax h1 { 
  font-size: 72px; font-weight: 200; letter-spacing: 18px; 
  margin-bottom: 20px; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.parallax p { 
  font-size: 16px; letter-spacing: 6px; color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* === STORY SECTION === */
.story-section { background: linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)), url(/images/ocean-bg.jpg?v=1) center/cover; display: flex; align-items: center; min-height: auto; }
.story-section:nth-child(even) { flex-direction: row-reverse; }
.story-img { flex: 0.7; }
.story-img img { width: 100%; max-height: 450px; object-fit: contain; display: block; border-radius: 20px; box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.story-text { flex: 1.3; padding: 80px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.story-text h2 { font-size: 40px; font-weight: 300; letter-spacing: 10px; margin-bottom: 30px; text-transform: uppercase; color: #1d1d1f; }
.story-text p { font-size: 16px; line-height: 2; color: #6e6e73; max-width: 520px; text-align: center; }

/* === BUTTONS === */
.btn { 
  margin-top: 30px; padding: 16px 44px; border: none;
  background-color: #0071e3; color: #fff;
  text-transform: uppercase; letter-spacing: 2px; font-size: 13px; 
  font-weight: 500; border-radius: 980px; transition: all 0.3s ease;
  cursor: pointer; display: inline-block;
}
.btn:hover { 
  background-color: #0077ed;
  box-shadow: 0 4px 20px rgba(0, 113, 227, 0.3);
  transform: scale(1.02);
}
.btn-secondary {
  background-color: transparent;
  border: 1.5px solid #1d1d1f; color: #1d1d1f;
}
.btn-secondary:hover {
  background-color: #1d1d1f; color: #fff;
}

/* === GRID SECTION === */
.grid-section { background: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)), url(/images/ocean-bg.jpg?v=1) center/cover; padding: 120px 5%; background: #ffffff; text-align: center; }
.grid-title { font-size: 40px; font-weight: 300; letter-spacing: 10px; margin-bottom: 70px; text-transform: uppercase; color: #1d1d1f; }
.grid { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 30px; justify-items: center; max-width: 1400px; margin: 0 auto;
}
.card-wrapper { width: 100%; max-width: 340px; position: relative; display: block; }
.card-wrapper:hover { transform: translateY(-6px); transition: transform 0.4s ease; }
.card { 
  position: relative; width: 100%; height: 440px; 
  background: #f5f5f7; overflow: hidden; cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.card img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s ease; }
.card:hover img { transform: scale(1.06); }
.card-overlay { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%); 
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; 
  transition: 0.3s;
}
.card-title { font-size: 16px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; color: #fff; }
.card-subtitle { font-size: 12px; letter-spacing: 2px; opacity: 0.8; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); }

/* === FOOTER === */
footer {
  padding: 60px 5%; text-align: center; background: #f5f5f7;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
footer p { font-size: 12px; letter-spacing: 2px; opacity: 0.5; text-transform: uppercase; margin-bottom: 8px; color: #6e6e73; }

/* === PRODUCT HERO === */
.product-hero {
  height: 70vh; background-attachment: fixed; background-position: center;
  background-repeat: no-repeat; background-size: cover;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.product-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.product-hero-content { position: relative; z-index: 2; text-align: center; }
.product-hero-content h1 {
  font-size: 56px; font-weight: 200; letter-spacing: 14px;
  text-transform: uppercase; margin-bottom: 15px; color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.product-hero-content p {
  font-size: 14px; letter-spacing: 6px; color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* === PRODUCT DETAILS === */
.product-details { background: linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)), url(/images/ocean-bg.jpg?v=1) center/cover;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 100px 8%; max-width: 1400px; margin: 0 auto; align-items: center;
  background: #ffffff;
}
.product-main-img {
  width: 100%; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.product-main-img img { width: 100%; height: auto; display: block; }
.product-info h2 {
  font-size: 36px; font-weight: 300; letter-spacing: 8px;
  text-transform: uppercase; margin-bottom: 25px; color: #1d1d1f;
}
.product-desc { font-size: 15px; line-height: 2; color: #6e6e73; margin-bottom: 35px; }
.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 35px; }
.spec-item { padding: 20px; background: #f5f5f7; border-radius: 12px; }
.spec-label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.5; margin-bottom: 6px; color: #6e6e73; }
.spec-value { font-size: 14px; letter-spacing: 1px; color: #1d1d1f; font-weight: 500; }
/* === PRICE SECTION === */
.price-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #faf9f7 0%, #f0ede8 100%);
    border: 1px solid #e8e4db;
    border-radius: 16px;
}
.price-section .price-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #8c8c7c;
}
.price-section .price-value {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1d1d1f;
}


/* === PRODUCT GALLERY === */
.product-gallery { background: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)), url(/images/ocean-bg.jpg?v=1) center/cover; padding: 100px 5%; background: #fbfbfd; text-align: center; }
.gallery-title { font-size: 36px; font-weight: 300; letter-spacing: 8px; text-transform: uppercase; margin-bottom: 60px; color: #1d1d1f; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1400px; margin: 0 auto; }
.gallery-item { border-radius: 16px; overflow: hidden; height: 300px; }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* === CONTACT SECTION (inline styles) === */
.contact-section { background: linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)), url(/images/ocean-bg.jpg?v=1) center/cover;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 100px 5%; background: #ffffff; max-width: 1400px; margin: 0 auto;
}
.contact-info h2,
.contact-form-wrapper h2 {
  font-size: 28px; font-weight: 300; letter-spacing: 8px; margin-bottom: 25px;
  text-transform: uppercase; color: #1d1d1f;
}
.contact-intro { font-size: 15px; line-height: 1.8; color: #6e6e73; margin-bottom: 40px; }
.info-block {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 30px; padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.info-block:last-of-type { border-bottom: none; }
.info-icon { font-size: 18px; color: #0071e3; margin-top: 2px; flex-shrink: 0; }
.info-content h3 { font-size: 13px; font-weight: 600; letter-spacing: 3px; margin-bottom: 8px; text-transform: uppercase; color: #1d1d1f; }
.info-content p { font-size: 14px; line-height: 1.8; color: #6e6e73; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #6e6e73; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #f5f5f7; border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1d1d1f; padding: 14px 16px; font-size: 14px;
  font-family: 'Montserrat', sans-serif; letter-spacing: 1px;
  outline: none; transition: all 0.3s; border-radius: 10px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0071e3; box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; }
.form-submit { align-self: flex-start; margin-top: 10px; border: none; cursor: pointer; }
.form-submit:hover { transform: scale(1.02); }
.map-section { filter: grayscale(30%) contrast(1.05); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .product-details { background: linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)), url(/images/ocean-bg.jpg?v=1) center/cover; grid-template-columns: 1fr; gap: 40px; padding: 60px 5%; }
  .parallax h1 { font-size: 40px; letter-spacing: 8px; }
  .product-hero-content h1 { font-size: 32px; letter-spacing: 6px; }
  nav { padding: 16px 24px; }
  .menu > a, .menu > .dropdown > a { margin-left: 20px; font-size: 11px; }
  .story-text { padding: 40px; }
  .story-text h2 { font-size: 28px; letter-spacing: 6px; }
  .grid-title { font-size: 28px; letter-spacing: 6px; }
  .contact-section { background: linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)), url(/images/ocean-bg.jpg?v=1) center/cover; grid-template-columns: 1fr; gap: 60px; padding: 60px 5%; }
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
