/*
  Laprensacur - International Multilingual Corporate Website
  Theme: Surfing Equipment Style - Sea Blue + Beach Beige + Sun Yellow
  Pure CSS3, No Frameworks
*/

/* ===== CSS Variables ===== */
:root {
  --sea-deep: #0a4d68;
  --sea-blue: #088395;
  --sea-light: #05bfdb;
  --sea-foam: #e0f7fa;
  --beach-sand: #f5e6ca;
  --beach-warm: #e8d5b0;
  --beach-dark: #c9a96e;
  --sun-yellow: #f5c518;
  --sun-orange: #ff8c42;
  --coral: #ff6b6b;
  --white: #ffffff;
  --off-white: #faf8f3;
  --text-dark: #1a2a3a;
  --text-medium: #4a5a6a;
  --text-light: #7a8a9a;
  --border-light: #e0dcd4;
  --shadow-soft: 0 4px 20px rgba(10, 77, 104, 0.08);
  --shadow-medium: 0 8px 30px rgba(10, 77, 104, 0.12);
  --shadow-hover: 0 12px 40px rgba(10, 77, 104, 0.18);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --max-width: 1280px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-medium);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sea-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--sun-orange);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p {
  margin-bottom: 1em;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Section ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
}

.section-lg {
  padding: 140px 0;
}

.section-bg-white {
  background: var(--white);
}

.section-bg-beige {
  background: var(--beach-sand);
}

.section-bg-sea {
  background: var(--sea-deep);
  color: var(--sea-foam);
}

.section-bg-sea h1, .section-bg-sea h2, .section-bg-sea h3, .section-bg-sea h4 {
  color: var(--white);
}

/* ===== Decorative Line Elements (极简线条装饰) ===== */
.line-decor {
  position: relative;
}

.line-decor::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background: var(--sun-yellow);
  top: -20px;
  left: 0;
}

.line-decor-center::before {
  left: 50%;
  transform: translateX(-50%);
}

.wave-line {
  position: absolute;
  width: 100%;
  height: 60px;
  bottom: -1px;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23faf8f3' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,35 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

/* ===== Header / Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sea-deep);
  letter-spacing: -0.5px;
}

.site-logo svg {
  width: 40px;
  height: 40px;
}

.site-logo span {
  color: var(--sun-orange);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--sea-blue);
  background: var(--sea-foam);
}

.main-nav > li > a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--sun-yellow);
  margin-top: 4px;
  transition: width var(--transition-fast);
}

.main-nav > li:hover > a::after,
.main-nav > li.active > a::after {
  width: 100%;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  border-top: 3px solid var(--sea-blue);
}

.main-nav > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-medium);
  transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
  color: var(--sea-blue);
  background: var(--sea-foam);
  padding-left: 26px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.lang-switch:hover {
  border-color: var(--sea-blue);
  color: var(--sea-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sea-blue), var(--sea-deep));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(8, 131, 149, 0.3);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(8, 131, 149, 0.4);
}

.btn-sun {
  background: linear-gradient(135deg, var(--sun-yellow), var(--sun-orange));
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}

.btn-sun:hover {
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 197, 24, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--sea-blue);
  border: 2px solid var(--sea-blue);
}

.btn-outline:hover {
  background: var(--sea-blue);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--sea-deep);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--sea-deep) 0%, var(--sea-blue) 50%, var(--sea-light) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sun-yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--sun-yellow);
  position: relative;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
  color: var(--sun-yellow);
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.hero-stat p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Hero decorative waves */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
}

.hero-waves svg {
  width: 100%;
  height: 100%;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--sea-deep), var(--sea-blue));
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb a:hover {
  color: var(--sun-yellow);
}

.page-hero .breadcrumb span {
  color: var(--sun-yellow);
}

.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sea-blue);
  margin-bottom: 16px;
  position: relative;
  padding: 0 30px;
}

.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--sea-blue);
}

.section-header .eyebrow::before { left: 0; }
.section-header .eyebrow::after { right: 0; }

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-header-left {
  text-align: left;
  margin-left: 0;
}

