/* import font roboto and playfair display */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Roboto:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #c4a47c;
  /* Gold/Bronze accent */
  --accent-color: #f5f5f5;
  --text-color: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --black: #000000;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1320px;
  --header-height: 90px;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.btn-premium {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--primary-color);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: var(--transition);
  z-index: -1;
}

.btn-premium:hover {
  color: var(--white);
}

.btn-premium:hover::before {
  top: 0;
}

.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--secondary-color);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: var(--transition);
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--white);
}

.btn-secondary:hover::before {
  top: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  display: block;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-size: 13px;
}

.section-title h2 {
  font-size: 42px;
  color: var(--primary-color);
}

/* Header Styles */
header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

header.sticky {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 80px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

header .logo img {
  height: 80px;
  filter: brightness(0) invert(1);
}

#main-header.sticky .logo img {
  filter: none;
}


header nav ul {
  display: flex;
  gap: 30px;
  margin-bottom: 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

#main-header.sticky nav ul li a {
  color: var(--primary-color);
}

header nav ul li a {
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0;
  position: relative;
  color: #fff;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

header nav ul li a:hover::after {
  width: 100%;
}

/* Desktop Dropdown Styles */
@media (min-width: 992px) {
  header nav ul li {
    position: relative;
  }

  header nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 5px;
  }

  header nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  header nav ul li ul li a {
    color: var(--primary-color) !important;
    padding: 10px 20px;
    font-size: 14px;
    display: block;
  }

  header nav ul li ul li a::after {
    display: none;
  }

  header nav ul li ul li a:hover {
    background: var(--accent-color);
    color: var(--secondary-color) !important;
  }
}

.actions .whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
}

.actions .whatsapp i {
  font-size: 20px;
  color: #25d366;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-content span {
  display: block;
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.hero-content h1 {
  font-size: 72px;
  color: var(--white);
  margin-bottom: 30px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Services Section */
.service-card {
  position: relative;
  padding: 40px 30px;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
  overflow: hidden;
  color: var(--white);
  border-radius: 12px;
  border: 1px solid var(--text-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  position: relative;
  z-index: 2;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}

.service-card p {
  position: relative;
  z-index: 2;
  color: var(--accent-color);
  font-size: 15px;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0 20px;
}

footer .title {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

footer .link-2 {
  display: block;
  color: #999;
  margin-bottom: 15px;
  font-size: 15px;
}

footer .link-2:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

footer .copyright {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #666;
}

/* Utils */
.mb-5 {
  margin-bottom: 3rem;
}

.mt-3 {
  margin-top: 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-sm-4 {
  flex: 0 0 33.333333%;
  padding: 0 15px;
}

.col-sm-2 {
  flex: 0 0 16.666667%;
  padding: 0 15px;
}

.col-sm-6 {
  flex: 0 0 50%;
  padding: 0 15px;
}

.col-6 {
  flex: 0 0 50%;
  padding: 0 15px;
}

/* Mobile Navigation Structure */
@media (max-width: 991px) {
  header.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    backdrop-filter: blur(5px);
  }

  header .container {
    padding: 0 20px;
  }

  header nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--primary-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 80px 30px;
    transition: var(--transition);
    visibility: visible !important;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  header nav.active,
  header.active nav {
    transform: translateX(0) !important;
    display: flex !important;
  }

  header nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  header nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  header nav ul li:last-child {
    border-bottom: none;
  }

  header nav ul li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--white) !important;
    display: block;
    padding: 16px 0;
  }

  header nav ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
  }

  .close-nav {
    color: var(--white) !important;
    transition: var(--transition);
  }

  .close-nav:hover {
    color: var(--secondary-color) !important;
    transform: rotate(90deg);
  }

  header nav ul li ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
    padding-left: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  header nav ul li.open>ul {
    display: flex;
  }

  header nav ul li ul li a {
    font-size: 16px;
    padding: 12px 0;
    color: var(--accent-color);
  }

  .mobile-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--white);
  }

  #main-header.sticky .mobile-toggle {
    color: var(--primary-color);
  }
}

.d-lg-none {
  display: none;
}

@media (max-width: 991px) {
  .d-lg-none {
    display: block;
  }

  .col-sm-6 img {
    margin-top: 40px;
  }

  .col-sm-4,
  .col-sm-2,
  .col-sm-6 {
    flex: 0 0 100%;
  }

  .hero-content h1 {
    font-size: 48px;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  background: #fcfcfc;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Contact Page Specifics */
.contact-item {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border: 1px solid #eee;
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  border-radius: 50%;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: var(--secondary-color);
  color: var(--white);
}

.contact-hero {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 150px 0 80px;
  text-align: center;
}

.contact-hero h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}

.faq-item {
  margin-bottom: 30px;
  padding: 25px;
  background: #f9f9f9;
  border-left: 4px solid var(--secondary-color);
}

.faq-item h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  border-radius: 50%;
}

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

.text-right {
  text-align: right;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.d-flex {
  display: flex;
}

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

.justify-content-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.service-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--secondary-color) !important;
}

/* whatsapp button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button a {
  display: block;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.whatsapp-button i.lab {
  font-size: 36px;
}

.phone-button {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}

.phone-button a {
  display: block;
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.phone-button i.lab {
  font-size: 36px;
}

@media (max-width: 768px) {
  .actions .whatsapp {
    display: none;
  }
}