/* ================================================
   aliving.homes — Premium Light Stylesheet
   Primary: #ff9100 | Background: #fff / #f9f8f6
   ================================================ */

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

:root {
  --primary: #ff9100;
  --primary-dark: #e68200;
  
  --bg-main: #ffffff;
  --bg-alt: #f9f8f6;
  
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-light: #999999;
  
  --border-light: #eaeaea;
  --border-dark: #dddddd;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --nav-h: 100px;
  --nav-h-scroll: 70px;

  --radius: 0px; /* Sharp, elegant edges instead of rounded */
  
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  background: var(--bg-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.3;
  font-weight: 500;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: 1rem; }
h4 { font-size: 1.2rem; }

p { font-size: 1.05rem; }

.text-primary { color: var(--primary); }

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 120px 0; }
.section-alt { background: var(--bg-alt); }
.section-sm { padding: 80px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }

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

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: #fff;
}

.btn-whatsapp {
  background: transparent;
  color: #25d366;
  border: 1px solid #25d366;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

/* Decorative */
.orange-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--primary);
  margin: 2rem 0;
}
.orange-line.centered { margin: 2rem auto; }

/* Navbar - Premium Light */
#navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease);
}

#navbar.scrolled {
  height: var(--nav-h-scroll);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

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

.nav-logo { display: flex; align-items: center; height: 50px; }
.nav-logo img { height: 100%; width: auto; object-fit: contain; }
.nav-logo-text { font-family: var(--font-serif); font-size: 1.75rem; color: var(--text-dark); font-weight: 500; }
.nav-logo-text span { color: var(--primary); }

.nav-menu { display: flex; align-items: center; gap: 3rem; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
}

.nav-link::after {
  content: ''; position: absolute;
  bottom: -6px; left: 0; width: 0; height: 1px;
  background: var(--primary);
  transition: width 0.4s var(--ease);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary); }

.nav-cta { padding: 0; }
.nav-cta::after { display: none; }
.nav-cta-btn {
  padding: 0.6rem 1.8rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
}
.nav-cta-btn:hover { background: var(--primary); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 6px; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 2px; border-radius: 2px; background: var(--text-dark); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: #fff; z-index: 999; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; opacity: 0; pointer-events: none; transition: 0.4s;
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav .nav-link { font-size: 1.5rem; font-family: var(--font-serif); text-transform: none; }

/* Hero */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background-image: url('../assets/header.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Subtly increases premium feel */
  padding-top: var(--nav-h);
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content { 
  position: relative;
  z-index: 2;
  max-width: 800px; 
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 2rem;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1.5px; background: var(--primary); }
.hero-title { 
  color: #ffffff; 
  margin-bottom: 1.5rem; 
  line-height: 1.15; 
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-subtitle { 
  font-size: 1.25rem; color: rgba(255,255,255,0.9); 
  margin-bottom: 3.5rem; max-width: 650px; font-weight: 300; 
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-buttons .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.hero-buttons .btn-outline:hover { background: #fff; color: var(--text-dark); border-color: #fff; }

.hero-scroll {
  position: absolute; bottom: 3rem; left: 3rem;
  display: flex; align-items: center; gap: 1rem;
  z-index: 2;
}
.hero-scroll span { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff; }
.scroll-line-horiz { width: 50px; height: 1px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line-horiz::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--primary);
  animation: scrollLineH 2s ease-in-out infinite;
}
@keyframes scrollLineH { 0% { left: -100%; } 100% { left: 100%; } }

/* Stats */
.stats-wrap { border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); background: #fff; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 3rem 2rem; text-align: center; border-right: 1px solid var(--border-light); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-serif); font-size: 3rem; color: var(--primary); font-weight: 700; margin-bottom: 0.5rem; line-height: 1; }
.stat-number span { font-weight: 700; }
.stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }

/* Premium Features */
.premium-feature {
  padding: 4rem 3rem;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: all 0.5s var(--ease);
}
.premium-feature:hover { border-color: var(--primary); box-shadow: 0 15px 40px rgba(0,0,0,0.05); transform: translateY(-8px); }
.pf-icon { font-size: 2rem; color: var(--primary); margin-bottom: 2rem; }
.premium-feature h3 { font-size: 1.3rem; }
.premium-feature p { font-size: 0.95rem; color: var(--text-muted); }

/* About Brief */
.about-img-placeholder {
  width: 100%; height: 100%; min-height: 500px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center; color: var(--text-light);
  font-family: var(--font-serif); font-size: 1.2rem;
}
.about-text-content { padding: 2rem 0; }
.about-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.about-list li { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.05rem; color: var(--text-dark); }
.about-list li::before { content: '—'; color: var(--primary); font-weight: bold; }

/* Portfolio Minimal Cards */
.folio-card { group; cursor: pointer; }
.folio-img-box {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-alt); overflow: hidden; position: relative; margin-bottom: 1.5rem;
}
.folio-img-box .placeholder-txt {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-family: var(--font-serif); font-size: 1.1rem;
}
.folio-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: #fff; padding: 0.4rem 1rem; font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dark);
}
.folio-info h3 { font-size: 1.3rem; transition: color 0.3s ease; }
.folio-card:hover .folio-info h3 { color: var(--primary); }
.folio-location { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.5rem; }
.folio-meta { display: flex; gap: 1.5rem; color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; border-top: 1px solid var(--border-light); padding-top: 1rem; }

/* CTA Block Minimal */
.cta-minimal {
  background: var(--bg-alt);
  padding: 100px 0;
  text-align: center;
}
.cta-minimal h2 { margin-bottom: 1rem; font-size: 2.5rem; }
.cta-minimal p { max-width: 600px; margin: 0 auto 3rem; }

/* ==============================
   SUBPAGE STYLES
   ============================== */
.page-hero-minimal {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 160px 0 100px;
  text-align: center;
  color: #fff;
}
.page-hero-minimal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.page-hero-minimal .container {
  position: relative;
  z-index: 2;
}
.page-hero-minimal .breadcrumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7); margin-bottom: 1.5rem;
}
.page-hero-minimal .breadcrumb a { color: var(--primary); }
.page-hero-minimal h1 { margin-bottom: 1rem; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.page-hero-minimal p { max-width: 600px; margin: 0 auto; color: rgba(255,255,255,0.9); }

.content-block-centered {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-dark);
}
.content-block-centered p { margin-bottom: 1.5rem; }

