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

:root {
  --cream: #f4f7fb;
  --warm-white: #eef2f8;
  --blue-deep: #0d1f35;
  --blue-mid: #1a3a5c;
  --blue-light: #2e6da4;
  --accent: #2980c4;
  --accent-light: #5baee8;
  --teal: #1a7a8a;
  --teal-light: #4ab0c0;
  --sky: #e8f4fd;
  --glass: rgba(41,128,196,0.08);
  --glass-border: rgba(41,128,196,0.2);
  --shadow-warm: 0 20px 60px rgba(13,31,53,0.12);
  --shadow-deep: 0 40px 100px rgba(13,31,53,0.22);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--blue-deep);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}

/* LOADING SCREEN */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--blue-deep);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(41,128,196,0.15);
  border: 1.5px solid rgba(91,174,232,0.3);
  display: flex; align-items: center; justify-content: center;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-icon svg {
  width: 38px; height: 38px;
  fill: none; stroke: var(--accent-light);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
@keyframes loaderPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(41,128,196,0.3); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(41,128,196,0); }
}

.loader-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: rgba(255,255,255,0.9); letter-spacing: 0.5px;
  text-align: center; line-height: 1.3;
}
.loader-wordmark span { color: var(--accent-light); font-style: italic; }

.loader-bar {
  width: 180px; height: 1.5px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  animation: loadFill 1.9s ease-in-out forwards;
}
@keyframes loadFill { from { width: 0; } to { width: 100%; } }

.loader-sub {
  color: rgba(255,255,255,0.3);
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
}

/* NAVBAR */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s ease;
}
nav.scrolled {
  background: rgba(244,247,251,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  box-shadow: 0 4px 30px rgba(13,31,53,0.08);
  border-bottom: 1px solid rgba(41,128,196,0.12);
}
.nav-logo {
  display: flex; flex-direction: column; gap: 2px; text-decoration: none;
}
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
  color: rgba(244,247,251,0.95); letter-spacing: 0.3px;
  transition: color 0.4s; line-height: 1.2;
}
nav.scrolled .nav-logo-main { color: var(--blue-deep); }
.nav-logo-sub {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light); font-weight: 500;
}
nav.scrolled .nav-logo-sub { color: var(--accent); }

.nav-links {
  display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500;
  color: rgba(244,247,251,0.75);
  transition: all 0.3s; position: relative;
}
nav.scrolled .nav-links a { color: var(--blue-mid); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent-light) !important; }
nav.scrolled .nav-links a:hover { color: var(--accent) !important; }
.nav-links a.active-page { color: var(--accent-light) !important; }
.nav-links a.active-page::after { width: 100%; }
nav.scrolled .nav-links a.active-page { color: var(--accent) !important; }

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 20px rgba(41,128,196,0.35);
}
.nav-cta:hover {
  background: var(--blue-mid) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(41,128,196,0.45) !important;
}
.nav-cta::after { display: none !important; }

/* MOBILE BURGER */
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: rgba(244,247,251,0.85);
  border-radius: 2px; transition: all 0.3s;
  display: block;
}
nav.scrolled .nav-burger span { background: var(--blue-deep); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--blue-deep);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: rgba(255,255,255,0.85);
  letter-spacing: 1px; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent-light); }
.mobile-menu-close {
  position: absolute; top: 28px; right: 28px;
  background: none; border: none; cursor: pointer;
  font-size: 28px; color: rgba(255,255,255,0.6);
}