.section-header-left .eyebrow::before,
.section-header-left .eyebrow::after {
  display: none;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  gap: 30px;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.08);
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--sea-foam);
  color: var(--sea-blue);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Feature Card (icon-based) */
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sea-blue), var(--sun-yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sea-foam);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sea-foam), var(--beach-sand));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--sea-blue), var(--sea-deep));
  transform: rotate(-5deg) scale(1.05);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--sea-blue);
  transition: stroke var(--transition-fast);
}

.feature-card:hover .feature-icon svg {
  stroke: var(--white);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* ===== Numbered Steps ===== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--sea-blue), var(--sun-yellow), var(--sea-blue));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--sea-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sea-blue);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-soft);
}

.step-item:hover .step-number {
  background: var(--sea-blue);
  color: var(--white);
  transform: scale(1.1);
}

.step-item h4 {
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== Testimonial ===== */
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-medium);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--sea-foam);
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sea-foam);
}

.testimonial-info h5 {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.testimonial-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== Pricing ===== */
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border-color: var(--sea-blue);
  background: linear-gradient(180deg, var(--sea-deep), var(--sea-blue));
  color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
  color: var(--white);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sun-yellow);
  color: var(--text-dark);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  text-align: center;
  margin-bottom: 8px;
}

.pricing-card .plan-desc {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card.featured .plan-desc {
  color: rgba(255, 255, 255, 0.7);
}

.price {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--sea-deep);
  margin-bottom: 4px;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card.featured .price span {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
  margin: 28px 0;
  padding: 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--sea-foam);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23088395' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card.featured .pricing-features li::before {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5c518' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.pricing-card .btn {
  width: 100%;
}

/* ===== News / Blog ===== */
.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-card-image img {
  transform: scale(1.06);
}

.news-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.news-date-badge .day {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sea-deep);
  line-height: 1;
  display: block;
}

.news-date-badge .month {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
}

.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sun-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.news-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-body h3 a {
  color: var(--text-dark);
}

.news-card-body h3 a:hover {
  color: var(--sea-blue);
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  flex: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-light);
}

.news-card-meta a {
  font-weight: 600;
  color: var(--sea-blue);
}

/* ===== Contact Form ===== */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  border: 2px solid var(--border-light);
  border-radius: 10px;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--sea-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(8, 131, 149, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== Contact Info ===== */
.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

.contact-info-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-medium);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sea-foam), var(--beach-sand));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--sea-blue);
}

.contact-info-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-content p,
.contact-info-content a {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--sea-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%230a4d68' d='M0,30 C360,0 720,60 1080,30 C1260,15 1380,25 1440,30 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top;
  background-size: cover;
  transform: rotate(180deg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .site-logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--sun-yellow);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  transition: fill var(--transition-fast);
}

.footer-social a:hover svg {
  fill: var(--sea-deep);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--sun-yellow);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sun-yellow);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--sun-yellow);
  padding-left: 8px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  stroke: var(--sun-yellow);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
  color: var(--sun-yellow);
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sea-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  z-index: 999;
  border: none;
  box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--sea-deep);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

/* ===== Page Transition ===== */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sea-deep);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.active {
  transform: translateY(0);
}

/* ===== Breadcrumb (generic) ===== */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.breadcrumb-nav a {
  color: var(--text-light);
}

.breadcrumb-nav a:hover {
  color: var(--sea-blue);
}

.breadcrumb-nav .separator {
  color: var(--border-light);
}

.breadcrumb-nav .current {
  color: var(--sea-blue);
  font-weight: 600;
}

/* ===== Tag / Badge ===== */
.tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--sea-foam);
  color: var(--sea-blue);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.tag-sun {
  background: rgba(245, 197, 24, 0.15);
  color: var(--sun-orange);
}

.tag-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-light);
}

/* ===== Divider ===== */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: 40px 0;
}

.divider-wave {
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,20 Q150,0 300,20 T600,20 T900,20 T1200,20' fill='none' stroke='%23e0dcd4' stroke-width='1'/%3E%3C/svg%3E") repeat-x center;
  margin: 40px 0;
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-reverse > :first-child {
  order: 2;
}

/* ===== Image Frame ===== */
.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.image-frame::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--sun-yellow);
  border-radius: 20px;
  z-index: -1;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Stats Counter ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--sea-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item h5 {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea-blue));
  border-radius: 24px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  position: relative;
}

