/* CSS Variables for Brand Colors - Enhanced Palette */
:root {
  /* Core Brand Colors */

  --navy: #002b5c;
  --charcoal: #333333;
  --gold: #b38b59;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --mutindagreen: #9D863F;
  --mutindamaroon: rgb(119, 4, 4);
  --mutindagreen-light: rgba(84, 102, 21, 0.1);
  --mutindamaroon-light: rgba(119, 4, 4, 0.1);
  --mutindagreen-dark: #9D853F;
  --mutindamaroon-dark: rgb(95, 3, 3);
  --gradient-primary: linear-gradient(135deg, var(--mutindamaroon), var(--mutindagreen));
  --gradient-secondary: linear-gradient(135deg, var(--mutindagreen), var(--mutindagreen-dark));


  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--mutindamaroon) 0%, var(--mutindagreen) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--mutindagreen) 0%, var(--mutindagreen-dark) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(119, 4, 4, 0.85) 0%, rgba(84, 102, 21, 0.75) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 35px 80px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 350;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  background-color: black;
}

/* Typography */
h1, h2, h3, h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-family: "Garamond", "Times New Roman", serif;
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-family: "Garamond", "Times New Roman", serif;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--mutindagreen);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--mutindamaroon);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--mutindamaroon-dark);
  transform: translateY(-3px);
}

.btn-primary1 {
  background-color: var(--gold);
  color: var(--white);
}

.btn-secondary {
  background-color: black;
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--mutindagreen);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--mutindagreen);
  border: 2px solid var(--mutindagreen);
}

.btn-outline:hover {
  background-color: var(--mutindagreen);
  color: var(--white);
  transform: translateY(-3px);
}

.highlight {
  color: var(--gold);
  font-weight: 700;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  height: 100px;
  transition: all 0.4s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Navigation */
nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--charcoal);
  font-size: 16px;
  padding: 8px 2px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mutindamaroon), var(--mutindagreen));
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--mutindamaroon);
}

nav ul li .btn {
  background: linear-gradient(135deg, var(--mutindamaroon), var(--mutindamaroon-dark));
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(119, 4, 4, 0.3);
  margin-left: 10px;
  color: white;
}

nav ul li .btn:hover {
  background: linear-gradient(135deg, var(--mutindamaroon-dark), var(--mutindamaroon));
  box-shadow: 0 10px 30px rgba(119, 4, 4, 0.4);
}

.mobile-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--charcoal);
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 6px;
}

.mobile-menu:hover {
  color: var(--mutindamaroon);
  background: var(--mutindagreen-light);
}

/* Page Header */
.page-header {
  position: relative;
  margin-top: 80px;
  height: 75vh;
  padding: 10rem 0 6rem;
  text-align: center;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(128, 4, 4, 0.753), rgba(121, 6, 6, 0.007)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  overflow: hidden;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent 70%);
  opacity: 0.3;
}

.page-header h1 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: gold;
  font-weight: 300;
  margin-bottom: 40px;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.page-header p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 750px;
  margin: 0.8rem auto 1.5rem;
  color: #d3e4f7;
  line-height: 1.7;
  animation: fadeUp 1.4s ease;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  animation: fadeUp 1.6s ease;
}

.breadcrumb a {
  color: #e8f3ff;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
  color: #87cefa;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact Methods Section */
.contact-methods {
  padding: 80px 20px;
  background: linear-gradient(rgba(238, 239, 240, 0.925), rgba(248, 249, 250, 0.568)),
    url("WhatsApp\ Image\ 2025-11-27\ at\ 20.12.18_d3f0f74b.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.contact-methods .text-center h2 {
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--mutindamaroon);
  margin-bottom: 10px;
}

.contact-methods .text-center p {
  font-size: 1.1rem;
  color: #555;
}

.contact-intro p {
  font-size: 1.3rem;
  color: var(--charcoal);
  line-height: 1.8;
  font-weight: 400;
  background: linear-gradient(135deg, var(--mutindagreen-lighter) 0%, var(--mutindamaroon-lighter) 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--mutindagreen);
}

/* Methods Grid */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 50px;
}

