/* ============================
   Bilgin Cup - Ana CSS
   Renk Paleti:
   Primary: #0EA5E9 (Gökyüzü Mavisi - Ege)
   Secondary: #0284C7 (Okyanus Mavisi)
   Accent:  #D4A853 (Sıcak Altın)
   Light:   #F0F9FF (Buz Mavisi)
   White:   #FFFFFF
   ============================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #0ea5e9;
  --primary-light: #38bdf8;
  --primary-dark: #0284c7;
  --primary-deeper: #0369a1;
  --accent: #d4a853;
  --accent-light: #e2c27c;
  --accent-dark: #b8913d;
  --secondary: #06b6d4;
  --dark: #0c4a6e;
  --dark-light: #164e63;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --light: #f0f9ff;
  --ice: #e0f2fe;
  --white: #ffffff;
  --border: #bae6fd;
  --border-light: #e0f2fe;
  --shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
  --shadow-lg: 0 10px 40px rgba(14, 165, 233, 0.15);
  --shadow-gold: 0 8px 25px rgba(212, 168, 83, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-sky: linear-gradient(135deg, #0ea5e9, #38bdf8, #7dd3fc);
  --gradient-ocean: linear-gradient(135deg, #0284c7, #0ea5e9);
  --gradient-hero: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.92),
    rgba(6, 182, 212, 0.85)
  );
  --glass: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(14, 165, 233, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======= PRELOADER ======= */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(14, 165, 233, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ======= NAVBAR ======= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.navbar.scrolled .navbar-brand {
  color: var(--dark);
}

.navbar-brand span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .nav-menu a {
  color: var(--text);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--accent) !important;
  color: var(--dark) !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 169, 81, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* ======= HERO SLIDER ======= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
  background: var(--gradient-hero);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}
.hero-scroll-indicator i {
  font-size: 1.2rem;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ======= BUTTONS ======= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 169, 81, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ======= SECTION STYLES ======= */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-dark .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* ======= ABOUT PREVIEW ======= */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-preview-img i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
}

.about-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview-img::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

.about-text .section-badge {
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.about-feature-item i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* ======= PRODUCT CARDS ======= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 165, 233, 0.3);
}

.product-card-img {
  height: 220px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-img i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.product-card:hover .product-card-img i {
  transform: scale(1.2);
  color: rgba(255, 255, 255, 0.5);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 24px;
}

.product-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.product-card-link:hover {
  color: var(--accent-dark);
  gap: 10px;
}

/* ======= STATS ======= */
.stats-section {
  background: var(--gradient-ocean);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-icon i {
  font-size: 1.5rem;
  color: var(--accent);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .suffix {
  font-size: 1.4rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* ======= WHY US ======= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.06),
    rgba(14, 165, 233, 0.12)
  );
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ======= REFERENCES CAROUSEL ======= */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: center;
}

/* ref-card removed — using .reference-card instead */

/* ======= CTA ======= */
.cta-section {
  background: var(--primary);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ======= FOOTER ======= */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-links a i {
  margin-right: 6px;
  font-size: 0.7rem;
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 4px;
  min-width: 16px;
}

.footer-newsletter {
  margin-top: 0;
}

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  padding: 10px 18px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-light);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--accent);
}

/* ======= PAGE HERO ======= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.page-hero .breadcrumb a {
  color: var(--accent);
}

/* ======= ABOUT PAGE ======= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-story-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mv-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card h3 i {
  color: var(--accent);
}

.mv-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ======= PRODUCT DETAIL ======= */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.product-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-img i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.product-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding: 10px 14px;
  background: var(--light);
  border-radius: var(--radius-sm);
}

.product-features .feature-item i {
  color: var(--primary);
  font-size: 0.8rem;
}

.related-products {
  margin-top: 60px;
}

/* ======= GALLERY ======= */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* gallery-filter-btn removed — using .filter-tab instead */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 165, 233, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--white);
}

/* ======= LIGHTBOX ======= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  padding: 20px;
  z-index: 10001;
}

.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}

/* ======= CONTACT LAYOUT (LiderZE Style) ======= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-cards-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.contact-mini-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-mini-card.full-width {
  grid-column: 1 / -1;
}
.contact-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.contact-mini-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.08),
    rgba(14, 165, 233, 0.15)
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.contact-mini-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}
.contact-mini-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-mini-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}
.contact-mini-card a {
  color: var(--text-light);
}
.contact-mini-card a:hover {
  color: var(--primary);
}

.contact-form-side {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-side h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-map {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ======= REFERENCES PAGE ======= */
.references-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reference-page-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.reference-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.reference-page-card .ref-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.08),
    rgba(212, 168, 83, 0.1)
  );
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.reference-page-card .ref-logo i {
  font-size: 2rem;
  color: var(--primary);
}

.reference-page-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.reference-page-card .ref-sector {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(14, 165, 233, 0.06);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 12px;
}

