/* ===================================
   INTERNET BY GAO - Premium Cream Theme
   Authorized AIS 3BB Fibre3 Dealer
   =================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Cream-White Palette */
  --cream-50: #FFFDF7;
  --cream-100: #FFF9EC;
  --cream-200: #FFF3D6;
  --cream-300: #FFEAB8;
  --cream-400: #FFE09A;
  --cream-500: #F5D68B;
  --cream-600: #D4A84A;

  /* Warm Neutral */
  --warm-50: #FDFBF7;
  --warm-100: #F8F4EE;
  --warm-200: #F0EAE0;
  --warm-300: #E0D6C8;
  --warm-400: #C4B5A0;
  --warm-500: #A89880;
  --warm-600: #8C7C66;

  /* Accent - Warm Gold */
  --gold-400: #D4A84A;
  --gold-500: #C49A3C;
  --gold-600: #A88030;

  /* Text */
  --text-primary: #2D2418;
  --text-secondary: #5C4D3C;
  --text-muted: #8A7A68;
  --text-light: #B8A890;

  /* Functional */
  --white: #FFFFFF;
  --success: #4CAF50;
  --hot-red: #E85D3A;
  --best-green: #2E8B57;
  --line-green: #06C755;
  --fb-blue: #1877F2;
  --netflix-red: #E50914;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 36, 24, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 36, 24, 0.08);
  --shadow-lg: 0 8px 40px rgba(45, 36, 24, 0.12);
  --shadow-xl: 0 16px 60px rgba(45, 36, 24, 0.16);
  --shadow-glow: 0 0 30px rgba(212, 168, 74, 0.2);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-medium: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Font */
  --font-main: 'Noto Sans Thai', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  background-color: var(--cream-50);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 74, 0.15);
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(255, 253, 247, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(212, 168, 74, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-primary);
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--gold-500);
  background: rgba(212, 168, 74, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(212, 168, 74, 0.3);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 74, 0.4);
}

.btn-icon {
  font-size: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 253, 247, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-link:hover {
  color: var(--gold-500);
  background: rgba(212, 168, 74, 0.1);
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.btn-call-mobile,
.btn-line-mobile {
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-fast);
}

.btn-call-mobile {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
}

.btn-line-mobile {
  background: var(--line-green);
  color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  overflow: hidden;
  background: linear-gradient(180deg,
      var(--cream-100) 0%,
      var(--cream-50) 50%,
      var(--warm-100) 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 74, 0.25), transparent 70%);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 214, 139, 0.3), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -7s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196, 154, 60, 0.15), transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 168, 74, 0.12);
  border: 1px solid rgba(212, 168, 74, 0.25);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-600);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-primary);
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

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

.stat-number {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--warm-300);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--line-green), #05B04A);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 17px;
  font-weight: 700;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
}

.btn-primary-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 199, 85, 0.4);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--warm-300);
  border-radius: var(--radius-full);
  font-size: 17px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-outline-lg:hover {
  border-color: var(--gold-400);
  background: rgba(212, 168, 74, 0.08);
  transform: translateY(-3px);
}

.hero-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 60px 20px;
  background: var(--white);
  border-top: 1px solid var(--warm-200);
  border-bottom: 1px solid var(--warm-200);
}

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

.trust-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-medium);
}

.trust-item:hover {
  background: var(--cream-100);
  transform: translateY(-4px);
}

.trust-icon {
  font-size: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(212, 168, 74, 0.2));
}

.trust-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.trust-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 20px;
}

.section-alt {
  background: var(--warm-100);
}

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

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(212, 168, 74, 0.15), rgba(196, 154, 60, 0.1));
  border: 1px solid rgba(212, 168, 74, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.tag-netflix {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(229, 9, 20, 0.05));
  border-color: rgba(229, 9, 20, 0.2);
  color: var(--netflix-red);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== PACKAGE CARDS ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--warm-200);
  transition: all var(--transition-medium);
  position: relative;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}

/* Card Badges */
.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  background: var(--hot-red);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(232, 93, 58, 0.3);
}

.badge-best {
  background: var(--best-green);
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

/* Card Hot */
.card-hot {
  border-color: rgba(232, 93, 58, 0.3);
}

.card-hot:hover {
  border-color: var(--hot-red);
  box-shadow: 0 8px 40px rgba(232, 93, 58, 0.15);
}

/* Card Best */
.card-best {
  border-color: rgba(46, 139, 87, 0.3);
}

.card-best:hover {
  border-color: var(--best-green);
  box-shadow: 0 8px 40px rgba(46, 139, 87, 0.15);
}

.card-header {
  padding: 28px 28px 20px;
  text-align: center;
  border-bottom: 1px solid var(--warm-200);
  background: linear-gradient(180deg, var(--cream-100), var(--white));
}

.speed-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(212, 168, 74, 0.12);
  border: 1px solid rgba(212, 168, 74, 0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.speed-fast {
  background: rgba(46, 139, 87, 0.1);
  border-color: rgba(46, 139, 87, 0.2);
  color: var(--best-green);
}

.speed-ultra {
  background: rgba(148, 103, 189, 0.1);
  border-color: rgba(148, 103, 189, 0.2);
  color: #7B4BB3;
}

.price-block {
  margin-bottom: 4px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-vat {
  font-size: 12px;
  color: var(--text-light);
}

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

.feature-list {
  margin-bottom: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all var(--transition-fast);
}

.btn-card {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 168, 74, 0.3);
}

.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 74, 0.4);
}

