:root {
  --gold: #d4af37;
  --navy: #1a2a44;
  --white: #f5f5f5;
  --transition: all 0.3s ease;
}
.gold-text {
  color: var(--gold);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--black);
  scroll-behavior: smooth;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

.gold-text {
  color: var(--gold);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(69, 69, 69, 0.7), rgba(79, 79, 79, 0.7)), url('/assets/images/century21.jpeg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.5));
  z-index: -1;
}


/* Section Title */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--black);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gold);
}

/* Buttons */
.btn-primary {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  min-height: 48px;
  border-radius: 0;
}

.btn-primary:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
 .img-hover-zoom {
    transition: transform 0.5s ease;
  }
  .img-hover-zoom:hover {
    transform: scale(1.05);
  }

/* Forms */
.form-control {
  border: 2px solid var(--gold);
  border-radius: 0;
  padding: 0.75rem;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
  outline: none;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
  font-size: 0.875rem;
  color: #dc3545;
}



/* Tabs */
.tab-button {
  transition: var(--transition);
}

.tab-button.active {
  background-color: var(--gold);
  color: var(--black);
}

.tab-content {
  transition: opacity 0.3s ease;
}

.tab-content.hidden {
  display: none;
}

/* Swiper */
.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.swiper-slide p {
  text-align: center;
}

.swiper-slide .overlay {
  transition: opacity 0.3s ease;
  opacity: 0;
}

.swiper-slide:hover .overlay {
  opacity: 1;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0;
}
:root {
  --gold: #D4AF37; 
}
.text-gold {
  color: var(--gold);
}


/* Existing styles for ULTRA H2 Generator landing page */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f9fa;
}

.bg-black {
  background-color: #1C2526;
}

.text-gold {
  color: #D4A017;
}

.btn-primary {
  background-color: #C8102E;
  border-color: #C8102E;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #a00d24;
  border-color: #a00d24;
}

.hidden {
  display: none;
}

.scale-95 {
  transform: scale(0.95);
}

.scale-100 {
  transform: scale(1);
}

/* Navbar styles */
.navbar {
  background-color: #1C2526;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #D4A017;
  color: #1C2526 !important;
  border-radius: 5px;
}

/* Hamburger icon */
.navbar-toggler {
  border: none;
  padding: 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}

/* Active nav link (for visual feedback) */
.nav-link.active {
  background-color: #D4A017;
  color: #1C2526 !important;
  border-radius: 5px;
}

/* Tooltips */
[data-tooltip] {
  position: relative;
}

[data-tooltip]:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
  z-index: 10;
}

/* Media Queries */
@media (max-width: 576px) {
  .hero {
    height: 80vh;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .property-card img {
    height: 200px;
  }
  .property-card .card-title {
    font-size: 1.25rem;
  }
  .property-card .card-text {
    font-size: 0.875rem;
  }
  .property-card .card-body {
    padding: 1.5rem;
  }
  .why-choose-us .section-title {
    font-size: 2rem;
  }
  .why-choose-us .icon {
    width: 40px;
    height: 40px;
  }
  .why-choose-us h4 {
    font-size: 1.25rem;
  }
  .why-choose-us p {
    font-size: 0.875rem;
  }
  .carousel-item blockquote {
    font-size: 1.1rem;
  }
  .carousel-item img {
    width: 60px;
    height: 60px;
  }
  .buyers-guide .section-title {
    font-size: 2rem;
  }
  .buyers-guide .lead {
    font-size: 1rem;
  }
  .buyers-guide .form-control {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
  .buyers-guide .btn-primary {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  .buyers-guide p {
    font-size: 0.875rem;
  }
  .gallery-section .section-title {
    font-size: 2rem;
  }
  .gallery-img {
    height: 250px;
  }
  .gallery-caption {
    font-size: 0.75rem;
    padding: 0.5rem;
  }
  .footer {
    padding: 1.5rem 0;
  }
  .footer p, .footer a {
    font-size: 0.875rem;
  }
  .footer .mt-4 {
    margin-top: 1rem;
  }
}

@media (min-width: 577px) and (max-width: 992px) {
  .hero {
    height: 90vh;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.25rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .p
  .footer {
    padding: 2rem 0;
  }
  .footer p, .footer a {
    font-size: 1rem;
  }
}
:root {
  --gold: #d4af37;
}

html {
  scroll-behavior: smooth;
}

.hidden {
  display: none;
}

.gold-text {
  color: var(--gold);
}

.bg-gold-text {
  background-color: var(--gold);
}

.btn-primary {
  background-color: var(--gold);
  color: #000;
  border: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary:hover {
  background-color: #fff;
  color: #000;
}

.navbar {
  background-color: #000;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.tab-content:focus {
  outline: none;
}
/* Base Variables */
:root {
  --gold: #d4af37;
  --transition: all 0.3s ease;
}

/* Body Styles */
body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* Services & About Section */
#services {
  overflow-x: hidden;
  background: #000;
  padding: 3rem 0; 
}

/* Section Title */
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3rem; 
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

/* Tab Navigation */
.tab-button {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  color: #fff;
  transition: var(--transition);
}

.tab-button:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Services Cards */
.service-card {
  background: #1a1a1a;
  transition: var(--transition);
}

.service-card svg {
  transition: var(--transition);
}

.service-card:hover svg {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.service-card p {
  color: #fff;
}

/* About Section */
#about-tab .about-content {
  background: #1a1a1a;
  transition: box-shadow 0.3s ease;
}

#about-tab .about-content:hover {
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

#about-tab h3,
#about-tab h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--gold);
}

#about-tab p,
#about-tab li {
  color: #000000;
}

/* Swiper Carousel */
.core-competencies .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.core-competencies .swiper-slide p {
  color: #000000;
  background: var(--gold);
}

.core-competencies .swiper-button-next,
.core-competencies .swiper-button-prev {
  color: var(--gold);
  width: 30px;
  height: 30px;
  margin-top: 0;
  transform: translateY(-50%);
}

.core-competencies .swiper-button-next::after,
.core-competencies .swiper-button-prev::after {
  font-size: 16px;
}

.core-competencies .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.5;
}

.core-competencies .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Modal */
#profile-modal {
  background: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  padding: 1rem;
}