/* HERO */
#hero {
  min-height: 100vh; position: relative;
  overflow: hidden; display: flex;
  align-items: center; justify-content: center;
  background: var(--blue-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform-origin: center;
  transition: transform 0.1s ease-out;
  filter: brightness(0.4) saturate(0.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,53,0.75) 0%,
    rgba(13,31,53,0.35) 40%,
    rgba(26,58,92,0.45) 70%,
    rgba(41,128,196,0.12) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(70px);
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(41,128,196,0.18), transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,122,138,0.12), transparent 70%);
  bottom: 100px; left: -50px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-20px) scale(1.05); }
  66% { transform: translate(-15px,15px) scale(0.95); }
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 920px; padding: 0 24px;
  transform-style: preserve-3d;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(41,128,196,0.15);
  border: 1px solid rgba(41,128,196,0.3);
  backdrop-filter: blur(10px);
  padding: 8px 20px; border-radius: 30px;
  color: var(--accent-light);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 500; margin-bottom: 32px;
  animation: fadeUp 0.8s ease forwards 0.3s; opacity: 0;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-light);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 900; line-height: 1.05;
  color: #fff;
  animation: fadeUp 0.9s ease forwards 0.5s; opacity: 0;
  margin-bottom: 12px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title-city {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 2vw, 26px);
  letter-spacing: 8px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  animation: fadeUp 0.9s ease forwards 0.65s; opacity: 0;
  margin-bottom: 28px; display: block;
}
.hero-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8; max-width: 580px; margin: 0 auto 48px;
  animation: fadeUp 0.9s ease forwards 0.8s; opacity: 0;
  font-weight: 300;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.9s ease forwards 1s; opacity: 0;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent);
  color: white; text-decoration: none;
  padding: 15px 34px; border-radius: 50px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 30px rgba(41,128,196,0.4);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-mid), var(--teal));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 45px rgba(41,128,196,0.5); }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff; text-decoration: none;
  padding: 15px 34px; border-radius: 50px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.35s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1s ease forwards 1.5s; opacity: 0;
}
.hero-scroll-text {
  color: rgba(255,255,255,0.35);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(41,128,196,0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Floating 3D cards in hero */
.hero-float-card {
  position: absolute; z-index: 5;
  background: rgba(13,31,53,0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(41,128,196,0.25);
  border-radius: 18px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: floatCard 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-float-card-icon { font-size: 26px; color:var(--warm-white);}
.hero-float-card-text { color: rgba(255,255,255,0.9); }
.hero-float-card-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.5; }
.hero-float-card-value { font-family: 'Playfair Display'; font-size: 18px; font-weight: 700; }
.hfc-1 { top: 22%; left: 6%; animation-delay: 0s; }
.hfc-2 { top: 65%; right: 5%; animation-delay: -2s; }
.hfc-3 { top: 28%; right: 8%; animation-delay: -4s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

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

/* WAVE DIVIDER */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ABOUT SECTION */
#about { background: #fff; padding: 110px 0; overflow: hidden; position: relative; }
.about-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%; border-radius: 28px;
  box-shadow: var(--shadow-deep); display: block;
  transition: transform 0.6s ease;
}
.about-img-main:hover { transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) scale(1.02); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--accent), var(--blue-mid));
  color: white; border-radius: 18px;
  padding: 18px 22px; text-align: center;
  box-shadow: 0 10px 40px rgba(41,128,196,0.4);
  font-family: 'Playfair Display', serif;
  animation: floatCard 5s ease-in-out infinite;
}
.about-badge-num { font-size: 36px; font-weight: 900; line-height: 1; }
.about-badge-text { font-size: 11px; letter-spacing: 1px; opacity: 0.85; font-family: 'DM Sans'; margin-top: 4px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 900; line-height: 1.15;
  color: var(--blue-deep); margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-title.light { color: #fff; }
.about-text {
  color: var(--blue-mid); line-height: 1.8;
  font-size: 15px; font-weight: 300; margin-bottom: 18px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 14px; border-radius: 14px;
  background: var(--cream);
  border: 1px solid rgba(41,128,196,0.1);
  transition: all 0.3s;
}
.about-feature:hover {
  background: rgba(41,128,196,0.06);
  border-color: rgba(41,128,196,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(41,128,196,0.1);
}
.about-feature-icon { font-size: 20px; flex-shrink: 0; }
.about-feature-text { font-size: 13px; color: var(--blue-mid); line-height: 1.5; font-weight: 400; }

/* CATEGORIES */
#categories { background: var(--cream); padding: 100px 0; }
.categories-inner { max-width: 1160px; margin: 0 auto; padding: 0 60px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }
.section-header .section-tag::after { content: ''; width: 28px; height: 1px; background: var(--accent); }

.categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.cat-card {
  border-radius: 24px; overflow: hidden;
  position: relative; aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s;
  transform-style: preserve-3d;
  box-shadow: 0 12px 45px rgba(13,31,53,0.12);
}
.cat-card:hover { box-shadow: 0 28px 75px rgba(13,31,53,0.22); }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease;
  filter: brightness(0.7) saturate(0.85);
}
.cat-card:hover img { transform: scale(1.08); filter: brightness(0.6) saturate(1); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,53,0.88) 0%, transparent 55%);
  transition: opacity 0.4s;
}
.cat-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  transform: translateY(0); transition: transform 0.4s;
}
.cat-card:hover .cat-card-content { transform: translateY(-8px); }
.cat-card-num {
  font-family: 'Playfair Display'; font-size: 12px;
  color: var(--accent-light); letter-spacing: 2px; font-weight: 700; margin-bottom: 6px;
}
.cat-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 10px;
}
.cat-card-desc {
  font-size: 13px; color: rgba(255,255,255,0.68);
  line-height: 1.6; font-weight: 300;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s 0.1s;
}
.cat-card:hover .cat-card-desc { opacity: 1; transform: translateY(0); }
.cat-card-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-light); font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600; margin-top: 12px;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s 0.15s;
}
.cat-card:hover .cat-card-arrow { opacity: 1; transform: translateY(0); }

