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

/* CSS Custom Properties / Design System Tokens */
:root {
  --color-primary: #0066cc;
  --color-primary-dark: #0052a3;
  --color-accent: #00b4d8;
  --color-accent-light: #e0f7fa;
  --color-bg-light: #ffffff;
  --color-bg-tint: #f4f9fc;
  --color-text-dark: #1f2937;
  --color-text-muted: #4b5563;
  --color-text-light: #ffffff;
  --color-success: #10b981;
  --color-border: #e5e7eb;
  
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 40px rgba(0, 102, 204, 0.08);
  
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
  
  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset and Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-md);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary-dark);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-tint {
  background-color: var(--color-bg-tint);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Header & Navigation */
header {
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-primary);
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
}

.logo span {
  color: var(--color-primary-dark);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 550;
  color: var(--color-text-dark);
  font-size: 0.95rem;
}

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

.nav-cta {
  background-color: var(--color-primary);
  color: var(--color-text-light) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
}

.nav-cta:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-primary-dark);
  margin: 5px 0;
  transition: var(--transition-normal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.15);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
}

/* Hero Styles */
.hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  background: linear-gradient(135deg, #f4f9fc 0%, #eef6fb 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-tagline {
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: block;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  list-style: none;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}

.hero-features svg {
  width: 20px;
  height: 20px;
  fill: var(--color-success);
}

.hero-img-wrapper {
  position: relative;
  z-index: 2;
}

.hero-img-wrapper img {
  box-shadow: var(--shadow-lg);
  border: 8px solid #ffffff;
  border-radius: var(--border-radius-lg);
}

/* Feature Grid / Service Cards */
.section-header {
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-header p {
  font-size: 1.1rem;
}

.service-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 2rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.service-card-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 1rem 0;
}

.service-price span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.service-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
}

/* About Short Section */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.about-feature-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--color-primary-dark);
}

/* Booking & Form Section */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.booking-info {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-text-light);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-info h2 {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.booking-info h2::after {
  background-color: var(--color-accent);
}

.booking-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.booking-details-list {
  list-style: none;
  margin: 2.5rem 0;
}

.booking-details-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.booking-details-list svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

.booking-nap {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  font-size: 0.95rem;
}

.booking-nap strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.booking-form {
  padding: 3.5rem;
}

.booking-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background-color: var(--color-bg-tint);
  transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-light);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  display: none;
  font-weight: 550;
}

.form-status.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: block;
}

/* Brands Grid */
.brand-grid-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  margin-top: 3rem;
}

.brand-logo-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 90px;
  font-weight: 700;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.brand-logo-card:hover {
  border-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

/* Map Embed */
.map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #ffffff;
  height: 100%;
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
  background-color: #0d1e33;
  color: rgba(255, 255, 255, 0.7);
  padding: 4.5rem 0 2rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: var(--color-text-light);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 3px;
  background-color: var(--color-accent);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-logo {
  color: var(--color-text-light);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--color-accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* Pricing Page & Tables styling */
.pricing-overview-strip {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: 1.5rem 0;
  border-radius: var(--border-radius-md);
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.pricing-overview-strip h3 {
  color: var(--color-text-light);
  margin: 0;
}

.pricing-overview-strip p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 500;
}

/* Interactive Calculator Styles */
.calculator-box {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-premium);
  max-width: 800px;
  margin: 0 auto;
}

.calc-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.calc-result {
  background-color: var(--color-bg-tint);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 1px dashed var(--color-accent);
}

.calc-total {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0.5rem 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-grid-logos {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mobile-nav-toggle {
    display: block;
    z-index: 1100;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-light);
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.05);
    transition: var(--transition-normal);
    z-index: 1050;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
  }
  
  .nav-cta {
    display: inline-flex;
    margin-top: 1rem;
  }
  
  .mobile-nav-active .mobile-nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-nav-active .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-active .mobile-nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .booking-container {
    grid-template-columns: 1fr;
  }
  
  .booking-info {
    padding: 2rem;
  }
  
  .booking-form {
    padding: 2rem;
  }
  
  .calc-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .brand-grid-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

