/* ============================================================
   İdris Bayram | Emlak - Complete Stylesheet
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy: #2B2F8F;
  --navy-dark: #1e2266;
  --navy-deeper: #141850;
  --pink: #E5007D;
  --pink-light: #ff1a91;
  --cyan: #00AEEF;
  --cyan-light: #33bff3;
  --white: #ffffff;
  --light-gray: #f0f2ff;
  --text-gray: #555555;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(43, 47, 143, 0.08);
  --shadow-md: 0 4px 20px rgba(43, 47, 143, 0.15);
  --shadow-lg: 0 8px 40px rgba(43, 47, 143, 0.22);
  --radius: 8px;
  --radius-lg: 16px;
}

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

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a2e;
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.section-title span {
  color: var(--pink);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-block;
  background-color: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--pink);
  transition: var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--pink-light);
  border-color: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(229, 0, 125, 0.4);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-outline-cyan {
  display: inline-block;
  background-color: transparent;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--cyan);
  transition: var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn-outline-cyan:hover {
  background-color: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.35);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--navy);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(20, 24, 80, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.navbar-logo span {
  color: var(--cyan);
}

.navbar-logo-img {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--cyan);
  background-color: rgba(0, 174, 239, 0.1);
}

.nav-links a.active {
  color: var(--cyan);
  background-color: rgba(0, 174, 239, 0.15);
  font-weight: 700;
}

.nav-links .btn-nav {
  background-color: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--pink);
  transition: var(--transition);
  margin-left: 8px;
}

.nav-links .btn-nav:hover {
  background-color: var(--pink-light);
  border-color: var(--pink-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(229, 0, 125, 0.4);
}

/* ── Hamburger ─────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 6px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.hamburger:hover {
  background-color: rgba(0, 174, 239, 0.2);
  border-color: var(--cyan);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--white);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(10, 14, 50, 0.65);
  backdrop-filter: blur(2px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.visible {
  display: block;
  opacity: 1;
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */

.page-hero {
  height: 300px;
  background-image: linear-gradient(rgba(20, 24, 80, 0.72), rgba(43, 47, 143, 0.60)),
    url('../images/page-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
}

.page-hero-content h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero-content h1 span {
  color: var(--white);
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

/* ============================================================
   HERO SECTION (Home)
   ============================================================ */

/* ============================================================
   HERO SLIDER
   ============================================================ */

.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 70px;
  overflow: hidden;
}

.hero-slides {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-content {
  max-width: 780px;
  padding: 0 24px;
  animation: fadeInUp 0.9s ease both;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--white);
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: var(--transition);
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--cyan);
  transform: scale(1.3);
}

/* ============================================================
   FEATURED LISTINGS
   ============================================================ */

.featured-listings {
  padding: 96px 0;
  background-color: var(--white);
}