.reference-page-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ======= FLASH MESSAGES ======= */
.flash-message {
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flash-success {
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.flash-error {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.flash-info {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ======= ERROR PAGE ======= */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  text-align: center;
}

.error-content .error-code {
  font-size: 8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.error-content h2 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.error-content p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

/* ======= BACK TO TOP ======= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ======= PAGINATION ======= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.pagination a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination span.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination .disabled {
  opacity: 0.4;
  cursor: default;
}

.pagination .pagination-info {
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Honeypot hidden field */
.b-email-confirm {
  display: none !important;
}

/* ======= WhatsApp Button ======= */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.map-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* ======= Language Switch ======= */
.nav-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 50px;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-lang-switch:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}
.nav-lang-switch::after {
  display: none !important;
}
.navbar.scrolled .nav-lang-switch {
  background: rgba(14, 165, 233, 0.08) !important;
  border-color: var(--border);
  color: var(--primary) !important;
}

/* ======= Page Header ======= */
.page-header {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  text-align: center;
}
.page-header-sm {
  padding: 120px 0 40px;
}
.page-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.page-header .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb i {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ======= Filter Tabs ======= */
.filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: inherit;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ======= Footer Logo ======= */
.footer-logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span {
  color: var(--accent);
}

/* ======= Reference Placeholder ======= */
.reference-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  color: var(--text-light);
}
.reference-placeholder i {
  font-size: 2rem;
  opacity: 0.3;
}
.reference-placeholder span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ======= Reference Card ======= */
.reference-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  height: 100%;
}
.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.reference-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* ======= Contact Info Cards ======= */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.contact-info-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.contact-info-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}
.contact-info-card a:hover {
  color: var(--primary);
}

/* Footer contact list */
.footer-contact ul {
  list-style: none;
}
.footer-contact li {
  margin-bottom: 12px;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact li i {
  color: var(--accent);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}
.footer-contact a:hover {
  color: var(--accent);
}

/* Newsletter form */
.newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.newsletter-input-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
}
.newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-input-group button {
  background: var(--accent);
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  color: var(--dark);
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}
.newsletter-input-group button:hover {
  background: var(--accent-light);
}

/* ======= HERO SLIDE OVERLAY ======= */
.hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(12, 74, 110, 0.75),
    rgba(14, 165, 233, 0.55)
  );
  z-index: 1;
}

/* ======= PRODUCT DETAIL GRID ======= */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.product-detail-grid .product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-grid .product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-grid .product-detail-img i {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.3;
}
.product-detail-info h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.product-detail-info p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.product-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
  list-style: none;
}
.product-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.product-feature-list li i {
  color: var(--primary);
  font-size: 0.8rem;
}
.product-content {
  margin-top: 60px;
  padding: 40px;
  background: var(--light);
  border-radius: var(--radius-lg);
  line-height: 2;
}

/* ======= MISSION VISION GRID ======= */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ======= REFERENCES DETAIL GRID ======= */
.references-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.references-detail-grid .ref-sector-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--ice);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin: 8px 0;
}
.references-detail-grid .ref-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ======= CONTACT FORM ======= */
.contact-form-card {
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 40px;
}
.contact-form-card h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
  text-align: center;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
textarea.form-input {
  resize: vertical;
}
.form-group {
  margin-bottom: 16px;
}

/* ======= CONTACT SOCIAL LINKS ======= */
.contact-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* ======= GALLERY ITEM HOVER ======= */
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 74, 110, 0.5);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ======= CTA CONTENT ======= */
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-content .section-badge {
  background: rgba(255, 255, 255, 0.2);
}
.cta-content p {
  max-width: 600px;
  margin: 16px auto 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  font-size: 1.05rem;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ======= GALLERY GRID (Page) ======= */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ======= FRONTEND PAGINATION ======= */
.frontend-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.frontend-pagination a,
.frontend-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--white);
}
.frontend-pagination a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}
.frontend-pagination .active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.frontend-pagination .disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.frontend-pagination .pg-nav {
  font-size: 0.8rem;
}

/* ======= REFERENCES DETAIL GRID ======= */
.references-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.references-detail-grid .ref-sector-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--ice);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin: 8px 0;
}
.references-detail-grid .ref-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ======= CONTACT FORM ======= */
.contact-form-card {
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 40px;
}
.contact-form-card h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
  text-align: center;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
textarea.form-input {
  resize: vertical;
}
.form-group {
  margin-bottom: 16px;
}

/* ======= CONTACT SOCIAL LINKS ======= */
.contact-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* ======= GALLERY ITEM HOVER ======= */
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 74, 110, 0.5);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ======= CTA CONTENT ======= */
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-content .section-badge {
  background: rgba(255, 255, 255, 0.2);
}
.cta-content p {
  max-width: 600px;
  margin: 16px auto 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  font-size: 1.05rem;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ======= GALLERY GRID (Page) ======= */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ======= FRONTEND PAGINATION ======= */
.frontend-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.frontend-pagination a,
.frontend-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--white);
}
.frontend-pagination a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}
.frontend-pagination .active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.frontend-pagination .disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.frontend-pagination .pg-nav {
  font-size: 0.8rem;
  min-width: 36px;
  color: var(--text-muted);
  border-color: transparent;
  background: transparent;
}
.frontend-pagination .pg-nav:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

/* ======= FAQ / SSS SECTION ======= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: var(--shadow);
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.12);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  list-style: none;
  transition: var(--transition);
  user-select: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question span {
  flex: 1;
  padding-right: 16px;
}
.faq-question i {
  font-size: 0.75rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-question i {
  transform: rotate(180deg);
}
.faq-question:hover {
  color: var(--primary);
}
.faq-answer {
  padding: 0 24px 20px;
  animation: faqFadeIn 0.3s ease;
}
.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.9rem;
}
@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======= SEO CONTENT BLOCK ======= */
.seo-content-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.seo-content-block h2 {
  color: var(--dark);
}
.seo-content-block p {
  text-align: justify;
}