.visual-banner {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  margin: 4rem 0;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.contact-card-premium {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.contact-card-premium:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.contact-card-premium .icon { font-size: 2rem; margin-bottom: 1rem; color: var(--primary); }
.contact-card-premium h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-card-premium a, .contact-card-premium p { font-size: 0.95rem; color: var(--text-muted); }
.contact-card-premium a:hover { color: var(--primary); }

.news-card-premium {
  background: #fff;
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease);
  display: block;
}
.news-card-premium:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.news-card-premium .news-img {
  width: 100%; aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}
.news-card-premium .news-body { padding: 2.5rem 2rem; }
.news-card-premium .meta { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 1rem; display: block; font-weight: 500; }
.news-card-premium h3 { font-size: 1.25rem; margin-bottom: 1rem; line-height: 1.4; color: var(--text-dark); }
.news-card-premium p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; }

/* Footer */
.footer-minimal { background: #fff; border-top: 1px solid var(--border-light); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 60px; }
.f-logo-text { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-dark); margin-bottom: 1.5rem; }
.f-logo-text span { color: var(--primary); }
.f-desc { font-size: 0.95rem; color: var(--text-muted); max-width: 320px; }
.f-col h4 { font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-dark); margin-bottom: 2rem; font-weight: 500; }
.f-col ul { display: flex; flex-direction: column; gap: 1rem; }
.f-col ul a { font-size: 0.95rem; color: var(--text-muted); transition: 0.3s; }
.f-col ul a:hover { color: var(--primary); }
.f-bottom { border-top: 1px solid var(--border-light); padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-light); }

/* ==============================
   MOBILE CAROUSEL
   (swipeable, snap-scroll — only applied via .mobile-carousel class)
   ============================== */
.mobile-carousel { display: grid; } /* default = normal grid on desktop */

/* ==============================
   RESPONSIVE — TABLET (≤1024px)
   ============================== */
@media(max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border-light); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* ==============================
   RESPONSIVE — MOBILE (≤768px)
   ============================== */
