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

:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --secondary: #0ea5e9;
  --accent: #06b6d4;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-main: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --bg-header: rgba(255, 255, 255, 0.85);
  --bg-inverse: #0f172a;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --shadow-sm: 0 1px 2px 0 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-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --animation-speed: 2s;
}

[data-theme="dark"] {
  --bg-main: #0f172a;
  --bg-card: #1e293b;
  --text-dark: #f8fafc;
  --text-main: #cbd5e1;
  --text-light: #94a3b8;
  --border: #334155;
  --bg-header: rgba(15, 23, 42, 0.85);
  --bg-inverse: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
}

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

a:hover {
  color: var(--primary-dark);
}

/* Header & Nav */
header {
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
}

.mini-header {
  background: var(--bg-main);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.mini-header a {
  color: var(--primary);
  font-weight: 700;
  margin-left: 0.5rem;
  animation: alivePulse 3s infinite ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  z-index: 0; /* Lowered even further */
  text-shadow: 0 0 5px rgba(59, 130, 246, 0.2);
}

.mini-header a i {
  animation: ring 2s infinite ease-in-out;
}

@keyframes ring {
  0% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(15deg); }
  40% { transform: rotate(-15deg); }
  50% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

@keyframes alivePulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  background: var(--gradient-primary);
  padding: 2px;
}

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

.company-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.tagline {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  gap: 0.8rem;
  list-style: none;
  align-items: center;
}

nav a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  transition: var(--transition);
}

nav a:hover, 
nav a.active {
  background: rgba(59, 130, 246, 0.08);
  color: var(--primary) !important;
}

/* Dropdown */
.dropdown {
  position: relative;
}

/* Invisible bridge so mouse doesn't fall into gap on hover */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30px; /* Increased bridge height for stability */
  z-index: 1;
}

.dropdown-content {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transition: var(--transition);
  border: 1px solid var(--border);
  z-index: 3000; /* Higher than any header content */
}

.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%);
}

.dropdown-content a {
  padding: 1rem 1.5rem;
  display: block;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: var(--bg-main);
  color: var(--primary);
  padding-left: 2rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-inverse);
  overflow: hidden;
  padding: 4rem 2rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/goodcoolingHome.png') center/cover;
  opacity: 1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h2 {
  font-size: 4rem;
   color:var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-content h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.25rem;
  color:white;
  margin-bottom: 2.5rem;
  font-weight: 1000;
}

.hero-actions {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  gap: 1.5rem;
  z-index: 10;
}

@media (max-width: 768px) {
  .hero-actions {
    position: static;
    justify-content: center;
    margin-top: 2rem;
  }
}

.hero-content-contact{
  position: relative;
  color: var(--primary);
  z-index: 3;
  max-width: 1200px;
  max-height: 500px;
  animation: fadeUp 1s ease-out forwards;
  font-size: 24px;
  font-weight: 800;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 1rem;
  position: relative;
  overflow: hidden;
  animation: borderFlash 2s infinite;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -60%; }
  100% { left: 150%; }
}

@keyframes borderFlash {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: #fff;
  animation: none; /* Stop pulsing on hover for cleaner interaction */
}

.btn-alive {
  position: relative;
  overflow: hidden;
  animation: btnAlivePulse 2s infinite;
}

.btn-alive::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
  animation: shimmer 3s infinite;
}

@keyframes btnAlivePulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* Specific pulse color for secondary (white/transparent) buttons */
.btn-secondary.btn-alive {
  animation: btnAlivePulseWhite 2s infinite;
}

@keyframes btnAlivePulseWhite {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.btn-alive:hover {
  animation: none;
}
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

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

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

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-main);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service-card p {
  color: var(--text-light);
  transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

/* Features/Stats Section */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--gradient-primary);
  padding: 4rem;
  border-radius: 24px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

.stat-item h3 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-weight: 500;
  opacity: 0.9;
  font-size: 1.1rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

.check-list {
  list-style: none;
  margin-bottom: 2rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: serif;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--border);
}

.client-name {
  font-weight: 700;
  color: var(--text-dark);
}

.client-role {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: var(--bg-card);
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

summary {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  list-style: none;
  font-family: 'Outfit', sans-serif;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

details[open] summary::after {
  content: '−';
}

details p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  background: var(--bg-card);
  padding: 4rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
}

input,
textarea,
select {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--text-main);
  transition: var(--transition);
}

