/* style.css - Complete Professional Responsive CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #FFFFFF;
  color: #1A1A2E;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo-serif, .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gold-text {
  color: #C6A43F;
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(198, 164, 63, 0.15);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-serif {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 600;
  color: #1A1A2E;
  letter-spacing: 1px;
}

.logo-sans {
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  font-weight: 500;
  letter-spacing: 3px;
  color: #C6A43F;
  font-family: 'Montserrat', sans-serif;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #1A1A2E;
  transition: 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
  color: #C6A43F;
}

.nav-cta {
  background: transparent;
  border: 1px solid #C6A43F;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #C6A43F;
  transition: 0.2s;
  text-transform: uppercase;
  display: inline-block;
}

.nav-cta:hover {
  background: #C6A43F;
  color: #FFFFFF;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: #1A1A2E;
  margin: 5px 0;
  transition: 0.3s;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 70px;
}

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

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1200px) {
  .hero-content { margin-left: 8%; }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-content { margin-left: 5%; max-width: 60%; }
}
@media (max-width: 767px) {
  .hero { margin-top: 60px; min-height: 500px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%); }
  .hero-content { margin-left: 0; padding: 1.5rem; max-width: 100%; text-align: left; }
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  letter-spacing: 4px;
  color: #C6A43F;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.typed-container {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1rem, 4vw, 1.6rem);
  font-weight: 400;
  color: #C6A43F;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
}

#typed-text {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: #C6A43F;
  margin: 1.5rem 0;
}

@media (max-width: 767px) {
  .hero-divider { width: 40px; margin: 1rem 0; }
}

.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-outline, .btn-outline-dark {
  padding: 0.9rem 2rem;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.2s;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background: #C6A43F;
  color: white;
  border: none;
}
.btn-primary:hover { background: #A8882E; transform: translateY(-2px); }

.btn-outline {
  border: 1px solid white;
  color: white;
  background: transparent;
}
.btn-outline:hover { background: white; color: #1A1A2E; }

.btn-outline-dark {
  border: 1px solid #C6A43F;
  color: #C6A43F;
  background: transparent;
}
.btn-outline-dark:hover { background: #C6A43F; color: white; }

@media (max-width: 480px) {
  .btn-primary, .btn-outline, .btn-outline-dark { padding: 0.7rem 1.2rem; font-size: 0.65rem; }
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 5%, 5%);
}

/* ========== STATS SECTION ========== */
.stats-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #F8F8F8;
  padding: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 5vw, 5rem);
  gap: 1.5rem;
}

.stat-block {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  color: #C6A43F;
}

.stat-label {
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-top: 0.3rem;
}