@media(max-width: 768px) {
  :root { --nav-h: 70px; }
  .nav-inner { padding: 0 1.2rem; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding-top: 3rem; }
  .hero-scroll { display: none; }

  /* Tüm sayfalarda yatay taşmayı önle */
  body { overflow-x: hidden; }
  .container { padding: 0 1.2rem; }
  html { overflow-x: hidden; }

  /* ---------- STATS: stays 2×2 ---------- */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border-light) !important; padding: 1.6rem 1rem; }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border-light) !important; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none !important; }
  .stat-number { font-size: 1.9rem; }
  .stat-label  { font-size: 0.7rem; }

  /* ---------- CAROUSEL (Farkımız, Portföy ve Haberler) ---------- */
  .carousel-wrap {
    position: relative;
    overflow: hidden;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
    width: calc(100% + 2.4rem);
    padding: 0;
  }
  .carousel-wrap::after { display: none; }

  .mobile-carousel {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.1rem;
    padding: 0.5rem 1.2rem 1.5rem 1.2rem !important;
    scroll-padding-left: 1.2rem;
    scroll-padding-right: 1.2rem;
    scrollbar-width: none;
    margin: 0;
  }
  .mobile-carousel::-webkit-scrollbar { display: none; }
  
  .mobile-carousel > * {
    scroll-snap-align: start;
    flex: 0 0 calc(84vw - 2.4rem) !important;
    max-width: 320px !important;
    min-width: 260px !important;
    box-sizing: border-box;
  }

  .mobile-carousel::after {
    content: '';
    flex: 0 0 0.1px;
    padding-right: 0.5rem;
    pointer-events: none;
  }

  /* Portfoy kartlari mobilde carousel icinde */
  .mobile-carousel .folio-card {
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    height: 100%;
  }
  .mobile-carousel .folio-card .folio-img-box {
    height: 190px !important;
    flex-shrink: 0;
  }
  .mobile-carousel .folio-card .folio-info {
    padding: 1.2rem !important;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  /* Haber kartlari mobilde carousel icinde */
  .mobile-carousel .news-card-premium {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    height: 100%;
  }
  .mobile-carousel .news-card-premium .news-img {
    width: 100% !important;
    min-width: unset !important;
    height: 165px !important;
    border-radius: 0 !important;
    flex-shrink: 0;
  }
  .mobile-carousel .news-card-premium .news-body {
    padding: 1.2rem !important;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .mobile-carousel .news-card-premium .news-body h3 {
    font-size: 1.05rem !important;
    line-height: 1.4;
    margin-bottom: 0.4rem;
  }
  .mobile-carousel .news-card-premium .news-body p {
    font-size: 0.85rem !important;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Özellik kartlari mobilde carousel icinde */
  .mobile-carousel .premium-feature {
    padding: 1.6rem 1.3rem !important;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }
  .mobile-carousel .premium-feature h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-dark); }
  .mobile-carousel .premium-feature p  { font-size: 0.88rem; line-height: 1.6; }
  .mobile-carousel .pf-icon { width: 44px; height: 44px; margin-bottom: 0.8rem; }

  /* ---------- GRID-2 (about) ---------- */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2.align-center > div:last-child { order: -1; }
  .grid-2.align-center > div:last-child img { height: 220px; }
  .visual-banner { height: 220px; margin: 2.5rem 0; }

  /* ---------- PORTFÖY SAYFASI: 1 sütun, sade ---------- */
  .portfoy-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .portfoy-grid .folio-card {
    width: 100%;
    border: 1px solid var(--border-light);
  }
  .portfoy-grid .folio-img-box { height: 200px; }
  .portfoy-grid .folio-info { padding: 1.2rem; }
  .portfoy-grid .folio-info h3 { font-size: 1rem; }
  .portfoy-grid .folio-info .btn { width: 100%; text-align: center; }

  /* ---------- HABERLER SAYFASI: 1 sütun, sade ---------- */
  .haberler-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .haberler-grid .news-card-premium { flex-direction: column !important; }
  .haberler-grid .news-img {
    width: 100% !important;
    height: 160px !important;
    min-width: unset !important;
    border-radius: var(--radius) var(--radius) 0 0 !important;
  }
  .haberler-grid .news-body { padding: 1rem 1.1rem; }
  .haberler-grid .news-body h3 { font-size: 0.95rem; line-height: 1.4; margin-bottom: 0.3rem; }
  .haberler-grid .news-body p  { font-size: 0.83rem; line-height: 1.5; }
  .haberler-grid .news-body .meta { font-size: 0.72rem; }

  /* ---------- İLETİŞİM KARTLARI: 1 sütun, ortalı ---------- */
  .contact-cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-card-premium { padding: 1.5rem; text-align: center; }
  .contact-card-premium .icon { font-size: 2rem; margin-bottom: 0.5rem; }
  .contact-card-premium h3 { font-size: 1rem; margin-bottom: 0.4rem; }
  .contact-card-premium p, .contact-card-premium a { font-size: 0.88rem; }

  /* ---------- HERO (alt sayfalar & anasayfa) ---------- */
  .home-hero, .page-hero-minimal { background-attachment: scroll; }
  .page-hero-minimal { padding: 6.5rem 1.2rem 3.5rem; }
  .page-hero-minimal h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-hero-minimal p  { font-size: 0.92rem; }

  /* ---------- SECTION SPACING ---------- */
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .cta-minimal { padding: 4.5rem 1.5rem; }
  .cta-minimal h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* ---------- FOOTER: kompakt 1 sütun ---------- */
  .footer-minimal { padding: 3rem 0 0; }
  .footer-mobile { display: none !important; } /* footer-mobile'ı tamamen kaldır, grid yeterli */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .f-brand p.f-desc { display: none; } /* açıklamayı mobilde gizle, yer kaplar */
  .f-brand img { height: 32px; margin-bottom: 0.8rem; }
  .f-col h4 { margin-bottom: 1rem; }
  .f-col ul { gap: 0.6rem; }
  .f-col ul a, .f-col ul span { font-size: 0.88rem; }
  .f-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    padding-top: 1.5rem;
    font-size: 0.78rem;
  }
}

/* ==============================
   RESPONSIVE — SMALL PHONES (≤480px)
   ============================== */
@media(max-width: 480px) {
  .stat-number { font-size: 1.6rem; }
  .stat-item   { padding: 1.2rem 0.5rem; }

  .mobile-carousel > * {
    flex: 0 0 calc(85vw - 2rem) !important;
    max-width: 290px !important;
  }

  .home-hero { min-height: 90vh; }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.6rem) !important; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; gap: 0.8rem; width: 100%; }
  .hero-buttons .btn { width: 100%; text-align: center; justify-content: center; }

  .portfoy-grid .folio-img-box { height: 180px; }
  .contact-cards-grid { max-width: 100%; }
}


