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

:root {
  --primary-red: #8B0000;
  --primary-blue: #0A1B3F;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-blue);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: var(--primary-red);
  color: var(--white);
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  gap: 10px;
}

.btn:hover {
  background-color: #6d0000;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

/* Navbar */
.navbar-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}

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

.logo-icon {
  background-color: var(--primary-red);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  border-radius: 4px;
}

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

.logo-brand {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.logo-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-red);
  letter-spacing: 1px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar-links a {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s ease;
  font-size: 15px;
}

.navbar-links a:hover, .navbar-links a.active {
  color: var(--primary-red);
}

.navbar-links a.btn-contact {
  color: var(--white);
}

.navbar-links a.btn-contact:hover, .navbar-links a.btn-contact.active {
  color: var(--white);
  background-color: #6d0000;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-mobile-call {
  display: none; /* hidden on desktop as desktop has links */
  padding: 8px 15px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  color: var(--primary-blue);
  font-size: 24px;
}

/* Footer */
.footer {
  background-color: var(--primary-blue);
  color: #e2e8f0;
  padding-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

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

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 300px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--primary-red);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #cbd5e1;
  font-size: 15px;
}

.footer-bottom {
  background-color: #061129;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}

/* Utilities */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.page-header {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Home Page */
.hero-section {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 60px 0;
}

.hero-subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #e2e8f0;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.intro-section {
  padding: 100px 0;
  background-color: var(--white);
}

.intro-text h2 { font-size: 2.5rem; margin-bottom: 10px; }
.intro-text .lead { font-size: 1.2rem; color: var(--primary-red); font-weight: 600; margin-bottom: 30px; }
.intro-text p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 20px; }

.features-list { margin-top: 30px; }
.features-list li { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 500; margin-bottom: 15px; color: var(--primary-blue); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-lg); }

/* About Page */
.about-content { padding: 60px 0; background-color: var(--white); }
.section-title { font-size: 2.2rem; margin-bottom: 25px; position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 60px; height: 3px; background-color: var(--primary-red); }
.about-text-block p { margin-bottom: 20px; font-size: 1.1rem; color: var(--text-light); line-height: 1.8; }
.about-img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-lg); }

.mission-vision-section { padding: 80px 0; background-color: var(--bg-light); }
.mv-card { background-color: var(--white); padding: 50px 40px; border-radius: 8px; box-shadow: var(--shadow); text-align: center; border-bottom: 4px solid var(--primary-red); transition: transform 0.3s ease; }
.mv-card:hover { transform: translateY(-10px); }
.mv-icon { width: 80px; height: 80px; background-color: rgba(139, 0, 0, 0.1); color: var(--primary-red); border-radius: 50%; margin: 0 auto 25px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.mv-card h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary-blue); }
.mv-card p { color: var(--text-light); font-size: 1.1rem; font-style: italic; line-height: 1.7; }