/* ===== Logo Cloud ===== */
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
  opacity: 0.6;
}

.logo-cloud-item {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  transition: opacity var(--transition-fast);
}

.logo-cloud-item:hover {
  opacity: 1;
  color: var(--sea-blue);
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sea-blue), var(--sun-yellow));
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--sea-blue);
}

.timeline-item .timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sun-orange);
  margin-bottom: 6px;
}

.timeline-item h4 {
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== Accordion ===== */
.accordion-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.accordion-header:hover {
  color: var(--sea-blue);
}

.accordion-header .icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-header .icon::before,
.accordion-header .icon::after {
  content: '';
  position: absolute;
  background: var(--sea-blue);
  transition: transform var(--transition-fast);
}

.accordion-header .icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.accordion-header .icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.accordion-item.active .accordion-header .icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.accordion-body-inner {
  padding: 0 24px 24px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Table ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.data-table th {
  background: var(--sea-deep);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
}

.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: var(--sea-foam);
}

/* ===== Progress Bar ===== */
.progress-item {
  margin-bottom: 24px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.progress-bar {
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sea-blue), var(--sun-yellow));
  border-radius: 4px;
  width: 0;
  transition: width 1.5s ease;
}

/* ===== Gallery / Portfolio Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 77, 104, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
}

/* ===== Sidebar ===== */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.sidebar-widget h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sea-foam);
  position: relative;
}

.sidebar-widget h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--sun-yellow);
}

.sidebar-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-medium);
  font-size: 0.92rem;
}

.sidebar-list a:hover {
  color: var(--sea-blue);
}

.sidebar-list .count {
  background: var(--sea-foam);
  color: var(--sea-blue);
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== Article Content ===== */
.article-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-medium);
}

.article-content h2,
.article-content h3 {
  margin-top: 2em;
  margin-bottom: 0.8em;
}

.article-content p {
  margin-bottom: 1.5em;
}

.article-content img {
  border-radius: 12px;
  margin: 2em 0;
  box-shadow: var(--shadow-soft);
}

.article-content blockquote {
  border-left: 4px solid var(--sun-yellow);
  padding: 20px 30px;
  background: var(--beach-sand);
  border-radius: 0 12px 12px 0;
  margin: 2em 0;
  font-style: italic;
  color: var(--text-dark);
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5em;
  padding-left: 24px;
}

.article-content ul li,
.article-content ol li {
  margin-bottom: 8px;
  list-style: disc;
}

.article-content ol li {
  list-style: decimal;
}

/* ===== Article Meta ===== */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--sea-blue);
}

/* ===== Pagination (will be removed per requirements but styled) ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.pagination a {
  background: var(--white);
  color: var(--text-medium);
  box-shadow: var(--shadow-soft);
}

.pagination a:hover {
  background: var(--sea-blue);
  color: var(--white);
}

.pagination .current {
  background: var(--sea-blue);
  color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-container { grid-template-columns: repeat(2, 1fr); }
  .steps-container::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-reverse > :first-child { order: 0; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  
  .menu-toggle { display: flex; }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-medium);
    transform: translateY(-120%);
    transition: transform var(--transition-normal);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .main-nav.open {
    transform: translateY(0);
  }
  
  .main-nav > li {
    width: 100%;
  }
  
  .main-nav > li > a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    display: none;
    padding: 0 0 0 16px;
  }
  
  .main-nav > li.dropdown-open .dropdown-menu {
    display: block;
  }
  
  .header-cta .lang-switch { display: none; }
  .header-cta .btn { display: none; }
  
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 { grid-template-columns: 1fr; }
  
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 24px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .gallery-grid { grid-template-columns: 1fr; }
  
  .stats-grid { grid-template-columns: 1fr 1fr; }
  
  .steps-container { grid-template-columns: 1fr; }
  
  .contact-form { padding: 24px; }
  
  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stat h3 { font-size: 1.8rem; }
}

/* ===== Print ===== */
@media print {
  .site-header, .site-footer, .back-to-top, .page-transition { display: none !important; }
  body { background: white; color: black; }
}
