:root{
  --bg-1: #f5f5f5;
  --card-bg: #ffffff;
  --accent: #0066cc;
  --accent-dark: #004d99;
  --accent-2: #1a1a1a;
  --muted: #666666;
  --text-dark: #1a1a1a;
  --text-light: #333333;
  --shadow: 0 2px 12px rgba(0,102,204,0.08);
  --shadow-lg: 0 8px 28px rgba(0,102,204,0.15);
  --shadow-xl: 0 12px 40px rgba(0,102,204,0.2);
  --glass: rgba(255,255,255,0.35);
  --radius-lg: 22px;
  --radius-md: 14px;
  --white: #ffffff;
  --light-gray: #f0f0f0;
  --dark-gray: #2a2a2a;
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* page background with subtle paper texture using layered gradients */
html,body{height:100%;margin:0}
body{
    background: var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  color:#07303b;
  font-size:16px;
  line-height:1.45;
  padding:28px;
}

/* central page container: keeps layout centered on wide screens */
.page{
  max-width:1200px;
  margin:0 auto;
}

/* Topbar */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:32px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
.brand{display:flex;align-items:center;gap:14px}
.logo-img{
  width:64px;
  height:64px;
  object-fit:contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0,102,204,0.2));
}
.logo-img:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(0,102,204,0.3));
}
.brand-name{
  font-weight:700;
  font-size:18px;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.3px;
}
.brand-sub{
  font-size:13px;
  color:var(--muted);
  font-weight:500;
  letter-spacing: 0.3px;
}

.nav{display:flex;gap:24px;align-items:center}
.nav a{color:var(--text-light);text-decoration:none;font-weight:600;font-size:15px;transition: color 0.3s ease;position:relative}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav a:hover {color: var(--accent)}
.nav a:hover::after {width: 100%}
.nav .nav-cta{padding:10px 18px;border-radius:10px;background:linear-gradient(135deg, var(--accent) 0%, #0088ff 100%);border:none;color:white;font-weight:700;transition: all 0.3s ease;box-shadow:0 4px 12px rgba(0,102,204,0.25)}
.nav .nav-cta::after {display:none}
.nav .nav-cta:hover {transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,102,204,0.35)}

.menu-toggle{display:none;gap:6px;flex-direction:column;justify-content:center;align-items:center;width:44px;height:44px;border-radius:10px;border:1px solid #ddd;background:#fff;cursor:pointer}
.menu-toggle .bar{width:20px;height:2px;background:#111;display:block;transition:transform .3s ease, opacity .3s ease}
.menu-toggle[aria-expanded="true"] .bar:nth-child(1){transform:translateY(8px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] .bar:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] .bar:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* Whatsapp CTA top-right for desktops */
.cta-whatsapp{
  display:inline-flex;
  gap:8px;align-items:center;
  padding:10px 14px;border-radius:12px;
  background: var(--accent);
  color:white;text-decoration:none;font-weight:700;
  box-shadow:var(--shadow);
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0088ff 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(0,102,204,0.25);
  position: relative;
  overflow: hidden;
}
.btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,102,204,0.35);
}
.btn.primary:hover::before {
  left: 100%;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn.ghost:hover {
  background: var(--accent);
  color: white;
}



/* New HERO layout */
.new-hero {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 60px;
  min-height: 600px;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #0a1929;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #0a1929 0%, #0066cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.hero-cta {
  font-size: 1.1rem;
  padding: 18px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, #0088ff 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,102,204,0.3);
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,102,204,0.4);
}
.hero-cta:hover::before {
  left: 100%;
}
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: 100%;
  max-width: 480px;
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(3,10,22,0.12);
  object-fit: cover;
}

.hero-bg {
  position: relative;
  padding: 36px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 28px rgba(3,10,22,0.12);
}
.hero-bg .hero-left {
  background: var(--glass);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
}

.hero-about {background-image: url('images/about.jpg');}
.hero-housekeeping {background-image: url('images/housekeeping.jpg');}
.hero-housecleaning {background-image: url('images/deepcleening.jpg'); background-position: left center;}
.hero-contact {background-image: url('images/property-1.jpeg');}

