/* ===== SUN Management — Premium Styles ===== */

:root {
  --navy: #0c1829;
  --navy-light: #152238;
  --navy-mid: #1e3354;
  --gold: #c9a962;
  --gold-light: #dfc88a;
  --gold-dark: #a8893f;
  --cream: #faf7f2;
  --sand: #f0ebe3;
  --white: #ffffff;
  --text: #2a3548;
  --text-muted: #6b7a8f;
  --sea: #1a6b7a;
  --sea-light: #2a8a9c;
  --shadow: 0 4px 30px rgba(12, 24, 41, 0.08);
  --shadow-lg: 0 20px 60px rgba(12, 24, 41, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Cursor glow (desktop) */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow { opacity: 1; }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(12, 24, 41, 0.7) 0%, transparent 100%);
}

.header.scrolled {
  background: rgba(12, 24, 41, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-menu a:hover {
  color: var(--gold-light);
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.nav-cta-wa {
  background: #25d366 !important;
  color: var(--white) !important;
}

.nav-cta-wa:hover {
  background: #1ebe57 !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12, 24, 41, 0.55) 0%, rgba(12, 24, 41, 0.75) 50%, rgba(12, 24, 41, 0.92) 100%),
    linear-gradient(135deg, rgba(26, 107, 122, 0.25) 0%, transparent 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem 0 6rem;
  color: var(--white);
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  gap: 0.6rem;
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 2rem;
}

.btn-whatsapp-large svg {
  width: 26px;
  height: 26px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  max-width: 560px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */
.section {
  padding: 7rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-desc {
  max-width: 520px;
  margin: 1rem auto 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--sea);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== About ===== */
.about-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.about-image-badge span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.about-image-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}

.about-text .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.about-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 169, 98, 0.15);
  transition: var(--transition);
}

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

.about-card-accent {
  background: var(--navy);
  color: var(--white);
}

.about-card-accent h3 { color: var(--gold); }
.about-card-accent p { color: rgba(255, 255, 255, 0.7); }
.about-card-accent .about-card-icon { color: var(--gold); }

.about-card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== Services ===== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sea-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  background: var(--white);
  border-color: rgba(201, 169, 98, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 169, 98, 0.25);
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Why Us ===== */
.why {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(26, 107, 122, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why .section-tag { color: var(--gold); }
.why .section-title { color: var(--white); }
.why .section-title em { color: var(--gold-light); }

.why-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.why-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.why-list p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.why-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201, 169, 98, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.why-image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--white);
  padding-bottom: 5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  cursor: pointer;
}

.gallery-item-large {
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}


/* ===== Alanya ===== */
.alanya {
  position: relative;
  overflow: hidden;
}

.alanya-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.alanya-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alanya-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 24, 41, 0.88) 0%, rgba(26, 107, 122, 0.75) 100%);
}

.alanya .container {
  position: relative;
  z-index: 1;
}

.alanya-banner {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 4rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.alanya .section-tag { color: var(--gold); }

.alanya-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.alanya-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.alanya-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.alanya-address svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.alanya-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.alanya-feature {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.alanya-feature:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.alanya-feature span {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.alanya-feature small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* ===== Contact ===== */
.contact-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-box p {
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  font-size: 1.05rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.contact-list a,
.contact-static {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  min-height: 52px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-list a:active {
  background: var(--sand);
}

.contact-list a:hover {
  background: var(--sand);
  color: var(--gold-dark);
}

.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img {
  height: 40px;
  opacity: 0.95;
}

.footer-copy {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  transition: color 0.3s;
}

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

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
  right: 1rem;
  left: 1rem;
  width: auto;
  height: 56px;
  padding: 0 1.5rem;
  background: #25d366;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  color: white;
  flex-shrink: 0;
}

.whatsapp-float span {
  display: inline;
}

.whatsapp-float:active {
  transform: scale(0.98);
  background: #1ebe57;
}

@media (min-width: 769px) {
  .whatsapp-float {
    left: auto;
    width: 56px;
    padding: 0;
    border-radius: 50%;
    bottom: 2rem;
    right: 2rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  }
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .about-top,
  .about-cards,
  .why-grid,
  .alanya-banner {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 320px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item-large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-item-large {
    height: 280px;
  }

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

  .alanya-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(1140px, 94vw);
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.05rem;
    padding: 0.25rem 0;
  }

  .nav-cta {
    padding: 0.85rem 1.6rem !important;
    text-align: center;
    width: 100%;
  }

  .hero-content {
    padding: 6.5rem 0 7rem;
  }

  .hero-desc {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
  }

  .hero-scroll {
    display: none;
  }

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

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .alanya-banner {
    padding: 2.5rem 1.5rem;
  }

  .alanya-features {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-item-large {
    grid-column: span 1;
    height: 240px;
  }

  .gallery-item {
    height: 180px;
  }

  .contact-box {
    padding: 2rem 1.25rem;
  }

  .why-image-frame img {
    height: 280px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 4rem 0;
  }

  main {
    padding-bottom: 5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

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

  .about-top {
    gap: 2rem;
  }

  .about-image img {
    height: 260px;
  }

  .alanya-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .alanya-feature {
    padding: 1rem 0.75rem;
  }

  .contact-list a,
  .contact-static {
    font-size: 0.88rem;
    padding: 0.9rem 1rem;
  }
}