#profile-modal > div {
  background: #1a1a1a;
  transition: var(--transition);
}

#profile-modal h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

#profile-modal p {
  color: black;
}

#profile-modal a {
  color: var(--gold);
}

/* Buttons */
.btn-primary {
  color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }

  .tab-button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  #about-tab .about-content {
    padding: 2rem;
  }

  #about-tab img {
    max-width: 250px;
  }

  .core-competencies .swiper-button-next,
  .core-competencies .swiper-button-prev {
    width: 25px;
    height: 25px;
  }

  .core-competencies .swiper-button-next::after,
  .core-competencies .swiper-button-prev::after {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .tab-button {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-card svg {
    width: 24px;
    height: 24px;
  }

  #about-tab .about-content {
    padding: 1.5rem;
  }

  #about-tab h3 {
    font-size: 1.75rem;
  }

  #about-tab h4 {
    font-size: 1.1rem;
  }

  #about-tab p,
  #about-tab li {
    font-size: 0.9rem;
  }

  #about-tab img {
    max-width: 200px;
  }

  .core-competencies .swiper-slide p {
    font-size: 0.9rem;
    padding: 0.75rem;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 1.75rem;
  }

  .tab-button {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .service-card svg {
    width: 20px;
    height: 20px;
  }

  #about-tab .about-content {
    padding: 1rem;
  }

  #about-tab h3 {
    font-size: 1.5rem;
  }

  #about-tab h4 {
    font-size: 1rem;
  }

  #about-tab p,
  #about-tab li {
    font-size: 0.85rem;
  }

  #about-tab img {
    max-width: 180px;
  }

  .core-competencies .swiper-slide p {
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  #profile-modal > div {
    padding: 1rem;
    max-width: 90%;
  }

  #profile-modal h3 {
    font-size: 1.25rem;
  }

  #profile-modal p {
    font-size: 0.85rem;
  }

  #profile-modal a {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 400px) {
  .section-title {
    font-size: 1.5rem;
  }

  .tab-button {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
  }

  .service-card {
    padding: 0.75rem;
  }

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

  .service-card p {
    font-size: 0.8rem;
  }

  #about-tab h3 {
    font-size: 1.25rem;
  }

  #about-tab h4 {
    font-size: 0.9rem;
  }

  #about-tab p,
  #about-tab li {
    font-size: 0.8rem;
  }

  #about-tab img {
    max-width: 150px;
  }

  .core-competencies .swiper-slide p {
    font-size: 0.8rem;
    padding: 0.5rem;
  }

  .btn-primary {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  #profile-modal > div {
    padding: 0.75rem;
  }

  #profile-modal h3 {
    font-size: 1.1rem;
  }

  #profile-modal p {
    font-size: 0.8rem;
  }
}


 :root {
      --gold: #d4af37;
    }
    body {
      background-color: #000;
      color: #fff;
      font-family: Arial, sans-serif;
    }
    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
    }
    .text-gold { color: var(--gold); }
    .btn-gold {
      background-color: var(--gold);
      color: #000;
      border: none;
    }
    .btn-gold:hover {
      background-color: #bfa336;
      color: #fff;
    }
    .card {
      background-color: #ffffff;
      border: none;
      overflow: hidden;
    }
    .card-img-top {
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s;
    }
    .card:hover .card-img-top {
      transform: scale(1.05);
    }
    /* Contact form gold accents */
    .form-control:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    }
    label {
      color: #ccc;
    }
    /* Section padding */
    .section {
      padding: 60px 0;
    }

    .hidden {
    display: none;
}
.scale-95 {
    transform: scale(0.95);
}
.scale-100 {
    transform: scale(1);
}
.btn-gold {
    background-color: #d4af37;
    color: #000;
}
.text-gold {
    color: #d4af37;
}
.gold-text {
    color: #d4af37;
}