select option {
  background: var(--bg-card);
  color: var(--text-main);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: var(--bg-main);
}

/* Footer */
footer {
  background: var(--bg-card);
  color: var(--text-main);
  padding: 5rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.footer-links {
  list-style-type: circle;
  padding-left: .5rem;
  color: var(--text-light);
}

.footer-links li {
  margin-bottom: 0.5rem;
  cursor: pointer;


}

.footer-links a {
  color: var(--text-light);
}

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

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  border-radius: 10px 0 0 10px;
  border: 1px solid var(--border);
  background: var(--bg-main);
  color: var(--text-main);
  flex: 1;
}

.newsletter-form button {
  border-radius: 0 10px 10px 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-light);
}

/* Floating Socials */
.floating-socials {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 2000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}

.floating-socials .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 1.2rem;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}

.floating-socials .social-link:last-child {
  border-bottom: none;
}

.floating-socials .social-link:hover {
  background: var(--primary);
  color: #fff;
  width: 55px;
  /* Slight expansion on hover */
}

/* Hamburger & Theme Toggles */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {

  .stats-container,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 3rem;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    /* Solid background instead of transparent */
    flex-direction: column;
    padding: 0;
    gap: 0;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }

  .hamburger-btn {
    display: block;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    width: 100%;
    text-align: left;
  }

  nav a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  nav a:hover {
    background-color: rgba(59, 130, 246, 0.1);
    /* Light primary color background for full width */
    color: var(--primary);
  }

  nav a::after {
    display: none;
    /* Disable hover underline effect on mobile */
  }

  .dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    display: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding-left: 1rem;
    width: 100%;
    opacity: 1;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown:hover .dropdown-content {
    transform: none;
    /* Prevents desktop hover styles from shifting menu to left on mobile */
  }

  .dropdown-content a {
    border-bottom: none;
    padding: 0.8rem 2rem;
  }

  .dropdown-content a:hover {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding-left: 2rem;
    /* Keeps the padding consistent on mobile */
  }

  nav ul li:has(.btn-primary) {
    padding: 1rem 2rem;
  }

  nav ul li .btn-primary {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  nav ul li:has(.theme-toggle) {
    padding: 1rem 2rem;
    border-bottom: none;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    padding: 2rem;
  }
}

/* WhatsApp Special Style */
.floating-socials .whatsapp-special {
  background: #25D366 !important;
  color: #fff !important;
}

.floating-socials .whatsapp-special:hover {
  background: #128C7E !important;
  width: 55px !important;
}

/* Floating Contact (Left Side) */
.floating-contact {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 2001;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 12px 12px 0;
  overflow: hidden;
}

.floating-contact .contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 1.4rem;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-contact .contact-link:last-child {
  border-bottom: none;
}

.floating-contact .phone-link {
  background: #3b82f6; /* Primary Blue */
}

.floating-contact .phone-link i {
  animation: ring 2s infinite ease-in-out;
}

.floating-contact .whatsapp-link {
  background: #25D366; /* WhatsApp Green */
}

.floating-contact .whatsapp-link i {
  animation: alivePulse 2s infinite ease-in-out;
}

.floating-contact .contact-link:hover {
  width: 65px;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .floating-contact {
    top: auto;
    bottom: 20px;
    left: 10px;
    transform: none;
    flex-direction: row;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
  }
  
  .floating-contact .contact-link {
    width: 60px;
    height: 60px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
  }
  
  .floating-contact .contact-link:first-child {
    border-radius: 50px 0 0 50px;
  }
  
  .floating-contact .contact-link:last-child {
    border-radius: 0 50px 50px 0;
    border-right: none;
  }
  
  .floating-contact .contact-link:hover {
    width: 60px;
    padding-left: 0;
  }
}
/* Map Section */
.map-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.map-container:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
  transition: var(--transition);
}

.map-container:hover iframe {
  filter: grayscale(0);
}

.map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 10;
  max-width: 350px;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.map-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-weight: 700;
}

.map-overlay p {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.btn-sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .map-container {
    height: 400px;
  }
  
  .map-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    max-width: 100%;
    margin-top: 1rem;
  }
}

.floating-contact .map-link {
  background: #ea4335; /* Google Maps Red */
}