.lottie-intro{position:fixed;inset:0;z-index:1000;background:#fff;display:grid;place-items:center;opacity:1;transition:opacity .4s ease}
.lottie-intro.hidden{opacity:0;pointer-events:none}
.intro-active{overflow:hidden}
.lottie-intro>svg{width:min(80vw,520px);height:auto;display:block;max-width:100vw;max-height:100vh;}

/* New WHY section */
.new-why {
  margin: 48px 0 32px 0;
}
.why-header {
  text-align: center;
  margin-bottom: 32px;
}
.why-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}
.why-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}
.why-features {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-top: 18px;
}
.why-feature {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.why-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #00aaff 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}
.why-feature:hover::before {
  transform: scaleX(1);
}
.why-icon-box {
  font-size: 2.4rem;
  line-height: 1;
}
.why-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}
.why-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* New SERVICES section */
.new-services {
  margin: 60px 0;
}
.services-header {
  text-align: center;
  margin-bottom: 40px;
}
.services-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}
.services-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.service-card {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #00aaff 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  font-size: 2.4rem;
  line-height: 1;
}
.service-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}
.service-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* New BENEFITS section */
.new-benefits {
  margin: 60px 0;
}
.benefits-header {
  text-align: center;
  margin-bottom: 40px;
}
.benefits-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}
.benefits-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}
.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 24px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: #d0d0d0;
}
.benefit-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.benefit-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}
.benefit-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* New TESTIMONIALS section */
.new-testimonials {
  margin: 60px 0;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}
.testimonials-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #d0d0d0;
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
}
.testimonial-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.author-title {
  font-size: 0.85rem;
  color: var(--muted);
}

