:root {
  --cc-gold: #D4AF37;
  --cc-white: #ffffff;
  --cc-black: #111111;
  --cc-gray: #f8f9fa;
  --cc-dark-gray: #333333;
  --cc-text: #4a4a4a;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--cc-text);
  background-color: var(--cc-white);
  overflow-x: hidden;
  font-size: var(--cc-p-size, 16px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--cc-black);
  font-weight: 600;
}

/* Typography styles */
.section-title {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: var(--cc-gold);
}

.text-center .section-title::after,
.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

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

/* Custom Overrides & Utilites */
.bg-gold {
  background-color: var(--cc-gold) !important;
}

.btn-gold {
  background-color: var(--cc-btn-bg, var(--cc-gold));
  color: var(--cc-btn-text, var(--cc-white));
  border: 1px solid var(--cc-btn-bg, var(--cc-gold));
  border-radius: 0;
  /* Premium sharp edges */
  padding: 0.75rem 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--cc-btn-bg, var(--cc-gold));
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--cc-gold);
  border: 1px solid var(--cc-gold);
  border-radius: 0;
  padding: 0.75rem 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: var(--cc-gold);
  color: var(--cc-white);
}

/* Navbar */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  height: 100px;
  object-fit: contain;
}

.nav-link {
  color: #002659 !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin: 0 0.5rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--cc-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cc-white);
}

.hero-title {
  color: var(--cc-white);
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.service-card {
  background: var(--cc-white);
  border: 1px solid #ebebeb;
  padding: 3rem 2rem;
  height: 100%;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--cc-gold);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--cc-gold);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Layout Padding */
.section-padding {
  padding: 6rem 0;
}

/* Footer */
.footer {
  background:#002659 important!;
  background-color: var(--cc-footer-bg, var(--cc-black));
  color: var(--cc-footer-text, var(--cc-white));
  padding: 4rem 0 2rem;
}

.footer-title {
  color: var(--cc-footer-text, var(--cc-white));
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-title::after {
  background-color: var(--cc-gold);
}

.footer-text,
.footer-link {
  color: var(--cc-footer-text, #aaa);
  opacity: 0.85;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--cc-gold);
  opacity: 1;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cc-footer-text);
  border-top-color: color-mix(in srgb, var(--cc-footer-text) 15%, transparent);
  color: var(--cc-footer-text);
  opacity: 0.7;
  font-size: 0.85rem;
}

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

/* Page Headers (Inner Pages) — Full-Width Video Background */
.page-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.page-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.page-hero-content h1 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.75rem;
}

.page-hero-content .lead {
  color: var(--cc-gold);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
}

/* Legacy .page-header fallback (about/contact) */
.page-header {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.page-header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.page-header .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
}

.page-header h1 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.75rem;
}

.page-header .lead {
  color: var(--cc-gold);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Video Carousel */
.carousel-video {
  min-width: 100%;
  min-height: 100vh;
  object-fit: cover;
}

#heroCarousel .carousel-item {
  height: 100vh;
  min-height: 600px;
}

/* Contact Redesign */
.contact-split-section {
  padding: 100px 0;
  /* Add top padding to clear header */
  background-color: var(--cc-white);
}

.minimal-input {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 10px 0;
  background-color: transparent !important;
  color: var(--cc-dark-gray);
  box-shadow: none !important;
  transition: border-color 0.3s ease;
}

.minimal-input:focus {
  border-bottom-color: var(--cc-gold);
  outline: none;
}

.minimal-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 0;
}

.minimal-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ccc%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%;
  background-size: 0.65em auto;
}

.minimal-select:focus {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d4af37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
}

.office-block {
  border-left: 2px solid var(--cc-gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.office-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cc-gold);
  margin-bottom: 0.5rem;
}

.office-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}