.stat-suffix { font-size: clamp(1rem, 3vw, 1.5rem); }
.stat-divider { width: 1px; height: 50px; background: #DDD; }

@media (max-width: 768px) {
  .stats-section { flex-direction: column; gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat-block { width: 100%; }
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  letter-spacing: 4px;
  color: #C6A43F;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  color: #1A1A2E;
}

.section-line {
  width: 50px;
  height: 2px;
  background: #C6A43F;
  margin: 1rem auto;
}

.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
}

/* ========== PROPERTY GRID ========== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 5rem);
}

.property-card {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  overflow: hidden;
}
.property-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }

.property-image {
  position: relative;
  height: clamp(220px, 30vw, 300px);
  overflow: hidden;
}
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.property-card:hover .property-image img { transform: scale(1.03); }

.property-overlay { position: absolute; top: 15px; left: 15px; }
.property-tag {
  background: #C6A43F;
  color: white;
  padding: 0.3rem 1rem;
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.property-details { padding: clamp(1rem, 3vw, 1.5rem); }
.property-title h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); margin-bottom: 0.3rem; }
.property-location { font-size: clamp(0.7rem, 2vw, 0.8rem); color: #C6A43F; margin-bottom: 1rem; }
.property-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: clamp(0.65rem, 1.8vw, 0.75rem);
  color: #888;
  border-bottom: 1px solid #EEE;
  padding-bottom: 1rem;
  flex-wrap: wrap;
}
.property-specs i { margin-right: 0.3rem; color: #C6A43F; }
.property-description {
  color: #666;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #EEE;
  padding-top: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.property-price {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 700;
  color: #C6A43F;
  font-family: 'Cormorant Garamond', serif;
}
.property-link { color: #C6A43F; text-decoration: none; font-size: clamp(0.7rem, 1.8vw, 0.8rem); font-weight: 600; }

/* ========== ABOUT SECTION ========== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-content .section-eyebrow { display: inline-block; }
.about-content h2 { font-size: clamp(1.6rem, 5vw, 2.5rem); margin-bottom: 1rem; }
.about-line { width: 50px; height: 2px; background: #C6A43F; margin: 1.5rem 0; }
.about-content p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
}
.about-stats {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  margin: 2rem 0;
  flex-wrap: wrap;
}
.about-stat { display: flex; flex-direction: column; }
.about-number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #C6A43F;
  font-family: 'Cormorant Garamond', serif;
}
.about-text {
  font-size: clamp(0.6rem, 1.8vw, 0.7rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}
.about-image img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .about-section { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; }
  .about-image img { height: 300px; }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section { margin-bottom: clamp(2rem, 5vw, 5rem); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}
.testimonial-card {
  background: #F8F8F8;
  padding: clamp(1.5rem, 4vw, 2rem);
  position: relative;
}
.testimonial-quote {
  font-size: 4rem;
  color: #C6A43F;
  font-family: serif;
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  opacity: 0.3;
}
.testimonial-card p {
  margin: 1.5rem 0 1rem;
  font-style: italic;
  color: #444;
  line-height: 1.6;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}
.testimonial-author strong { display: block; font-size: clamp(0.8rem, 2vw, 0.9rem); }
.testimonial-author span {
  font-size: clamp(0.6rem, 1.8vw, 0.7rem);
  color: #C6A43F;
  letter-spacing: 1px;
}

/* ========== BLOG GRID ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.blog-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 1.5rem; }
.blog-category {
  color: #C6A43F;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-content h4 { margin: 0.8rem 0; font-size: 1.1rem; }
.blog-content p { color: #666; margin-bottom: 1rem; font-size: 0.85rem; }
.blog-content a { color: #C6A43F; text-decoration: none; font-weight: 600; font-size: 0.8rem; }

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin: 3rem 0;
}
.service-card {
  background: #F8F8F8;
  padding: clamp(1.5rem, 4vw, 2rem);
  transition: 0.3s;
}
.service-card:hover { transform: translateY(-3px); background: white; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
.service-icon { font-size: clamp(1.5rem, 5vw, 2rem); color: #C6A43F; margin-bottom: 1rem; }
.service-card h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); margin-bottom: 0.8rem; font-family: 'Cormorant Garamond', serif; }
.service-card p { color: #666; margin-bottom: 1rem; line-height: 1.5; font-size: clamp(0.8rem, 2.2vw, 0.85rem); }
.service-features { list-style: none; padding-left: 0; }
.service-features li { padding: 0.3rem 0; font-size: clamp(0.7rem, 2vw, 0.8rem); color: #555; }
.service-features li:before { content: "—"; color: #C6A43F; margin-right: 8px; }

/* ========== PROCESS STEPS ========== */
.process-steps { margin: 3rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.process-step { display: flex; gap: 1.5rem; align-items: flex-start; flex-wrap: wrap; }
.step-number {
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  background: #C6A43F;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 600;
  flex-shrink: 0;
}
.step-content { flex: 1; }
.step-content h4 { font-size: clamp(1rem, 2.5vw, 1.1rem); margin-bottom: 0.3rem; }
.step-content p { color: #666; font-size: clamp(0.8rem, 2.2vw, 0.85rem); }
@media (max-width: 576px) {
  .process-step { flex-direction: column; align-items: center; text-align: center; }
}

/* ========== GALLERY ========== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.6rem, 1.8vw, 0.7rem);
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s;
  color: #666;
}
.filter-btn.active, .filter-btn:hover { color: #C6A43F; }
.gallery-grid, .commercial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.gallery-grid img, .commercial-grid img {
  width: 100%;
  height: clamp(220px, 30vw, 280px);
  object-fit: cover;
  transition: 0.3s;
}
.gallery-grid img:hover, .commercial-grid img:hover { transform: scale(1.02); }
.gallery-cta {
  background: #F8F8F8;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem);
  margin-top: 3rem;
}
.gallery-cta h3 { font-size: clamp(1.2rem, 4vw, 1.8rem); margin-bottom: 0.5rem; }

/* ========== CONTACT PAGE ========== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 4rem;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-card {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #F8F8F8;
}
.contact-icon { font-size: clamp(1.2rem, 3vw, 1.5rem); color: #C6A43F; margin-bottom: 0.8rem; }
.contact-card h4 { font-size: clamp(0.7rem, 2vw, 0.8rem); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
.contact-card p, .contact-card a {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: #555;
  text-decoration: none;
  line-height: 1.5;
}
.contact-card a:hover { color: #C6A43F; }
.contact-social { grid-column: span 2; padding: clamp(1rem, 3vw, 1.5rem); background: #F8F8F8; }
.social-icons { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-icons a { color: #C6A43F; font-size: clamp(1rem, 3vw, 1.2rem); }
.contact-form-wrapper {
  background: #F8F8F8;
  padding: clamp(1.5rem, 4vw, 2rem);
}
.form-header h3 { font-size: clamp(1.2rem, 4vw, 1.5rem); margin-bottom: 0.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group.double { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input, select, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #DDD;
  background: white;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.8rem, 2vw, 0.85rem);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: #C6A43F; }
.checkbox { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.checkbox input { width: auto; }
.location-section {
  text-align: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: #F8F8F8;
  margin-top: 2rem;
}
.location-section h3 { font-size: clamp(1.2rem, 4vw, 1.5rem); margin-bottom: 0.5rem; }
.map-placeholder {
  margin-top: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: #EEE;
}
.map-placeholder i { font-size: clamp(1.5rem, 5vw, 2rem); color: #C6A43F; }
.map-placeholder span { display: block; margin-top: 0.5rem; }
.map-note { font-size: clamp(0.65rem, 1.8vw, 0.7rem); color: #888; margin-top: 1rem; }
@media (max-width: 992px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .contact-info { grid-template-columns: 1fr; }
  .contact-social { grid-column: span 1; }
  .form-group.double { grid-template-columns: 1fr; }
}

/* ========== FAQ SECTION ========== */
.faq-section { margin-top: 4rem; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}
.faq-item h4 { font-size: clamp(0.9rem, 2.5vw, 1rem); margin-bottom: 0.5rem; color: #C6A43F; }
.faq-item p { color: #666; font-size: clamp(0.8rem, 2.2vw, 0.85rem); line-height: 1.5; }

/* ========== PARTNERS ========== */
.partners-section {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
}
.partners-section p {
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.5rem;
}
.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 3rem);
}
.partner-logos span {
  font-size: clamp(0.7rem, 2.5vw, 0.8rem);
  color: #888;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ========== FOOTER ========== */
footer {
  background: #1A1A2E;
  color: white;
  margin-top: 4rem;
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 5%, 5%) clamp(1.5rem, 4vw, 2rem);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-serif { color: white; }
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-social { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-social a { color: rgba(255, 255, 255, 0.6); font-size: clamp(0.9rem, 2.5vw, 1rem); transition: 0.2s; }
.footer-social a:hover { color: #C6A43F; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
}
.footer-col h4 {
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #C6A43F;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a, .footer-col p {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  transition: 0.2s;
  line-height: 1.5;
}
.footer-col ul li a:hover { color: #C6A43F; }
.footer-bottom {
  text-align: center;
  padding-top: clamp(1rem, 3vw, 2rem);
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal { margin-top: 0.5rem; font-size: clamp(0.55rem, 1.8vw, 0.65rem); }
@media (max-width: 992px) {
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ========== RESPONSIVE NAVIGATION ========== */
@media (max-width: 992px) {
  .mobile-menu-btn { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 350px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { display: none; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in { animation: fadeIn 0.5s ease; }

/* ========== WHY CHOOSE SECTION ========== */
.why-choose-section {
  margin: 4rem 0;
  background: #F8F8F8;
  padding: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-item {
  text-align: center;
  padding: 1.5rem;
}

.why-item i {
  font-size: 2rem;
  color: #C6A43F;
  margin-bottom: 1rem;
}

.why-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ========== SERVICES CTA SECTION ========== */
.services-cta {
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4E 100%);
  padding: 4rem;
  margin: 4rem 0;
  border-radius: 20px;
  color: white;
}

.services-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.services-cta p {
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.8);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 2rem;
  }
  
  .services-cta {
    padding: 2rem;
  }
  
  .services-cta h3 {
    font-size: 1.4rem;
  }
}