/* FEATURES STRIP */
#features-strip { background: var(--blue-deep); padding: 80px 0; overflow: hidden; }
.features-inner { max-width: 1160px; margin: 0 auto; padding: 0 60px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.feat-item {
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center; transition: background 0.3s;
}
.feat-item:last-child { border-right: none; }
.feat-item:hover { background: rgba(41,128,196,0.1); }
.feat-icon {
  font-size: 34px; margin-bottom: 16px; display: block;
  transition: transform 0.3s;
  color:var(--warm-white);
}
.feat-item:hover .feat-icon { transform: scale(1.2) rotate(-5deg); }
.feat-title {
  font-family: 'Playfair Display'; font-size: 19px;
  color: var(--cream); font-weight: 700; margin-bottom: 10px;
}
.feat-text { font-size: 13px; color: rgba(244,247,251,0.45); line-height: 1.7; font-weight: 300; }

/* PRODUCTS */
#products { background: #fff; padding: 110px 0; }
.products-inner { max-width: 1160px; margin: 0 auto; padding: 0 60px; }
.products-list { display: flex; flex-direction: column; gap: 0; margin-top: 56px; }
.product-row {
  display: grid; grid-template-columns: 70px 1fr auto;
  align-items: center; gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(13,31,53,0.07);
  transition: all 0.3s; cursor: pointer;
}
.product-row:first-child { border-top: 1px solid rgba(13,31,53,0.07); }
.product-row:hover { padding-left: 14px; border-bottom-color: var(--accent); }
.product-row-num {
  font-family: 'Playfair Display'; font-size: 12px;
  color: var(--accent); letter-spacing: 2px; font-weight: 700; opacity: 0.6;
}
.product-row:hover .product-row-num { opacity: 1; }
.product-row-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--blue-deep); font-weight: 700; transition: color 0.3s;
}
.product-row:hover .product-row-name { color: var(--accent); }
.product-row-sub { font-size: 13px; color: var(--blue-light); margin-top: 3px; font-weight: 300; }
.product-row-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(41,128,196,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 16px; transition: all 0.3s;
  flex-shrink: 0;
}
.product-row:hover .product-row-arrow {
  background: var(--accent); color: white;
  transform: rotate(-45deg);
  box-shadow: 0 4px 20px rgba(41,128,196,0.4);
}

/* GALLERY */
#gallery { background: var(--cream); padding: 100px 0; }
.gallery-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 14px; margin-top: 56px;
}
.gallery-item { border-radius: 18px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; min-height: 180px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease, filter 0.4s;
  filter: saturate(0.8);
}
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1.1) brightness(0.88); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,31,53,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(13,31,53,0.38); }
.gallery-item-icon { color: white; font-size: 30px; opacity: 0; transform: scale(0.5); transition: all 0.3s; }
.gallery-item:hover .gallery-item-icon { opacity: 1; transform: scale(1); }

/* CONTACT */
#contact { background: var(--blue-deep); padding: 110px 0; overflow: hidden; }
.contact-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.contact-content .section-title { color: #fff; }
.contact-content .section-tag { color: var(--accent-light); }
.contact-content .section-tag::before { background: var(--accent-light); }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s;
}
.contact-item:hover {
  background: rgba(41,128,196,0.1);
  border-color: rgba(41,128,196,0.25);
  transform: translateX(8px);
}
.contact-item-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(41,128,196,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  border: 1px solid rgba(41,128,196,0.2);
}
.contact-item-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-light); font-weight: 600; margin-bottom: 4px;
}
.contact-item-value { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 400; line-height: 1.5; }
.hours-grid { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; }
.hours-day { font-size: 13px; color: rgba(255,255,255,0.45); }
.hours-time { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }

.map-container {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative; border: 1px solid rgba(255,255,255,0.06);
  height: 460px;
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(0.2) contrast(1.05); }
.map-pin-overlay {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: white;
  padding: 9px 14px; border-radius: 10px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 4px 20px rgba(41,128,196,0.5);
  pointer-events: none;
}

/* FOOTER */
footer {
  background: var(--blue-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: rgba(255,255,255,0.85); font-weight: 700;
}
.footer-logo span { color: var(--accent-light); }
.footer-text { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 15px;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover {
  background: var(--accent); color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(41,128,196,0.4);
  border-color: transparent;
}

/* PAGE HERO (subpages) */
#page-hero {
  min-height: 50vh; position: relative;
  overflow: hidden; display: flex;
  align-items: flex-end; justify-content: flex-start;
  background: var(--blue-deep); padding-bottom: 70px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35) saturate(0.7);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,31,53,0.85) 40%, rgba(13,31,53,0.3) 100%);
}
.page-hero-content {
  position: relative; z-index: 10;
  max-width: 1160px; width: 100%; margin: 0 auto; padding: 0 60px;
}
.page-hero-breadcrumb {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--accent-light); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; line-height: 1.1; color: #fff;
}
.page-hero-title em { font-style: italic; color: var(--accent-light); }