/* Services Page */
.services-section { padding: 80px 0; background-color: var(--white); }
.service-card { padding: 40px 30px; background-color: var(--bg-light); border-radius: 8px; text-align: center; transition: all 0.3s ease; border: 1px solid var(--border-color); }
.service-card:hover { background-color: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.service-icon { width: 70px; height: 70px; background-color: var(--primary-blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: background-color 0.3s ease; font-size: 28px; }
.service-card:hover .service-icon { background-color: var(--primary-red); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--text-dark); }
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* Projects Page */
.projects-section { padding: 80px 0; background-color: var(--bg-light); }
.project-card { background-color: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s ease; border-left: 5px solid var(--primary-red); }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-card-inner { padding: 35px 30px; }
.project-name { color: var(--primary-blue); font-size: 1.4rem; margin-bottom: 15px; line-height: 1.3; }
.project-detail.location { display: flex; align-items: center; gap: 8px; color: var(--text-light); margin-bottom: 25px; font-size: 1rem; }
.project-metrics { display: flex; justify-content: space-between; border-top: 1px solid var(--border-color); padding-top: 20px; }
.metric { display: flex; align-items: center; gap: 12px; }
.metric-icon { color: var(--primary-blue); background: rgba(10, 27, 63, 0.05); padding: 8px; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.metric-label { display: block; font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.metric-value { display: block; font-weight: 700; color: var(--text-dark); font-size: 1.1rem; }

@media (max-width: 768px) {
  .menu-icon { display: block; }
  .btn-mobile-call { display: block; }
  .navbar-links { position: absolute; top: 80px; left: 0; right: 0; background-color: var(--white); flex-direction: column; padding: 30px 20px; box-shadow: 0 10px 15px rgba(0,0,0,0.1); gap: 20px; display: none; align-items: center; border-top: 1px solid var(--border-color); }
  .navbar-links.active { display: flex; }
  .navbar-links a { font-size: 1.1rem; width: 100%; text-align: center; }
  .navbar-links a.btn-contact { width: 100%; max-width: 300px; padding: 15px; margin-top: 10px; }
  .hero-section { background-attachment: scroll; padding: 100px 20px; min-height: 70vh; }
  .hero-title { font-size: 2.2rem; line-height: 1.2; margin-bottom: 15px; }
  .hero-subtitle { font-size: 1.2rem; margin-bottom: 10px; }
  .hero-tagline { font-size: 1.1rem; margin-bottom: 30px; }
  .hero-actions { flex-direction: column; width: 100%; align-items: center; gap: 15px; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-contact li { justify-content: center; text-align: left; }
  .social-links { justify-content: center; }
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-links a:hover {
  background-color: var(--primary-red);
  transform: translateY(-3px);
}

/* Feature Boxes */
.features-section {
  padding: 80px 0;
  background-color: var(--white);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-box {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}
.f-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.feature-box h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}
.feature-box p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}
.section-header {
  margin-bottom: 50px;
}
.text-center {
  text-align: center;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stars {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.review-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.7;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}
.client-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 50%;
  font-size: 1.2rem;
}
.client-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}
.client-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Contact Page Styles */
.contact-section { padding: 60px 0; background-color: var(--white); }
.contact-info { padding-right: 40px; }
.contact-info h2, .contact-form-container h2 { font-size: 2.2rem; margin-bottom: 15px; color: var(--primary-blue); }
.contact-info > p { margin-bottom: 40px; color: var(--text-light); font-size: 1.1rem; }
.contact-card { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }
.c-icon { font-size: 1.8rem; background: var(--bg-light); padding: 15px; border-radius: 8px; color: var(--primary-red); }
.contact-card h4 { font-size: 1.2rem; margin-bottom: 5px; color: var(--text-dark); }
.contact-card p { color: var(--text-light); line-height: 1.5; margin-bottom: 0; }

.contact-form-container { background: var(--bg-light); padding: 40px; border-radius: 12px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 6px; font-family: inherit; font-size: 1rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(10, 27, 63, 0.1); }
.btn-full { width: 100%; padding: 15px; font-size: 1.1rem; margin-top: 10px; }

.map-section { padding: 0; }
.map-placeholder { width: 100%; height: 400px; background-color: #e2e8f0; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-weight: 600; font-size: 1.2rem; }

/* Booking Section */
.booking-section { padding: 80px 0; background: linear-gradient(135deg, var(--primary-blue), #1e3a8a); color: var(--white); text-align: center; }
.booking-container { max-width: 800px; margin: 0 auto; }
.booking-container h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 15px; }
.booking-container p { font-size: 1.1rem; margin-bottom: 40px; color: #cbd5e1; }
.booking-form { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.booking-form input { flex: 1; min-width: 250px; padding: 15px; border-radius: 6px; border: none; font-size: 1rem; }
.booking-form button { padding: 15px 40px; font-size: 1.1rem; }

/* Image Galleries & Process */
.process-section { padding: 80px 0; background: var(--bg-light); text-align: center; }
.process-steps { display: flex; gap: 30px; margin-top: 40px; justify-content: center; flex-wrap: wrap; }
.step { background: var(--white); padding: 30px; border-radius: 8px; flex: 1; min-width: 250px; box-shadow: var(--shadow); position: relative; }
.step-number { width: 40px; height: 40px; background: var(--primary-red); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; margin: 0 auto 15px; }
.step h4 { margin-bottom: 10px; font-size: 1.3rem; }
.step p { color: var(--text-light); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 20px; margin-bottom: 50px; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); transition: transform 0.3s; }
.gallery-grid img:hover { transform: scale(1.02); }

@media (max-width: 768px) {
  .contact-info { padding-right: 0; margin-bottom: 40px; }
  .booking-form { flex-direction: column; }
  .booking-form button { width: 100%; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* Modern Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--white);
}

.align-items-center {
    align-items: center;
}

.benefit-item {
    display: flex;
    margin-bottom: 30px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary-red);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.benefits-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.benefits-image img:hover {
    transform: scale(1.02);
}

/* Image Logo Styles */
.site-logo {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}
.footer-logo .site-logo {
    max-height: 100px;
    background-color: white; /* just in case the footer is dark, it gives a nice boundary, though the jpg has white bg */
    padding: 5px;
    border-radius: 5px;
}
