/* ===== Root Variables ===== */
:root {
  --dark: #111827;
  --gray-dark: #374151;
  --gray: #6B7280;
  --blue: #2563EB;
  --white: #FFFFFF;
  --light-bg: #F9FAFB;
  --border: #E5E7EB;
  --shadow: 0 10px 40px rgba(17, 24, 39, 0.08);
  --shadow-hover: 0 20px 60px rgba(37, 99, 235, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gradient: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  --gradient-dark: linear-gradient(135deg, #111827 0%, #374151 100%);
}

/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* ===== Section Headers ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.logo span {
  color: var(--blue);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-dark);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--blue);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
  color: var(--white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--gradient-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #BFDBFE;
}

.hero-sub .dot {
  width: 8px;
  height: 8px;
  background: #60A5FA;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  height: 520px;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 28px;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-card-1 {
  top: 0;
  right: 0;
  width: 280px;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-card-2 {
  bottom: 80px;
  left: 0;
  width: 260px;
  animation: floatCard 6s ease-in-out infinite 1.5s;
}

.hero-card-3 {
  bottom: 0;
  right: 40px;
  width: 220px;
  animation: floatCard 6s ease-in-out infinite 3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.hero-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.hero-card .amount {
  font-size: 28px;
  font-weight: 700;
  color: #60A5FA;
}

/* ===== About Section ===== */
.about {
  background: var(--white);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: var(--gradient);
  aspect-ratio: 4/5;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--white);
  padding: 28px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.about-experience .year {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.about-experience .text {
  font-size: 13px;
  color: var(--gray);
  margin-top: 6px;
  font-weight: 500;
}

.about-content .section-tag {
  background: rgba(37, 99, 235, 0.1);
}

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content > p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.about-feature {
  padding: 24px;
  background: var(--light-bg);
  border-radius: 16px;
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: var(--white);
}

.about-feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.about-feature h4 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.about-feature p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* ===== Stats Section ===== */
.stats {
  background: var(--gradient-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #60A5FA 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* ===== Features Section ===== */
.features {
  background: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient);
  transform: rotate(-5deg) scale(1.1);
}

.feature-card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray);
  margin: 0;
}

/* ===== Work Process ===== */
.process {
  background: var(--white);
}

.process-wrapper {
  position: relative;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 20%, var(--blue) 80%, transparent 100%);
  z-index: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.process-step {
  text-align: center;
  padding: 20px;
}

.process-num {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 auto 24px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.process-step:hover .process-num {
  background: var(--gradient);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
}

.process-num::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.process-step h4 {
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
}

/* ===== Services Section ===== */
.services {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-img {
  height: 200px;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: rgba(255, 255, 255, 0.9);
}

.service-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.service-content {
  padding: 32px;
}

.service-content h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.service-content p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
}

.service-link:hover {
  gap: 14px;
}

/* ===== Booking Form Section ===== */
.booking {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 40%);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.booking-content {
  color: var(--white);
}

.booking-content .section-tag {
  background: rgba(37, 99, 235, 0.2);
  color: #BFDBFE;
}

.booking-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.booking-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.booking-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-point {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.booking-point .check {
  width: 28px;
  height: 28px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}

.booking-form {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.booking-form h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.booking-form .form-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: var(--light-bg);
  transition: var(--transition);
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-message {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 18px;
  display: none;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: block;
}

/* ===== FAQ Section ===== */
.faq {
  background: var(--white);
}

.faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-bg);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.faq-item.active {
  background: var(--white);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--blue);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  background: var(--gradient);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== Reviews Section ===== */
.reviews {
  background: var(--light-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.review-quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 60px;
  color: rgba(37, 99, 235, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FBBF24;
  font-size: 18px;
}

.review-text {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
}

.review-author h5 {
  font-size: 15px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.review-author span {
  font-size: 13px;
  color: var(--gray);
}

/* ===== Contact Section ===== */
.contact {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info {
  background: var(--gradient-dark);
  padding: 50px 40px;
  border-radius: 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info h3 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
}

.contact-info > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  position: relative;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #BFDBFE;
  flex-shrink: 0;
}

.contact-detail h5 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-detail p,
.contact-detail a {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

.contact-detail a:hover {
  color: #BFDBFE;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.contact-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}

.contact-socials a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form-box h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form-box .form-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}

.footer-socials a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--blue);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '→';
  opacity: 0;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
}

.footer-subscribe p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.12);
}

.subscribe-form button {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== Inner Page Header ===== */
.page-header {
  background: var(--gradient-dark);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
  position: relative;
}

.page-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 24px;
  color: #BFDBFE;
  position: relative;
}

.breadcrumb a {
  color: #BFDBFE;
}

.breadcrumb a:hover {
  color: var(--white);
}

/* ===== Legal Page Content ===== */
.legal-content {
  padding: 100px 0;
  background: var(--white);
}

.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-wrapper h2 {
  font-size: 28px;
  color: var(--dark);
  margin: 40px 0 16px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.legal-wrapper h2:first-child {
  margin-top: 0;
}

.legal-wrapper h3 {
  font-size: 19px;
  color: var(--gray-dark);
  margin: 24px 0 12px;
  font-weight: 600;
}

.legal-wrapper p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-wrapper ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-wrapper ul li {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-wrapper strong {
  color: var(--dark);
}

.legal-info-box {
  background: var(--light-bg);
  border-left: 4px solid var(--blue);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
}

.legal-info-box h4 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.legal-info-box p {
  font-size: 14px;
  margin: 0;
}

.legal-last-updated {
  background: rgba(37, 99, 235, 0.08);
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 32px;
  display: inline-block;
}

/* ===== Scroll Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .section-title { font-size: 34px; }
  .hero-wrapper,
  .about-wrapper,
  .booking-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { height: 400px; }
  .stats-wrapper { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .features-grid,
  .services-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .process-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-150%);
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
  }
  .nav-menu.active { transform: translateY(0); }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
  
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 24px; }
  .hero-visual { height: 300px; }
  .hero-card { padding: 18px; }
  .hero-card-1 { width: 200px; }
  .hero-card-2 { width: 180px; }
  .hero-card-3 { width: 160px; }
  
  .section { padding: 70px 0; }
  .section-title { font-size: 28px; }
  .section-header { margin-bottom: 40px; }
  
  .about-features { grid-template-columns: 1fr; }
  .about-experience { right: 20px; bottom: -20px; padding: 18px 22px; }
  .about-experience .year { font-size: 36px; }
  
  .features-grid,
  .services-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  
  .process-grid { grid-template-columns: 1fr; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .booking-form,
  .contact-form-box { padding: 28px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .page-header { padding: 130px 0 60px; }
  .page-header h1 { font-size: 34px; }
  
  .legal-wrapper h2 { font-size: 22px; }
  
  .back-to-top { width: 44px; height: 44px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 30px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .section-title { font-size: 24px; }
  .booking-content h2,
  .about-content h2 { font-size: 28px; }
}