/* ===== GLOBAL STYLES & VARIABLES ===== */
:root {
  --primary: #F8FAFC;
  /* White / Light Slate */
  --secondary: #F1F5F9;
  /* Off-white */
  --accent: #0891B2;
  /* Stronger Cyan for visibility on white */
  --accent-hover: #0E7490;
  --text-main: #0F172A;
  /* Deep Slate for text */
  --text-muted: #475569;
  /* Medium Slate */
  --success: #059669;
  --danger: #DC2626;

  --glass-bg: rgba(255, 255, 255, 0.7);
  /* White translucent */
  --glass-border: rgba(15, 23, 42, 0.1);
  /* Darker border for light glass */
  --glass-cyan: rgba(6, 182, 212, 0.08);

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-main);
  background-color: #FFFFFF;
  /* Pure White */
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #000000;
  /* Pure Black headers */
}

a {
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== MODERN GLASSMORPHISM ===== */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  /* Lighter shadow */
}

.glass-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.1);
}

/* ===== PREMIUM COMPONENTS ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent) 0%, #0891B2 100%);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 14px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
  color: #fff !important;
}

.btn-glass {
  background: rgba(15, 23, 42, 0.05);
  /* Darker glass for white bg */
  backdrop-filter: blur(5px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--text-main);
  border-radius: 50px;
  padding: 14px 35px;
  font-weight: 600;
}

.btn-glass:hover {
  background: rgba(15, 23, 42, 0.08);
  color: var(--accent);
  border-color: var(--accent);
}

/* Navbar */
.navbar-glass {
  padding: 25px 0;
  transition: all 0.5s ease;
}

.navbar-glass.scrolled {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-link {
  font-weight: 600;
  color: #475569 !important;
  /* Darker link color */
  margin: 0 15px;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
}

.navbar-brand {
  color: #0F172A !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  background: radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 40%);
  background-color: #FFFFFF;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #000000 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--glass-cyan);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: 50px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
}

.floating-card {
  position: absolute;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* ===== SECTIONS LAYOUT ===== */
section {
  padding: 120px 0;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #000000;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 4rem;
}

/* Bento Grid Services */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-item {
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.bento-item-large {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    text-align: center;
  }

  .btn-primary-custom {
    width: 100%;
    justify-content: center;
  }
}

/* Cards & Elements */
.icon-box-modern {
  width: 64px;
  height: 64px;
  background: var(--glass-cyan);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.feature-list-modern {
  list-style: none;
  padding: 0;
}

.feature-list-modern li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.feature-list-modern i {
  color: var(--success);
}

/* Footer */
.footer-modern {
  background: #F8FAFC;
  padding: 100px 0 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  color: var(--text-muted);
}

.footer-link-modern {
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.footer-link-modern:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #0F172A;
}

.social-icon:hover {
  background: var(--accent);
  color: #fff;
}

/* Ticker */
.ticker-modern {
  background: #F1F5F9;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  padding: 15px 0;
}

/* Review Cards */
.review-card-modern {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stars-modern i {
  color: #FBBF24;
  font-size: 0.9rem;
}

/* Utility */
.text-accent {
  color: var(--accent) !important;
}

.bg-glass {
  background: var(--glass-bg);
}

.border-glass {
  border-color: var(--glass-border);
}

.page-header {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  text-align: center;
  color: white;
}

.page-header h1 {
  color: white !important;
}

.max-w-700 {
  max-width: 700px;
}

.italic-text {
  font-style: italic;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}