:root {
  --primary-color: #0F172A; /* Deep Navy */
  --secondary-color: #2563EB; /* Bright Blue */
  --accent-color: #38BDF8; /* Light Blue for hovers */
  --text-main: #0F172A; /* Dark text for light mode */
  --text-muted: #475569; /* Gray text for paragraphs */
  --bg-color: #FFFFFF; /* White background */
  --card-bg: #F8FAFC; /* Off-white for cards */
  --card-border: #E2E8F0;
  --font-main: 'Inter', sans-serif;
  --transition: all 0.3s ease-in-out;
}

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

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

/* Typography */
h1, h2, h3, h4 {
  color: var(--text-main);
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 2rem;
  text-align: center;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

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

/* Floating Action Buttons */
.fab-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

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

.fab-call {
  background-color: var(--secondary-color);
  color: #ffffff;
}

.fab:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Section 1: Hero */
.hero {
  min-height: 100vh;
  display: flex;
  padding: 8rem 5% 4rem;
  position: relative;
  align-items: center;
  background: linear-gradient(to bottom right, #f8fafc, #ffffff);
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.trust-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.trust-badge h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

/* Section 2: Marquee */
.marquee-container {
  width: 100%;
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-weight: 600;
  font-size: 1.1rem;
}

.marquee-content span {
  margin: 0 3rem;
  color: #ffffff;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section 3: Bento Box About */
.about {
  padding: 8rem 5%;
  background-color: #ffffff;
}

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

.bento-box {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.box-1 {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box-1 h3 {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.box-2 {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.box-2 h3 {
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
}

.box-2 p {
  color: #e2e8f0;
  font-weight: 500;
  margin-top: 1rem;
}

.box-3 {
  grid-column: span 1;
  grid-row: span 2;
  padding: 0;
  border: none;
}

.box-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.box-4 {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--primary-color);
  color: #ffffff;
}

.box-4 h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.box-4 ul {
  list-style: none;
}

.box-4 li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  color: #e2e8f0;
}

.box-4 li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Section 4: Services */
.services {
  padding: 8rem 5%;
  background-color: #f8fafc;
}

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

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.know-more {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.know-more::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.service-card:hover .know-more::after {
  width: 100%;
}

/* Section 5: Gallery */
.gallery {
  padding: 8rem 5%;
  background-color: #ffffff;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }

/* Section 6: FAQ */
.faq {
  padding: 8rem 5%;
  max-width: 900px;
  margin: 0 auto;
}

details {
  background-color: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

details:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

details[open] {
  border-left: 4px solid var(--secondary-color);
  background-color: #f8fafc;
}

summary {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

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

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

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

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

/* Section 7: Footer */
.footer {
  background-color: var(--primary-color);
  padding: 5rem 5% 2rem;
  color: #f8fafc;
}

.footer-content {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
}

.map-container {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-info {
  flex: 1;
}

.footer-info h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.footer-info > p {
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}

.hours-table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #ffffff;
}

.contact-details p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #cbd5e1;
}

.contact-details i {
  color: var(--accent-color);
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding-top: 8rem;
    height: auto;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 4rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .trust-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    width: 90%;
    max-width: 350px;
  }

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

  .box-1, .box-2, .box-3, .box-4 {
    grid-column: span 1;
    grid-row: auto;
  }

  .box-3 {
    height: 350px;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .masonry-grid {
    grid-template-columns: 1fr;
  }
}