/* New FAQ section */
.new-faq {
  margin: 60px 0;
}
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}
.faq-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.question-text {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}
.faq-toggle {
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.3s ease;
}
.faq-answer {
  padding: 0 24px 24px 24px;
  display: none;
}
.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* New PROCESS section */
.new-process {
  margin: 60px 0;
}
.process-header {
  text-align: center;
  margin-bottom: 40px;
}
.process-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}
.process-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}
.process-content {
  display: flex;
  gap: 48px;
  align-items: center;
}
.process-steps {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}
.step-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.process-animation {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* New CONTACT section */
.new-contact {
  display: flex;
  gap: 32px;
  margin: 40px 0;
}
.contact-main {
  flex: 2;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-main h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-main .muted {
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-main .btn {
  margin-bottom: 8px;
}
.contact-side {
  flex: 1;
  background: linear-gradient(180deg,rgba(3,10,22,0.02),transparent);
  border-radius: 14px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  font-size: 1.05rem;
  color: #07303b;
}

/* New Footer */
.new-footer {
  margin-top: 60px;
  padding: 48px 0 24px 0;
  border-top: 2px solid #e5e5e5;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

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

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}

.footer-contact h4,
.footer-social h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(188, 24, 136, 0.25);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(188, 24, 136, 0.35);
  color: white;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive rules for new layout */
@media (max-width: 900px) {
  .new-hero {
    flex-direction: column;
    gap: 24px;
  }
  .hero-right {
    max-width: 100%;

  }
  .hero-bg {
    padding: 20px;
    border-radius: 18px;
  }
  .hero-bg .hero-left {
    padding: 18px;
    max-width: 100%;
  }
  
  .why-features {
    flex-direction: column;
    gap: 18px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .process-content {
    flex-direction: column;
    gap: 32px;
  }
  .new-contact {
    flex-direction: column;
    gap: 18px;
  }
}

/* WHY section */
.why{margin-top:28px}
.why h2{font-size:20px;margin-bottom:6px}
.why .muted{color:var(--muted);margin-bottom:14px}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:10px}
.why-card{background:var(--card-bg);padding:16px;border-radius:14px;box-shadow:var(--shadow)}
.why-card .icon{font-size:22px;margin-bottom:8px}

/* Contact section */
.contact{display:flex;gap:14px;margin-top:26px;align-items:stretch}
.contact-card{flex:1;background:var(--card-bg);padding:18px;border-radius:14px;box-shadow:var(--shadow)}
.contact-info{min-width:220px;background:linear-gradient(180deg,rgba(3,10,22,0.02),transparent);padding:18px;border-radius:14px;display:flex;flex-direction:column;gap:12px;justify-content:center}

/* Footer */
.site-footer{display:flex;justify-content:space-between;align-items:center;margin-top:30px;padding-top:18px;border-top:1px solid rgba(3,10,22,0.03);color:var(--muted)}

/* Responsive rules */
@media (max-width:1100px){
  .hero{grid-template-columns:1fr 320px}
}
@media (max-width:880px){
  body{padding:18px}
  .hero{grid-template-columns:1fr;gap:16px; }
  .panels{grid-auto-flow:column;grid-auto-columns:minmax(160px,1fr);overflow-x:auto;padding-bottom:6px}
  .panels .panel{min-width:200px}
  .br-desktop{display:none}
  .cta-whatsapp{padding:8px 10px}
  .brand-sub{display:none}
  .why-grid{grid-template-columns:1fr}
  .contact{flex-direction:column}
  .hero-title{margin-top: 0px;}
  .heroImage{width: 100%; transform:translate3d(0px,0px,0px)!important;}
  .hero-tagline{margin-top: 0px; margin-bottom: 0px;}
  .topbar{ margin-bottom: 10px; padding-top: 5px;}
  /* Show hamburger on mobile */
  .menu-toggle{display:flex; z-index: 999;}
  
  /* Full-screen sliding panel nav */
  .nav{
    position: fixed;
    top: 0;
    right: 0;
    width: 89%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%);
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 40px 20px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  
  .nav.is-open{
    transform: translateX(0);
  }
  
  .nav a{
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #0f0f0f;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
  }
  
  .nav a:hover{
    background: rgba(255, 255, 255, 0.1);
    padding-left: 28px;
  }
  
  .nav a.nav-cta{
    background: linear-gradient(135deg, #000000 0%, #003308 100%);
    color: #fff;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
  }
  
  .nav a.nav-cta:hover{
    background: linear-gradient(135deg, #00e6ff 0%, #00aadd 100%);
    padding-left: 20px;
  }
  
  /* Backdrop behind mobile nav */
  .nav-backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    z-index: 998;
    backdrop-filter: blur(2px);
  }
  
  body.menu-open .nav-backdrop{
    opacity: 1;
    visibility: visible;
  }
  
  body.menu-open{
    overflow: hidden;
  }
  
  /* Footer responsive */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-tagline {
    max-width: 100%;
  }
}
@media (max-width:420px){
  h1{font-size:20px}
  .hero-card{padding:20px;border-radius:16px}
  .logo{width:46px;height:46px}
  .btn.primary{padding:10px 12px}
  
  .footer-logo {
    width: 48px;
    height: 48px;
  }
}


.tagline-other{
  color: var(--text-dark);
  font-weight: 500;
  /* shaddow */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mt-60{
  margin-top: 60px;
}

/* Contact Page Styling */
.contact-hero {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.contact-methods {
  padding: 80px 20px;
  background: #f8f9fa;
}

.contact-methods-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-methods-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.contact-methods-subtitle {
  font-size: 16px;
  color: #666;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-method-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.contact-method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 102, 204, 0.15);
  border-color: #0066cc;
}

.contact-method-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.contact-method-card:hover .contact-method-icon {
  transform: scale(1.15) rotate(5deg);
}

.contact-method-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.contact-method-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-method-link {
  display: inline-block;
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border-bottom: 2px solid #0066cc;
}

.contact-method-link:hover {
  background: rgba(0, 102, 204, 0.1);
  color: #0052a3;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
}

.contact-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  animation: slideInLeft 0.6s ease;
}

.contact-cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
  animation: slideInLeft 0.6s ease 0.1s both;
}

.contact-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideInLeft 0.6s ease 0.2s both;
}

.contact-cta-buttons .btn {
  flex: 1;
  min-width: 160px;
}

.contact-cta-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  animation: slideInRight 0.6s ease;
}

.info-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.info-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.info-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* Scroll Animation Styles */
.scroll-animate,
.scroll-animate-card,
.scroll-animate-header {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-card {
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-header {
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.is-visible,
.scroll-animate-card.is-visible,
.scroll-animate-header.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Contact Page */
@media (max-width: 768px) {
  .contact-cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-cta-info {
    grid-template-columns: 1fr;
  }
  
  .contact-methods-header h2 {
    font-size: 28px;
  }
  
  .contact-cta-content h2 {
    font-size: 28px;
  }
  
  .contact-cta-buttons {
    flex-direction: column;
  }
  
  .contact-cta-buttons .btn {
    width: 100%;
  }

  .btn.primary{
    width: 80%;
  }

  .btn.ghost{
    width: 80%;
  }
}