/*
 * Vision Web Studios - Core Stylesheet
 * Premium, Luxury, Highly Animated Dark Theme Digital Agency
 */

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

/* --- CSS Variables --- */
:root {
  --primary: #1699F7;
  --primary-glow: rgba(22, 153, 247, 0.4);
  --secondary: #0B1622;
  --bg: #081018;
  --card-bg: rgba(16, 26, 38, 0.65);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover-border: rgba(22, 153, 247, 0.3);
  --text: #ffffff;
  --text-secondary: #b9c2ce;
  --accent: #1699F7;
  --accent-gradient: linear-gradient(135deg, #1699F7 0%, #0052D4 100%);
  --accent-gradient-hover: linear-gradient(135deg, #0052D4 0%, #1699F7 100%);
  --dark-gradient: linear-gradient(180deg, #0B1622 0%, #081018 100%);
  --glow-gradient: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(22, 153, 247, 0.15) 0%, transparent 60%);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #101A26;
  border: 2px solid var(--bg);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
p { color: var(--text-secondary); font-size: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* --- Global Layout & Utility --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Custom Cursor */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  display: none;
}
.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  display: none;
}
@media (pointer: fine) {
  .custom-cursor, .custom-cursor-dot { display: block; }
}

/* Mouse hover cursor enlargement */
.custom-cursor.hovered {
  width: 40px;
  height: 40px;
  background-color: rgba(22, 153, 247, 0.1);
  border-color: var(--primary);
}

/* Glassmorphism Class */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--card-border);
  box-shadow: var(--glass-shadow);
}

/* Mouse Hover Glow Effect Card */
.glow-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  transition: border-color 0.3s ease;
}
.glow-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--glow-gradient);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.glow-card:hover::before {
  opacity: 1;
}
.glow-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: 0 0 25px rgba(22, 153, 247, 0.15);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(22, 153, 247, 0.3);
}
.btn-primary:hover {
  background: var(--accent-gradient-hover);
  box-shadow: 0 6px 20px rgba(22, 153, 247, 0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* --- Navigation Header --- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition-slow);
  padding: 1.5rem 0;
}
header.scrolled {
  padding: 0.8rem 0;
  background: rgba(8, 16, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

/* Nav Menu */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
nav ul li {
  position: relative;
}
nav ul li a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}
nav ul li a:hover, nav ul li a.active {
  color: var(--text);
}
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
nav ul li a:hover::after, nav ul li a.active::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(11, 22, 34, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 1rem 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 100;
}
nav ul li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  padding: 0.6rem 1.5rem;
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.dropdown-menu li a:hover {
  background: rgba(22, 153, 247, 0.1);
  color: var(--primary);
}
.dropdown-menu li a::after {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  width: 28px;
  height: 2px;
  background-color: #fff;
  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(5px, -6px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  background: linear-gradient(rgba(8, 16, 24, 0.82), rgba(8, 16, 24, 0.82)),
              url('../images/hero-bg.jpg') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  background: var(--primary-glow);
  filter: blur(150px);
  top: 25%; left: 10%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
/* --- Hero Split Layout --- */
.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-left {
  text-align: left;
}
.hero-left h1 {
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-left p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.hero-right {
  display: flex;
  justify-content: flex-end;
}
.hero-form-card {
  width: 100%;
  max-width: 460px;
  background: rgba(22, 153, 247, 0.12);
  border: 2px solid #1699F7;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 35px rgba(22, 153, 247, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero-form-card h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 1.5rem;
  text-align: left;
}
.hero-form-card .form-control {
  border: 1px solid #1699F7;
  background: rgba(8, 16, 24, 0.4);
}
.hero-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hero-form-card button[type="submit"] {
  background: #0B1622;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-form-card button[type="submit"]:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.hero-btns {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.badge-item i {
  font-size: 1.25rem;
  color: var(--primary);
}
.badge-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Background Particle Overlay */
.particles-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
}

/* --- Brand Logo Grid --- */
.logo-section {
  background: var(--secondary);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
}
.logo-item img {
  max-width: 120px;
  height: auto;
  opacity: 0.4;
  filter: grayscale(100%) brightness(200%);
  transition: var(--transition);
}
.logo-item img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

/* --- Section Headers --- */
.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
}
.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--card-border);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.stat-card {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.service-card {
  padding: 2.5rem;
  z-index: 2;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(22, 153, 247, 0.1);
  border: 1px solid rgba(22, 153, 247, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}
.service-card h3 {
  margin-bottom: 1rem;
}
.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.service-card:hover .service-icon {
  background: var(--primary);
  border-color: var(--primary);
}
.service-card:hover .service-icon i {
  color: #fff;
  transform: rotateY(180deg);
}
.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
}
.service-link i {
  font-size: 0.8rem;
  transition: var(--transition);
}
.service-link:hover i {
  transform: translateX(5px);
}

/* --- Tech Stack Tabs --- */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(22, 153, 247, 0.2);
}
.tech-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  width: 100%;
}
.tech-grid.active {
  display: grid;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.tech-item i {
  font-size: 2.5rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.tech-item span {
  font-size: 0.9rem;
  font-weight: 500;
}
.tech-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}
.tech-item:hover i {
  color: var(--primary);
  filter: drop-shadow(0 0 10px rgba(22, 153, 247, 0.5));
}

/* --- Portfolio Grid --- */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}
.portfolio-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  display: none;
}
.portfolio-item.show {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.portfolio-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(8, 16, 24, 0.95) 0%, rgba(8, 16, 24, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-overlay span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.portfolio-overlay h3 {
  margin-bottom: 1rem;
}
.portfolio-actions {
  display: flex;
  gap: 1rem;
}
.portfolio-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: var(--transition);
}
.portfolio-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
.pricing-card {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(22, 153, 247, 0.15);
  transform: scale(1.03);
}
.pricing-badge {
  background: var(--accent-gradient);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 1rem;
}
.package-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.package-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}
.package-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.package-delivery {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: 500;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}
.pricing-card ul li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-card ul li i {
  color: var(--primary);
}

