@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #0f1416;
  --text-cream: #f7f6f2;
  --accent-gold: #c5a059;
  --accent-gold-hover: #dfb768;
  --card-slate: #171e21;
  --border-color: rgba(247, 246, 242, 0.1);

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout Constants */
  --header-height: 80px;
  --topbar-height: 40px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--text-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Utilities */
.text-gold {
  color: var(--accent-gold);
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--card-slate);
  height: var(--topbar-height);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
}

.top-bar-item.phone {
  color: var(--accent-gold);
  font-weight: 600;
  opacity: 1;
}

/* Sticky Header Navigation */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 20, 22, 0.95);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-cream);
}

.logo a span {
  color: var(--accent-gold);
}

.main-nav > ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.main-nav > ul > li > a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
}

/* Nav Link Hover Animation */
.main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.main-nav > ul > li > a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: ' ▾';
  font-size: 0.8em;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--card-slate);
  min-width: 200px;
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--accent-gold);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--accent-gold);
}

/* Primary Button */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

/* Main Content Adjustments */
main {
  min-height: calc(100vh - var(--header-height) - var(--topbar-height) - 100px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background-image: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 20, 22, 0.7), rgba(15, 20, 22, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(247, 246, 242, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-cream);
  border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

/* --- Value Proposition Banner --- */
.value-prop {
  background-color: var(--card-slate);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.3);
}

.value-item .icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.value-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.value-item p {
  color: rgba(247, 246, 242, 0.8);
  font-size: 0.95rem;
}

/* --- Services Overview --- */
.services-overview {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--text-cream);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 1.5rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.service-card {
  background-color: var(--card-slate);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}

.service-image {
  height: 350px;
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid var(--accent-gold);
}

.service-content {
  padding: 3rem 2rem;
}

.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.service-content p {
  color: rgba(247, 246, 242, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-cream);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.link-arrow .arrow {
  margin-left: 0.5rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.link-arrow:hover {
  color: var(--accent-gold);
}

.link-arrow:hover .arrow {
  transform: translateX(5px);
}

/* --- About Summary --- */
.about-summary {
  background-color: var(--bg-dark);
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin-top: 1rem;
}

.about-text p {
  color: rgba(247, 246, 242, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--text-cream);
  font-weight: 600;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 20px 20px 0px rgba(197, 160, 89, 0.1);
}

/* --- Internal Pages Shared --- */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-detail {
  padding: 5rem 0;
}

.center-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.center-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.center-text p {
  font-size: 1.1rem;
  color: rgba(247, 246, 242, 0.9);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-card {
  background-color: var(--card-slate);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid var(--accent-gold);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--text-cream);
  padding: 1.5rem 1.5rem 0.5rem;
}

.feature-card p {
  padding: 0 1.5rem 1.5rem;
  color: rgba(247, 246, 242, 0.7);
  font-size: 0.95rem;
}

.cta-banner {
  background-color: var(--card-slate);
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--accent-gold);
  border-radius: 4px;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(247, 246, 242, 0.8);
  margin-bottom: 2rem;
}

.project-specs {
  background-color: rgba(247, 246, 242, 0.02);
  padding: 3rem;
  border-radius: 4px;
  margin-bottom: 5rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.project-specs h2 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.specs-list {
  margin-top: 1.5rem;
}

.specs-list li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: rgba(247, 246, 242, 0.9);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .top-bar-content {
    justify-content: center;
    gap: 1.5rem;
  }
  .top-bar-item:not(.phone) {
    display: none;
  }
  .main-nav {
    display: none; /* Add mobile menu logic here later */
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    padding: 0 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-flex {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
  }
}

/* --- Contact Section & Forms --- */
.contact-section {
  padding: 6rem 0;
}

.contact-wrapper {
  display: flex;
  gap: 4rem;
  background-color: var(--card-slate);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-info {
  flex: 1;
  padding: 4rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-right: 1px solid var(--border-color);
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.contact-info p {
  color: rgba(247, 246, 242, 0.8);
  margin-bottom: 3rem;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(247, 246, 242, 0.5);
  margin-bottom: 0.5rem;
}

.contact-form-container {
  flex: 1.5;
  padding: 4rem;
}

.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  color: rgba(247, 246, 242, 0.9);
  font-weight: 500;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-cream);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.06);
}

.luxury-form select option {
  background-color: var(--card-slate);
  color: var(--text-cream);
}

.btn-submit {
  margin-top: 1rem;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .contact-info {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 2rem;
  }
  .contact-form-container {
    padding: 3rem 2rem;
  }
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* --- About Page --- */
.about-content-section {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-text-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

.about-text-content p {
  color: rgba(247, 246, 242, 0.85);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.advantage-list {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: square;
}

.advantage-list li {
  color: rgba(247, 246, 242, 0.85);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.advantage-list li strong {
  color: var(--accent-gold);
}

.about-image-content img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -20px 20px 0px rgba(197, 160, 89, 0.1);
}

.image-caption {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(247, 246, 242, 0.6);
  font-style: italic;
}

.about-stats {
  background-color: var(--card-slate);
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 6rem;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(247, 246, 242, 0.8);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile Menu Styles --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  margin-left: 1rem;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #ffffff;
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .header-container > .btn {
    display: none;
  }
  
  .main-nav {
    display: flex;
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: calc(100vh - var(--header-height));
    background-color: var(--card-slate);
    border-left: 1px solid var(--border-color);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    flex-direction: column;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav > ul {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  
  .main-nav > ul > li > a {
    font-size: 1.2rem;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 1rem;
    padding-top: 1rem;
    display: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  body.nav-open {
    overflow: hidden;
  }
  
  .nav-overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .nav-overlay.active {
    display: block;
    opacity: 1;
  }
}
