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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 5rem 0;
}

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

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a1a2e;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Header / Nav ---- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #1a1a2e;
  color: #fff;
  transition: box-shadow 0.3s, background 0.3s;
}

#header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  background: rgba(26,26,46,0.97);
}

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

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: #ddd;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #f5a623;
}

.nav-phone {
  display: none;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  background: #f5a623;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: background 0.2s;
  white-space: nowrap;
}

.phone-btn:hover {
  background: #e0951a;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
  margin-left: 0.5rem;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: scale(1.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---- Hero ---- */
#hero {
  padding: 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f3460 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwKSIvPjwvc3ZnPg==');
  opacity: 0.5;
}

#hero .container {
  position: relative;
  z-index: 1;
  padding: 6rem 0 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: #f5a623;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1.15rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #f5a623;
  color: #1a1a2e;
  border-color: #f5a623;
}

.btn-primary:hover {
  background: #e0951a;
  border-color: #e0951a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Stats Strip */
.stats-strip {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.stat-icon {
  font-size: 1.3rem;
  margin-bottom: 0.1rem;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  color: #aaa;
}

/* ---- Why Us ---- */
#why {
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: #1a1a2e;
}

.feature-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ---- Pricing ---- */
#pricing {
  background: #fff;
}

.pricing-note {
  text-align: center;
  max-width: 700px;
  margin: -1.5rem auto 2rem;
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: #f0f0f0;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  color: #555;
}

.tab-btn:hover {
  background: #e5e5e5;
}

.tab-btn.active {
  background: #1a1a2e;
  color: #fff;
}

.tab-content {
  display: none;
}

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

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

.singles-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-color: #ddd;
}

.pricing-card.popular {
  border-color: #f5a623;
  box-shadow: 0 4px 20px rgba(245,166,35,0.15);
}

.pricing-card.popular:hover {
  box-shadow: 0 8px 30px rgba(245,166,35,0.2);
}

.pricing-card.best-value {
  border-color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(26,26,46,0.1);
}

.pricing-card.best-value:hover {
  box-shadow: 0 8px 30px rgba(26,26,46,0.15);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5a623;
  color: #1a1a2e;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card.best-value .badge {
  background: #1a1a2e;
  color: #fff;
}

.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #1a1a2e;
}

.pricing-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.pricing-card .btn {
  width: 100%;
  font-size: 0.9rem;
  padding: 0.7rem;
}

.pricing-footer {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* ---- Reviews ---- */
#reviews {
  background: #f8f9fa;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #666;
}

.reviews-rating .stars {
  color: #f5a623;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.reviews-rating a {
  color: #f5a623;
  text-decoration: underline;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

.review-stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}

.reviewer-name {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.8rem;
  color: #999;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #eee;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
  background: #1a1a2e;
  border-color: #1a1a2e;
  color: #fff;
}

.carousel-btn.prev {
  left: -22px;
}

.carousel-btn.next {
  right: -22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.carousel-dots button.active {
  background: #1a1a2e;
  border-color: #1a1a2e;
}

/* ---- Contact ---- */
#contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

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

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #1a1a2e;
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: #555;
}

.contact-item a {
  color: #f5a623;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-sub {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.2rem;
}

.contact-map iframe {
  border-radius: 12px;
  width: 100%;
}

.map-directions {
  display: inline-block;
  margin-top: 0.75rem;
  color: #f5a623;
  font-weight: 600;
  font-size: 0.95rem;
}

.map-directions:hover {
  text-decoration: underline;
}

/* ---- Footer ---- */
footer {
  background: #1a1a2e;
  color: #ccc;
}

footer .container {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.2s;
  color: #fff;
}

.social-links a:hover {
  background: #f5a623;
  color: #1a1a2e;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: #aaa;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #f5a623;
}

.footer-contact li:last-child {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 1rem 0;
  text-align: center;
}

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

.footer-location {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #666;
}

/* ---- Gallery ---- */
#gallery {
  background: #f8f9fa;
}

.gallery-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-card {
  min-width: 100%;
  padding: 1.5rem;
}

.gallery-placeholder {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  font-size: 5rem;
  color: rgba(245, 166, 35, 0.3);
  border: 2px solid rgba(245, 166, 35, 0.15);
  position: relative;
  overflow: hidden;
}

.gallery-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwKSIvPjwvc3ZnPg==');
  opacity: 0.3;
  pointer-events: none;
}

.gallery-card .gallery-caption {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-top: 1rem;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #eee;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-btn:hover {
  background: #1a1a2e;
  border-color: #1a1a2e;
  color: #fff;
}

.gallery-btn.prev {
  left: 4px;
}

.gallery-btn.next {
  right: 4px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.gallery-dots button.active {
  background: #f5a623;
  border-color: #f5a623;
}

/* ---- Icons ---- */
.stat-icon i {
  font-size: 1.3rem;
}

.feature-icon i {
  font-size: 2.5rem;
  color: #f5a623;
}

.contact-icon i {
  font-size: 1.5rem;
  color: #1a1a2e;
}

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-col:first-child {
    grid-column: 1 / -1;
  }

  .gallery-placeholder {
    height: 260px;
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #1a1a2e;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-phone {
    display: block;
  }

  .nav-phone .phone-link {
    display: inline-flex;
    align-items: center;
    background: #f5a623;
    color: #1a1a2e;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-top: 0.5rem;
  }

  .phone-btn,
  .whatsapp-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .stats-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

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

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

  .tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .carousel-btn {
    display: none;
  }

  .review-card {
    padding: 1.5rem;
  }

  .gallery-btn {
    display: none;
  }

  .gallery-placeholder {
    height: 220px;
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  #hero h1 {
    font-size: 1.7rem;
  }

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