.method-card {
  background-color: var(--mutindamaroon-dark);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.method-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--mutindagreen-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.method-card:hover .method-icon {
  transform: scale(1.2);
  background: var(--mutindamaroon-light);
}

.method-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.method-card .method-details p {
  margin: 5px 0;
  color: #cccaca;
  font-size: 0.95rem;
}

.method-card .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  border-radius: 50px;
  background-color: var(--mutindagreen-dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.method-card .btn:hover {
  background-color: var(--mutindamaroon-light);
  transform: translateY(-3px);
}

/* Contact Form & Info */
.contact-main {
  padding: 5rem 0;
  background: var(--gradient-overlay),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-main h2 {
  color: var(--mutindamaroon-dark);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-container {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--mutindamaroon-dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--mutindagreen);
  outline: none;
  box-shadow: 0 0 0 3px var(--mutindagreen-light);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info-container {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-info-container h3 {
  margin-bottom: 1.5rem;
  color: var(--mutindamaroon-dark);
  font-weight: 500;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--mutindagreen);
  margin-right: 1rem;
  min-width: 30px;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.business-hours {
  margin-top: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

/* Map Section */
.map-section {
  padding: 0 0 5rem;
  color: var(--white);
}

.map-section h1 {
  color: var(--mutindamaroon-dark);
  position: relative;
  padding-bottom: 0.5rem;
  font-family: "Garamond", "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  height: 100%;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mutindagreen);
  font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(rgba(238, 239, 240, 0.973), rgba(248, 249, 250, 0.788)),
    url("WhatsApp\ Image\ 2025-11-27\ at\ 20.12.18_d3f0f74b.jpg");
  background-size: cover;
  background-position: center;
}

.faq-section h2 {
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--mutindamaroon);
  margin-bottom: 10px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: black;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.747);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: var(--gradient-overlay),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 100px 60px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  margin: 80px auto;
  max-width: 1400px;
}

.cta-section h2 {
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 30px;
  font-size: clamp(2.2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
  text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.cta-section h2:after {
  display: none;
}

.cta-section p {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#whatsapp {
  background-color: var(--mutindagreen-dark);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
  max-width: 320px;
  margin-bottom: 25px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  color: var(--mutindagreen);
  margin-bottom: 25px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--mutindagreen);
  border-radius: 2px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.footer-links a,
.footer-services a,
.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
  color: var(--mutindagreen);
  padding-left: 5px;
}

.footer-contact ul li i {
  margin-right: 12px;
  color: var(--mutindagreen);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.credit {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #777;
}

.credit span {
  color: #e74c3c;
}

.credit a {
  color: gold;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.credit a:hover {
  color: var(--mutindamaroon);
  text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Sticky Quote Button */
.sticky-quote {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--mutindagreen);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(179, 0, 0, 0.4);
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-quote:hover {
  background: linear-gradient(135deg, var(--mutindagreen), var(--gold-light));
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .page-header h1 { font-size: 2.5rem; }
  .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: var(--charcoal);
    transition: color 0.3s ease;
    z-index: 1001;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 999;
  }

  nav ul.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav ul li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  nav ul li a {
    display: block;
    font-size: 1.1rem;
    padding: 12px 0;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.3s ease;
  }

  nav ul li a:hover {
    color: var(--mutindamaroon);
    background: var(--mutindagreen-light);
  }

  nav ul li .btn {
    margin: 10px auto;
    width: 80%;
  }

  .cta-btns { flex-direction: column; gap: 1rem; }
  .page-header { padding: 8rem 0 4rem; height: 60vh; }
  .section-padding { padding: 3rem 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .page-header h1 { font-size: 2rem; }
  .methods-grid { grid-template-columns: 1fr; }
  .contact-form-container,
  .contact-info-container { padding: 1.5rem; }
}