/* ===================================
   ICONIC GLOBAL - Luxury Real Estate
   Sophisticated & Clean Design
   =================================== */

:root {
  --navy: #1a2332;
  --gold: #C5A572;
  --gold-light: #D4AF37;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --text-gray: #6c757d;
  --dark-gray: #343a40;
}

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

body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  color: var(--navy);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 1rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

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

.logo {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

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

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

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #2c3e50 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23C5A572" opacity="0.1"/></svg>');
  background-size: 100px 100px;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero .gold-text {
  color: var(--gold);
  font-weight: 600;
  display: block;
  font-size: 4.5rem;
  margin-top: 0.5rem;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-button:hover {
  color: var(--navy);
}

.cta-button:hover::before {
  left: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 8rem 0;
  position: relative;
}

.section.light {
  background: var(--off-white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  color: var(--navy);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PROJECTS SECTION ===== */
.projects-grid {
  display: grid;
  gap: 4rem;
}

.project-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.project-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 400px;
  position: relative;
  overflow: hidden;
}

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

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

.project-info {
  padding: 3rem;
}

.project-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.project-title {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 600;
}

.project-location {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.project-description {
  color: var(--text-gray);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}

.spec-item {
  text-align: center;
}

.spec-value {
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.spec-label {
  color: var(--text-gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--navy);
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-text p {
  color: var(--text-gray);
  margin: 0;
}

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

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

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

.submit-button {
  width: 100%;
  padding: 1.2rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

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

.footer-contact p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero .gold-text {
    font-size: 3.5rem;
  }
  
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .project-images {
    grid-template-columns: repeat(2, 1fr);
    height: 300px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .section {
    padding: 4rem 0;
  }
  
  .stats-grid,
  .project-specs {
    grid-template-columns: 1fr;
  }
  
  .project-images {
    grid-template-columns: 1fr;
  }
}