.featured-cta {
  text-align: center;
  margin-top: 48px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.property-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 47, 143, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-satilik {
  background-color: var(--pink);
  color: var(--white);
}

.badge-kiralik {
  background-color: var(--cyan);
  color: var(--white);
}

.property-card-body {
  padding: 22px;
}

.property-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.property-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 16px;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.property-specs span {
  font-size: 0.82rem;
  color: var(--text-gray);
  background-color: var(--light-gray);
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-date {
  font-size: 0.78rem;
  color: rgba(85, 85, 85, 0.7);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-card-body .btn-sahibinden {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  font-size: 0.88rem;
  background-color: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.property-card-body .btn-sahibinden:hover {
  background-color: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 47, 143, 0.35);
  color: var(--white);
}

.property-card-body .btn-primary {
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  font-size: 0.9rem;
}

/* ============================================================
   WHY ME / FEATURES SECTION
   ============================================================ */

.why-me {
  padding: 96px 0;
  background-color: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 47, 143, 0.06);
  border-top: 4px solid var(--cyan);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 22px;
  display: block;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 0, 125, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.1), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 800;
}

.cta-banner h2 span {
  color: var(--cyan);
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-section {
  padding: 96px 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid var(--cyan);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-text .subtitle-text {
  color: var(--pink);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 28px;
  display: block;
}

.about-text p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.9;
  font-size: 0.98rem;
}

.about-text .btn-primary {
  margin-top: 12px;
}

/* Expertise */
.expertise-section {
  padding: 88px 0;
  background-color: var(--light-gray);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.expertise-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--pink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.expertise-card .feature-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.expertise-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 0.93rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Stats */
.stats-section {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 28px 16px;
  border-right: 1px solid rgba(0, 174, 239, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--cyan);
  display: block;
  line-height: 1.1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

.portfolio-section {
  padding: 80px 0;
  background-color: var(--white);
}

.filter-section {
  background-color: var(--light-gray);
  padding: 40px 0;
  border-bottom: 1px solid rgba(43, 47, 143, 0.08);
}

.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 80px;
}

.filter-btn {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  border: 2px solid rgba(43, 47, 143, 0.15);
  background-color: var(--white);
  color: var(--text-gray);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.filter-btn.active {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.filter-btn.active:hover {
  background-color: var(--navy-dark);
  border-color: var(--navy-dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.no-results {
  display: none;
  text-align: center;
  padding: 80px 24px;
  color: var(--text-gray);
  font-size: 1.1rem;
}

.no-results.visible {
  display: block;
}

.no-results span {
  display: block;
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  padding: 96px 0;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form-wrapper h2 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-form-wrapper .form-subtitle {
  color: var(--text-gray);
  margin-bottom: 36px;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(43, 47, 143, 0.15);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: #1a1a2e;
  background-color: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e55353;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232B2F8F' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-top: 10px;
  line-height: 1.6;
}

.form-success {
  display: none;
  background-color: #e8f8f0;
  border: 1px solid #b0ddc8;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 20px;
  color: #1a6b42;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success.visible {
  display: block;
}

/* Contact Info */
.contact-info-wrapper h2 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-info-wrapper .form-subtitle {
  color: var(--text-gray);
  margin-bottom: 36px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 174, 239, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(0, 174, 239, 0.2);
}

.contact-info-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.contact-info-text span {
  font-size: 0.98rem;
  color: var(--navy);
  font-weight: 500;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid #25d366;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background-color: #1ebe5c;
  border-color: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  color: var(--white);
}

/* Map section */
.map-section {
  padding: 0 0 80px;
  background-color: var(--white);
}

.map-section .section-title {
  margin-bottom: 8px;
}

.map-section .section-subtitle {
  margin-bottom: 32px;
}

.map-embed {
  width: 100%;
  line-height: 0;
  box-shadow: var(--shadow-lg);
}

.map-embed iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 100%);
  padding: 72px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  display: block;
}

.footer-brand .footer-logo span {
  color: var(--cyan);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

/* Social */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: var(--radius);
}

.social-link:hover {
  color: var(--white);
  background-color: rgba(0, 174, 239, 0.1);
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.social-icon-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

.social-icon-linkedin {
  background-color: #0077b5;
  color: var(--white);
}

.social-icon-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom span {
  color: var(--cyan);
}

/* ============================================================
   ABOUT DUAL PHOTOS
   ============================================================ */

.about-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-photos-grid .about-photo-main {
  grid-column: 1 / -1;
}

.about-photo-secondary {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(0, 174, 239, 0.3);
}

.about-photo-secondary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.about-photo-secondary:hover img {
  transform: scale(1.04);
}

/* ============================================================
   AWARDS / SUCCESS IMAGES SECTION
   ============================================================ */

.awards-section {
  padding: 88px 0;
  background-color: var(--white);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.award-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(43, 47, 143, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--white);
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(43, 47, 143, 0.18);
}

.award-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ============================================================
   ACHIEVEMENTS SECTION
   ============================================================ */

.achievements-section {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 100%);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achievement-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.achievement-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.achievement-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}

.achievement-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 8px;
  line-height: 1.3;
}

.achievement-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

/* ============================================================
   RESPONSIVE — TABLET (max 768px)
   ============================================================ */

@media (max-width: 768px) {
  /* Navbar */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--navy-deeper), var(--navy));
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-top: 2px solid rgba(0, 174, 239, 0.2);
    gap: 0;
    box-shadow: 0 8px 32px rgba(20, 24, 80, 0.4);
  }

  .nav-links.open {
    max-height: 600px;
    padding: 16px 0;
  }

  .nav-links a {
    padding: 0 28px;
    min-height: 52px;
    display: flex;
    align-items: center;
    border-radius: 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
  }

  .nav-links a:last-of-type {
    border-bottom: none;
  }

  .nav-links a:hover {
    background-color: rgba(0, 174, 239, 0.12);
    padding-left: 36px;
  }

  .nav-links a.active {
    background-color: rgba(0, 174, 239, 0.15);
    border-left: 3px solid var(--cyan);
    padding-left: 25px;
    color: var(--cyan);
    font-weight: 700;
  }

  .nav-links .btn-nav {
    margin: 14px 24px 8px;
    min-height: 48px;
    border-radius: var(--radius);
    text-align: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper::before {
    display: none;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 174, 239, 0.15);
    padding-bottom: 28px;
  }

  .stat-item:nth-child(3),
  .stat-item:last-child {
    border-bottom: none;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Page hero */
  .page-hero-content h1 {
    font-size: 2rem;
  }

  /* Section title */
  .section-title {
    font-size: 1.7rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 480px)
   ============================================================ */

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

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

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

  .property-grid,
  .features-grid,
  .expertise-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-banner h2 {
    font-size: 1.7rem;
  }

  .page-hero-content h1 {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .filter-group {
    gap: 8px;
  }

  .filter-btn {
    font-size: 0.82rem;
    padding: 7px 14px;
  }

  .nav-links a {
    padding: 17px 28px;
    font-size: 1rem;
  }

  .nav-links .btn-nav {
    margin: 12px 20px 8px;
    font-size: 0.95rem;
    padding: 14px 20px;
  }
}