/* CONTENT PAGE */
.content-section { background: #fff; padding: 90px 0; }
.content-inner { max-width: 1160px; margin: 0 auto; padding: 0 60px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.content-text p { font-size: 15px; color: var(--blue-mid); line-height: 1.85; font-weight: 300; margin-bottom: 18px; }
.content-text strong { color: var(--blue-deep); font-weight: 600; }

.why-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.why-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border-radius: 14px;
  background: var(--cream);
  border: 1px solid rgba(41,128,196,0.1);
  transition: all 0.3s;
}
.why-list li:hover {
  background: rgba(41,128,196,0.05);
  border-color: rgba(41,128,196,0.25);
  transform: translateX(6px);
}
.why-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  color:var(--warm-white);
}
.why-text strong { font-size: 14px; color: var(--blue-deep); font-weight: 600; display: block; margin-bottom: 3px; }
.why-text span { font-size: 13px; color: var(--blue-mid); font-weight: 300; }

.img-stack { display: flex; flex-direction: column; gap: 16px; }
.img-stack img {
  width: 100%; border-radius: 20px;
  box-shadow: var(--shadow-warm); display: block;
  transition: transform 0.4s;
  object-fit: cover;
}
.img-stack img:hover { transform: scale(1.02); }
.img-stack-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ANIMALS PAGE */
.animals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.animal-card {
  border-radius: 24px; overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(13,31,53,0.09);
  transition: all 0.4s;
}
.animal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(13,31,53,0.15);
}
.animal-card-img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  transition: transform 0.5s;
  filter: saturate(0.85);
}
.animal-card:hover .animal-card-img { transform: scale(1.05); filter: saturate(1); }
.animal-card-body { padding: 24px; }
.animal-card-tag {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 8px;
}
.animal-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--blue-deep); margin-bottom: 10px;
}
.animal-card-text { font-size: 13px; color: var(--blue-mid); line-height: 1.7; font-weight: 300; }

/* SERVICES PAGE */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 60px; }
.service-card {
  border-radius: 24px; overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(41,128,196,0.1);
  transition: all 0.4s;
}
.service-card:hover {
  background: #fff;
  border-color: rgba(41,128,196,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(13,31,53,0.1);
}
.service-card-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  filter: saturate(0.8); transition: filter 0.4s;
}
.service-card:hover .service-card-img { filter: saturate(1); }
.service-card-body { padding: 24px; }
.service-card-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--blue-deep); margin-bottom: 10px;
}
.service-card-text { font-size: 13px; color: var(--blue-mid); line-height: 1.7; font-weight: 300; }

/* INFO STRIP (subpages) */
.info-strip { background: var(--blue-deep); padding: 60px 0; }
.info-strip-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.info-strip-item { display: flex; align-items: center; gap: 16px; }
.info-strip-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--warm-white); border: 1px solid rgba(41,128,196,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.info-strip-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-light); font-weight: 600; }
.info-strip-value { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 400; line-height: 1.5; margin-top: 2px; }

/* FLOATING PAWS */
.floating-paws { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.fp { position: absolute; opacity: 0.04; font-size: 38px; animation: fpFloat 15s ease-in-out infinite;}
@keyframes fpFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(15deg); }
  66% { transform: translateY(15px) rotate(-10deg); }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s, transform 0.8s; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s, transform 0.8s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-inner { gap: 50px; }
  .categories-grid { gap: 18px; }
  .contact-inner { gap: 50px; }
  .animals-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 18px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-float-card { display: none; }

  .hero-content { padding: 0 20px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .about-badge { display: none; }
  .about-features { grid-template-columns: 1fr; }

  .categories-inner { padding: 0 20px; }
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 4/3; }

  .features-inner { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-item { padding: 28px 18px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .feat-item:nth-child(2n) { border-right: none; }

  .products-inner { padding: 0 20px; }
  .product-row { grid-template-columns: 50px 1fr auto; gap: 16px; }

  .gallery-inner { padding: 0 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }

  .contact-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 40px; }
  .map-container { height: 280px; }

  footer { flex-direction: column; text-align: center; padding: 28px 20px; }

  .page-hero-content { padding: 0 20px; }
  .content-inner { padding: 0 20px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .img-stack-row { grid-template-columns: 1fr; }

  .info-strip-inner { padding: 0 20px; grid-template-columns: 1fr; gap: 24px; }

  .animals-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }

  #about { padding: 70px 0; }
  #categories { padding: 70px 0; }
  #products { padding: 70px 0; }
  #gallery { padding: 70px 0; }
  #contact { padding: 70px 0; }
  .content-section { padding: 60px 0; }
  .info-strip { padding: 50px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .section-title { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 40px 1fr; }
  .product-row-arrow { display: none; }
}