/* --- Working Process Timeline --- */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}
.process-step {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
}
.process-step:nth-child(even) {
  flex-direction: row-reverse;
}
.process-step::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  border: 4px solid var(--primary);
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 10px rgba(22, 153, 247, 0.5);
}
.process-content {
  width: 45%;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}
.process-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(22, 153, 247, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

/* --- Testimonials --- */
.testimonials-slider {
  overflow: hidden;
  padding: 2rem 0;
}
.testimonial-card {
  padding: 2.5rem;
  z-index: 2;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.reviewer-name h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.reviewer-name span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.review-rating {
  color: #ffb703;
  margin-bottom: 1rem;
  display: flex;
  gap: 2px;
}
.review-text {
  font-style: italic;
  font-size: 0.95rem;
}

/* --- Hosting / SEO Plans Tables --- */
.compare-container {
  overflow-x: auto;
  margin-bottom: 4rem;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  background: var(--card-bg);
  min-width: 700px;
}
.compare-table th, .compare-table td {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.compare-table th {
  background: rgba(11, 22, 34, 0.8);
  font-family: var(--font-heading);
  color: #fff;
}
.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.compare-table td i.fa-check-circle {
  color: var(--primary);
  font-size: 1.1rem;
}
.compare-table td i.fa-times-circle {
  color: #ef476f;
  font-size: 1.1rem;
}

/* --- FAQ Accordion --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}
.faq-question:hover h3 {
  color: var(--primary);
}
.faq-toggle-icon {
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-toggle-icon::before, .faq-toggle-icon::after {
  content: "";
  position: absolute;
  background-color: var(--text-secondary);
  transition: var(--transition);
}
.faq-toggle-icon::before {
  top: 11px; left: 4px; right: 4px; height: 2px;
}
.faq-toggle-icon::after {
  left: 11px; top: 4px; bottom: 4px; width: 2px;
}
.faq-item.active .faq-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item.active .faq-toggle-icon::before {
  background-color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-answer p {
  padding-top: 1rem;
  font-size: 0.95rem;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}
.blog-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  z-index: 2;
}
.blog-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog-info {
  padding: 2rem;
}
.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.blog-meta span i {
  color: var(--primary);
  margin-right: 0.4rem;
}
.blog-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.blog-info h3:hover {
  color: var(--primary);
}

/* --- Contact & Forms --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(22, 153, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.25rem;
}
.contact-info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.contact-info-content p, .contact-info-content a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.contact-form-container {
  padding: 3rem;
  border-radius: var(--border-radius-lg);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(22, 153, 247, 0.25);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  cursor: pointer;
  user-select: none;
}
.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}
.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.92) contrast(1.2);
}

/* --- Booking Popup Modal --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 16, 24, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  position: relative;
  transform: translateY(50px);
  transition: var(--transition-slow);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover {
  color: #fff;
}

/* --- Floating Action Buttons (Bottom Right) --- */
.floating-actions {
  position: fixed;
  bottom: 2rem; right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}
.float-whatsapp { background-color: #25d366; }
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
.float-call { background-color: var(--primary); }
.float-call:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(22, 153, 247, 0.4); }
.float-chat { background-color: #101a26; border: 1px solid rgba(255,255,255,0.08); }
.float-chat:hover { transform: scale(1.1); background-color: #1a293b; }
.float-totop {
  background-color: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.float-totop.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-totop:hover { transform: scale(1.1); }

/* --- Footer --- */
footer {
  background: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  margin-bottom: 1.5rem;
}
.footer-logo img {
  height: 48px;
  width: auto;
}
.footer-text {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 30px; height: 2px;
  background: var(--primary);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.footer-links li a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.newsletter-form .form-control {
  border-radius: 30px 0 0 30px;
}
.newsletter-form .btn {
  border-radius: 0 30px 30px 0;
  padding: 0 1.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-bottom p {
  font-size: 0.85rem;
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.footer-legal-links a:hover {
  color: var(--primary);
}

/* --- Internal Page Inner Hero / Banner --- */
.inner-hero {
  padding: 10rem 0 5rem 0;
  background: radial-gradient(circle at 50% 100%, rgba(22, 153, 247, 0.06) 0%, transparent 60%), #081018;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 1rem;
  justify-content: center;
}
.breadcrumbs a:hover {
  color: var(--primary);
}

/* --- Loading Screen --- */
.loader-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-logo {
  height: 60px;
  width: auto;
  margin-bottom: 2rem;
  animation: pulse 1.5s infinite ease-in-out;
}
.loader-bar-bg {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--primary);
  border-radius: 10px;
  transition: width 0.2s ease-out;
}

/* --- Keyframe Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { transform: scale(0.98); opacity: 0.8; }
  50% { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(0.98); opacity: 0.8; }
}

/* --- Responsiveness Media Queries --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 0;
  }
  header.scrolled {
    padding: 0.7rem 0;
  }
  .menu-toggle {
    display: flex;
  }
  nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(8, 16, 24, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--card-border);
    padding: 6rem 2rem 2rem 2rem;
    transition: var(--transition-slow);
    z-index: 1000;
  }
  nav.active {
    right: 0;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0 1rem;
    display: none;
  }
  nav ul li.active-dropdown .dropdown-menu {
    display: flex;
  }
  .header-btn {
    display: none;
  }
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-left {
    text-align: center;
  }
  .hero-left h1 {
    margin-bottom: 1.5rem;
  }
  .hero-left p {
    text-align: center;
  }
  .hero-right {
    justify-content: center;
  }
  .badge-item {
    align-items: center;
    text-align: center;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .floating-actions {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.5rem;
  }
  .float-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .process-timeline::before {
    left: 20px;
  }
  .process-step {
    flex-direction: row !important;
    justify-content: flex-start;
    margin-bottom: 3rem;
  }
  .process-step::after {
    left: 20px;
    transform: translateX(-50%);
  }
  .process-content {
    width: calc(100% - 40px);
    margin-left: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}
