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

/* --- CUSTOM VARIABLES --- */
:root {
  --primary: #0f4c81; /* Deep Ocean Blue */
  --primary-light: #1c75bc; /* Sky Blue */
  --secondary: #00a896; /* Ice Teal */
  --accent: #f77f00; /* Warm Orange for heat & attention */
  --dark: #121824; /* Rich Dark Navy */
  --light: #f4f7f6; /* Ice Soft Gray */
  --white: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 4px rgba(15, 76, 129, 0.05);
  --shadow-md: 0 10px 25px rgba(15, 76, 129, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 76, 129, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

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

button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}

header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

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

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

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

header.scrolled .logo img {
  height: 44px;
}

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

.logo-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--secondary);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-light);
  transition: var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-light);
  font-weight: 600;
}

.btn-nav-contact {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(15, 76, 129, 0.2);
}

.btn-nav-contact:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(28, 117, 188, 0.3);
  color: var(--white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
  background: none;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(28, 117, 188, 0.12) 0%, rgba(15, 76, 129, 0.02) 50%, var(--light) 100%),
              linear-gradient(135deg, rgba(0, 168, 150, 0.05) 0%, var(--light) 100%);
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

/* Dynamic background glowing shapes */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.hero::before {
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background-color: rgba(28, 117, 188, 0.2);
  animation: float-slow 15s infinite alternate;
}

.hero::after {
  bottom: 10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background-color: rgba(0, 168, 150, 0.15);
  animation: float-slow 12s infinite alternate-reverse;
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.8s ease-out;
}

.hero-centered .hero-cta {
  justify-content: center;
}

.hero-centered .quick-stats {
  justify-content: center;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(15, 76, 129, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(15, 76, 129, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(28, 117, 188, 0.35);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid rgba(15, 76, 129, 0.15);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: rgba(15, 76, 129, 0.03);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quick-stats {
  display: flex;
  gap: 36px;
  border-top: 1px solid rgba(15, 76, 129, 0.1);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease-out;
}

.hero-bg-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(28, 117, 188, 0.15) 0%, transparent 70%);
  z-index: -1;
}

/* Glassmorphic floating card in Hero */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  animation: float 6s ease-in-out infinite;
}

.hero-glass-card:hover {
  transform: translateY(-5px) rotateX(2deg) rotateY(2deg);
}

.logo-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.logo-large img {
  height: 110px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.logo-large h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  text-transform: uppercase;
}

.logo-large p {
  color: var(--secondary);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-card-action {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 76, 129, 0.08);
  width: 100%;
}

.btn-whatsapp-card {
  background-color: #25D366;
  color: var(--white);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  transition: var(--transition);
}

.btn-whatsapp-card:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  color: var(--white);
}

/* --- SECTION DECORATORS --- */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-tag {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 76, 129, 0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 76, 129, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(15, 76, 129, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.05) rotate(5deg);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link svg {
  transition: var(--transition);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 76, 129, 0.08);
  animation: float 5s ease-in-out infinite alternate;
}

.about-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 168, 150, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.about-badge-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.about-illustration {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.1) 0%, rgba(0, 168, 150, 0.05) 100%);
  border: 2px dashed rgba(15, 76, 129, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  text-align: center;
}

.about-illustration svg {
  color: var(--primary);
  margin-bottom: 20px;
}

.about-illustration h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.about-illustration p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 168, 150, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- BANNER CTA --- */
.banner-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' stroke='rgba(255,255,255,0.03)' stroke-width='2' fill='none'/%3E%3C/svg%3E") repeat;
  opacity: 0.5;
}

.banner-cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.banner-cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.banner-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.banner-cta .btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 168, 150, 0.4);
}

.banner-cta .btn-primary:hover {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* --- CONTACT & INFO SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 76, 129, 0.03);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(15, 76, 129, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-card:hover .info-card-icon {
  background-color: var(--primary);
  color: var(--white);
}

.info-card-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  word-break: break-all;
}

.info-card-content a {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.info-card-content a:hover {
  color: var(--primary-light);
}

.map-wrapper {
  margin-top: 10px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 76, 129, 0.05);
  height: 250px;
}

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

/* Glassmorphic Contact Form */
.contact-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 76, 129, 0.03);
}

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-container p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--light);
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input:focus {
  background-color: var(--white);
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(28, 117, 188, 0.1);
}