.btn-hot {
  background: linear-gradient(135deg, var(--hot-red), #D14A2B);
  box-shadow: 0 4px 15px rgba(232, 93, 58, 0.3);
}

.btn-hot:hover {
  box-shadow: 0 6px 20px rgba(232, 93, 58, 0.4);
}

.btn-best {
  background: linear-gradient(135deg, var(--best-green), #237847);
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.btn-best:hover {
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

/* CCTV Badge */
.cctv-badge {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* Entertainment Badge */
.ent-badge {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* Netflix Badge */
.netflix-badge {
  font-size: 15px;
  font-weight: 700;
  color: var(--netflix-red);
  margin-bottom: 8px;
}

.card-netflix {
  border-color: rgba(229, 9, 20, 0.15);
}

.card-netflix:hover {
  border-color: rgba(229, 9, 20, 0.3);
}

.card-netflix .card-header {
  background: linear-gradient(180deg, #FFF5F5, var(--white));
}

/* ===== FIBRELAN SECTION ===== */
.fibrelan-group {
  margin-bottom: 48px;
}

.fibrelan-group:last-child {
  margin-bottom: 0;
}

.fibrelan-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--warm-200);
}

.fibrelan-icon {
  font-size: 28px;
}

.fibrelan-speed {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-600);
  padding: 4px 14px;
  background: rgba(212, 168, 74, 0.12);
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 168, 74, 0.2);
}

.speed-ultra-text {
  background: rgba(148, 103, 189, 0.1);
  border-color: rgba(148, 103, 189, 0.2);
  color: #7B4BB3;
}

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

.fibrelan-card {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition-medium);
}

.fibrelan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}

.fibrelan-card-max {
  border-color: rgba(148, 103, 189, 0.2);
  background: linear-gradient(180deg, #FAF8FF, var(--white));
}

.fibrelan-card-max:hover {
  border-color: #7B4BB3;
  box-shadow: 0 8px 40px rgba(148, 103, 189, 0.15);
}

.room-count {
  font-size: 56px;
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 8px;
}

.fibrelan-card-max .room-count {
  color: #7B4BB3;
}

.room-count span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.fibrelan-price {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.fibrelan-price span {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.btn-fibrelan {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 168, 74, 0.3);
}

.btn-fibrelan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 74, 0.4);
}

.btn-fibrelan-max {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #9467BD, #7B4BB3);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(148, 103, 189, 0.3);
}

.btn-fibrelan-max:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(148, 103, 189, 0.4);
}

/* ===== TERMS SECTION ===== */
.section-terms {
  background: var(--warm-100);
}

.terms-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--warm-200);
  max-width: 800px;
  margin: 0 auto;
}

.terms-list li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.terms-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.section-contact {
  background: linear-gradient(180deg, var(--cream-50), var(--cream-100));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--warm-200);
  transition: all var(--transition-medium);
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-300);
}

.contact-info-block {
  margin-bottom: 28px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
}

.contact-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-link {
  color: var(--gold-600);
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--gold-400);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-contact-call {
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 168, 74, 0.3);
}

.btn-contact-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 74, 0.4);
}

.btn-contact-line {
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  background: var(--line-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-contact-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.btn-contact-fb {
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  background: var(--fb-blue);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.btn-contact-fb:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.provider-info {
  margin-bottom: 24px;
}

.provider-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 4px;
}

.provider-company {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.provider-address {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.disclaimer-box {
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 20px;
}

.disclaimer-box p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-primary);
  color: var(--warm-400);
  padding: 48px 20px 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .logo-icon {
  font-size: 32px;
}

.footer-brand-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream-300);
  letter-spacing: 1px;
}

.footer-brand-sub {
  display: block;
  font-size: 12px;
  color: var(--warm-500);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  font-size: 13px;
  color: var(--warm-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--cream-300);
}

.footer-bottom {
  text-align: center;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--warm-500);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 16px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--warm-600);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
}

.float-call {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  animation: floatBounce 3s ease-in-out infinite;
}

.float-line {
  background: var(--line-green);
  animation: floatBounce 3s ease-in-out 0.5s infinite;
}

.float-btn:hover {
  transform: scale(1.15);
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--warm-300);
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  z-index: 900;
  font-family: var(--font-main);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--gold-400);
  color: var(--white);
  border-color: var(--gold-400);
  transform: translateY(-3px);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fibrelan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    height: 36px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .btn-call {
    display: none;
  }

  .terms-card {
    padding: 24px;
  }

  .section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary-lg,
  .btn-outline-lg {
    width: 100%;
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .fibrelan-grid {
    grid-template-columns: 1fr;
  }

  .fibrelan-title {
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
  }

  .price-amount {
    font-size: 40px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .back-to-top {
    bottom: 16px;
    left: 16px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {

  .navbar,
  .floating-cta,
  .back-to-top,
  .hero-bg-shapes {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 20px;
  }

  .section {
    padding: 20px;
  }

  .package-card {
    break-inside: avoid;
  }
}
