@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #0D2D56;
  --white: #FFFFFF;
  --light-blue: #8BA2CE;
  --light-gray: #F7F7F7;
  --gold: #D4A15A;
  --text-dark: #0D2D56;
  --text-light: #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--primary-blue);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  height: 60px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  position: relative;
  padding: 5px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width 0.3s ease;
}

.nav-desktop a:hover {
  color: var(--light-blue);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a.active {
  color: var(--gold);
}

.btn-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary-blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background: #0a2240;
  transform: translateY(-2px) scale(1.02);
}

.btn-cta-secondary {
  background: var(--light-blue);
  color: var(--primary-blue);
}

.btn-cta-secondary:hover {
  background: #7a93c0;
}

.btn-cta-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-cta-gold:hover {
  background: #c4914f;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
}

.mobile-menu a.active {
  color: var(--gold);
}

.mobile-menu .cta-btn {
  margin-top: 20px;
}

.mobile-quick-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.mobile-quick-contact a {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero-home.png') center/cover no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(13, 45, 86, 0.6), rgba(13, 45, 86, 0.4));
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 900px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInScale 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero .btn-cta {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, var(--primary-blue), #1a4a7a);
}

.page-hero.about-hero {
  background: url('images/darla-kay-profile.png') center/cover no-repeat;
}

.page-hero.services-hero {
  background: url('images/real-estate-diversity.png') center/cover no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(13, 45, 86, 0.7), rgba(13, 45, 86, 0.5));
}

.page-hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 900px;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.page-hero p {
  font-size: 18px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light-gray);
}

.section-title {
  font-size: 40px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Services Overview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, #f8f9ff 0%, var(--white) 100%);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 162, 206, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 45, 86, 0.15);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.service-card a {
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.service-card a:hover {
  color: var(--gold);
}

/* About Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 40px;
  color: var(--primary-blue);
  margin-bottom: 25px;
}

.about-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(13, 45, 86, 0.2);
}

/* Featured Properties */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.property-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-info {
  padding: 25px;
}

.property-info h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.property-location {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.property-details {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.property-details span {
  font-size: 14px;
  color: #555;
}

.property-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

/* Testimonials */
.testimonials-section {
  background: var(--primary-blue);
  color: var(--white);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-item {
  min-width: 100%;
  padding: 0 20px;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 18px;
  font-weight: 600;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.testimonial-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.testimonial-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all 0.3s ease;
  color: var(--primary-blue);
}

.testimonial-arrow:hover {
  background: var(--gold);
  color: var(--white);
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1a4a7a 100%);
  color: var(--white);
  text-align: center;
}

.newsletter-section .section-title {
  color: var(--white);
}

.newsletter-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: 2px solid var(--gold);
}

/* CTA Section */
.cta-section {
  background: var(--primary-blue);
  color: var(--white);
  text-align: center;
}

.cta-section .section-title {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 35px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: #0a2240;
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--white);
}

.social-links a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  background: #061525;
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* About Page Specific */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-block {
  text-align: center;
  padding: 30px 20px;
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.value-block:hover .value-icon {
  transform: scale(1.1);
}

.value-block h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.value-block p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

.team-card img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.team-card h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.team-card p {
  font-size: 16px;
  color: #666;
}

/* Services Page Specific */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail:nth-child(even) .service-detail-image {
  order: 2;
}

.service-detail-content h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.service-detail-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
}

.service-detail-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.service-detail-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.service-detail-content li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
}

.service-detail-image img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(13, 45, 86, 0.15);
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--light-blue);
}

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

.process-step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Market Reports Page */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.report-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.report-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.report-image {
  height: 180px;
  background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 48px;
}

.report-content {
  padding: 25px;
}

.report-content h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.report-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.report-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
}

.market-data-section {
  background: var(--light-gray);
}

.market-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.data-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.data-card h3 {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.data-card .value {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
}

.data-card .change {
  font-size: 14px;
  margin-top: 10px;
}

.data-card .change.positive {
  color: #27ae60;
}

.data-card .change.negative {
  color: #e74c3c;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info-section h2 {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 16px;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.contact-item-content p {
  font-size: 15px;
  color: #666;
}

/* FAQ Accordion */
.faq-section {
  margin-top: 60px;
}

.faq-section h2 {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--light-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Map Section */
.map-section {
  height: 400px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 18px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-detail-image {
    order: 0;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .reports-grid {
    grid-template-columns: 1fr;
  }

  .market-data-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cta-section .section-title {
    font-size: 32px;
  }

  .page-hero {
    min-height: 40vh;
  }

  .page-hero h1 {
    font-size: 36px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero {
    background-attachment: scroll;
  }
}