textarea.form-input {
  height: 120px;
  resize: none;
}

.submit-btn {
  width: 100%;
  background-color: #25D366;
  color: var(--white);
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* Form success message */
.form-status {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
  font-weight: 500;
}

.form-status.success {
  display: block;
  background-color: rgba(0, 168, 150, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(0, 168, 150, 0.2);
}

.form-status.error {
  display: block;
  background-color: rgba(247, 127, 0, 0.1);
  color: var(--accent);
  border: 1px solid rgba(247, 127, 0, 0.2);
}

/* --- FOOTER --- */
footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 45px;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo-title {
  color: var(--white);
}

.footer-brand p {
  max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
}

.footer-contact-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-3px);
}

/* --- FLOATING ACTIONS --- */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-phone {
  background-color: var(--primary-light);
  display: none; /* Shown only on mobile screens */
}

.float-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  right: 66px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes float-slow {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
  100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes pulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 168, 150, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 168, 150, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 168, 150, 0); }
}

/* --- MEDIA QUERIES (RESPONSIVENESS) --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .about-grid, .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .quick-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    display: none; /* Hide the large visual illustration on mobile to save scroll distance */
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
  header.scrolled .logo img {
    height: 36px;
  }
  .logo-title {
    font-size: 1.1rem;
  }
  .logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 60px 24px;
    gap: 40px;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    z-index: 998;
  }
  .nav-links.active {
    left: 0;
  }
  header.scrolled .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
  }
  .btn-nav-contact {
    display: none;
  }
  .float-phone {
    display: flex;
  }
  
  /* Compact Spacings for Mobile */
  .section {
    padding: 40px 0; /* Reduced from 100px */
  }
  .section-header {
    margin-bottom: 30px; /* Reduced from 60px */
  }
  .section-title {
    font-size: 1.85rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  
  /* Compact Service Cards */
  .services-grid {
    gap: 16px;
  }
  .service-card {
    padding: 24px 20px;
  }
  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
  .service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  .service-card p {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }
  
  /* Compact About Features */
  .about-features {
    gap: 16px;
    margin-bottom: 0px;
  }
  .feature-item {
    gap: 10px;
  }
  .feature-text h4 {
    font-size: 0.95rem;
  }
  .feature-text p {
    font-size: 0.82rem;
  }
  
  /* Compact Contact Cards & Maps */
  .contact-info-cards {
    gap: 12px;
  }
  .info-card {
    padding: 16px 20px;
    gap: 14px;
  }
  .info-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .info-card-icon svg {
    width: 20px;
    height: 20px;
  }
  .info-card-content h4 {
    font-size: 0.92rem;
  }
  .info-card-content p {
    font-size: 0.85rem;
  }
  .map-wrapper {
    height: 180px; /* Reduced from 250px */
    margin-top: 5px;
  }
  
  /* Compact Form Container */
  .contact-form-container {
    padding: 24px;
  }
  .contact-form-container h3 {
    font-size: 1.3rem;
  }
  .contact-form-container p {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }
  .form-group {
    margin-bottom: 14px;
  }
  .form-input {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  textarea.form-input {
    height: 90px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 36px;
  }
  header.scrolled .logo img {
    height: 32px;
  }
  .logo-title {
    font-size: 1rem;
  }
  .logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.5px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .quick-stats {
    flex-direction: column;
    gap: 20px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

.wp-modal{

position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);

display:flex;
justify-content:center;
align-items:center;

opacity:0;
pointer-events:none;

transition:.3s;

z-index:9999;

backdrop-filter:blur(6px);

}

.wp-modal.active{

opacity:1;
pointer-events:auto;

}

.wp-box{

width:90%;
max-width:420px;

background:#fff;

padding:30px;

border-radius:18px;

text-align:center;

position:relative;

}

.wp-box h2{

margin-bottom:10px;

}

.wp-box p{

margin-bottom:20px;

}

.wp-box input{

width:100%;

padding:14px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

margin-bottom:20px;

}

.wp-box button{

width:100%;

padding:15px;

background:#25D366;

color:#fff;

border:none;

border-radius:10px;

font-size:16px;

font-weight:bold;

cursor:pointer;

}

#closeWpModal{

position:absolute;

right:18px;

top:10px;

font-size:30px;

cursor:pointer;

}
