/* Peyzaj Studio — Peyzaj & Bahçe Tasarımı */

:root {
  --gp-green: #2f6b3c;
  --gp-green-dark: #1e4a28;
  --gp-green-light: #4a8f5c;
  --gp-beige: #efe7d6;
  --gp-cream: #faf7f0;
  --gp-cream-dark: #e8dfd0;
  --gp-text: #2a2a24;
  --gp-text-muted: #5a5a50;
  --gp-white: #ffffff;
  --gp-radius: 24px;
  --gp-radius-sm: 14px;
  --gp-radius-lg: 40px;
  --gp-shadow: 0 8px 32px rgba(47, 107, 60, 0.12);
  --gp-shadow-lg: 0 16px 48px rgba(47, 107, 60, 0.18);
  --gp-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --gp-header-height: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gp-text);
  background: var(--gp-cream);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--gp-green-dark);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--gp-green-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.gp-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header: centered logo + nav below ── */
.gp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gp-cream);
  border-bottom: 2px solid var(--gp-beige);
  transition: box-shadow var(--gp-transition);
}

.gp-header--scrolled {
  box-shadow: var(--gp-shadow);
}

.gp-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px 12px;
  gap: 10px;
}

.gp-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--gp-green-dark);
}

.gp-logo__icon {
  width: 48px;
  height: 48px;
  background: var(--gp-green);
  border-radius: 50% 50% 50% 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.gp-logo__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gp-white);
}

.gp-logo__text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gp-logo__tagline {
  font-size: 0.72rem;
  color: var(--gp-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gp-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
}

.gp-nav__link {
  font-size: 0.95rem;
  color: var(--gp-text);
  padding: 6px 0;
  position: relative;
  font-family: system-ui, -apple-system, sans-serif;
  letter-spacing: 0.02em;
}

.gp-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gp-green);
  transition: width var(--gp-transition), left var(--gp-transition);
  border-radius: 2px;
}

.gp-nav__link:hover::after,
.gp-nav__link--active::after {
  width: 100%;
  left: 0;
}

.gp-nav__link--active {
  color: var(--gp-green);
  font-weight: 600;
}

.gp-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.gp-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gp-green);
  border-radius: 2px;
  transition: var(--gp-transition);
}

/* ── Buttons ── */
.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--gp-transition);
  text-decoration: none;
}

.gp-btn--primary {
  background: var(--gp-green);
  color: var(--gp-white);
}

.gp-btn--primary:hover {
  background: var(--gp-green-dark);
  color: var(--gp-white);
  transform: translateY(-2px);
  box-shadow: var(--gp-shadow);
}

.gp-btn--outline {
  background: transparent;
  color: var(--gp-green);
  border: 2px solid var(--gp-green);
}

.gp-btn--outline:hover {
  background: var(--gp-green);
  color: var(--gp-white);
}

.gp-btn--light {
  background: var(--gp-white);
  color: var(--gp-green);
}

.gp-btn--light:hover {
  background: var(--gp-beige);
  color: var(--gp-green-dark);
}

/* ── Hero ── */
.gp-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 var(--gp-radius-lg) var(--gp-radius-lg);
}

.gp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 74, 40, 0.75) 0%,
    rgba(47, 107, 60, 0.45) 50%,
    rgba(47, 107, 60, 0.25) 100%
  );
  z-index: 1;
}

.gp-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: var(--gp-white);
}

.gp-hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.gp-hero h1 {
  color: var(--gp-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.gp-hero__text {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.7;
}

.gp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.gp-hero__leaf {
  position: absolute;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
}

.gp-hero__leaf--1 {
  top: 10%;
  right: 5%;
  width: 200px;
  transform: rotate(25deg);
}

.gp-hero__leaf--2 {
  bottom: 15%;
  left: 3%;
  width: 150px;
  transform: rotate(-15deg);
}

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

.gp-section--beige {
  background: var(--gp-beige);
}

.gp-section--green {
  background: var(--gp-green);
  color: var(--gp-white);
}

.gp-section--green h2,
.gp-section--green h3 {
  color: var(--gp-white);
}

.gp-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.gp-section__label {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gp-green-light);
  margin-bottom: 12px;
}

.gp-section--green .gp-section__label {
  color: var(--gp-beige);
}

.gp-section__header p {
  color: var(--gp-text-muted);
  font-size: 1.05rem;
}

.gp-section--green .gp-section__header p {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Philosophy ── */
.gp-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gp-philosophy__image {
  border-radius: var(--gp-radius-lg) var(--gp-radius-sm) var(--gp-radius-lg) var(--gp-radius-sm);
  overflow: hidden;
  box-shadow: var(--gp-shadow-lg);
}

.gp-philosophy__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.gp-philosophy__content h2 {
  margin-bottom: 20px;
}

.gp-philosophy__list {
  margin-top: 24px;
}

.gp-philosophy__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.gp-philosophy__list li::before {
  content: "🌿";
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* ── Service Cards ── */
.gp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gp-service-card {
  background: var(--gp-white);
  border-radius: var(--gp-radius);
  overflow: hidden;
  box-shadow: var(--gp-shadow);
  transition: transform var(--gp-transition), box-shadow var(--gp-transition);
}

.gp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gp-shadow-lg);
}

.gp-service-card__img {
  height: 200px;
  overflow: hidden;
}

.gp-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gp-service-card:hover .gp-service-card__img img {
  transform: scale(1.06);
}

.gp-service-card__body {
  padding: 24px;
}

.gp-service-card__body h3 {
  margin-bottom: 10px;
}

.gp-service-card__body p {
  color: var(--gp-text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.gp-service-card__link {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gp-service-card__link::after {
  content: "→";
  transition: transform var(--gp-transition);
}

.gp-service-card__link:hover::after {
  transform: translateX(4px);
}

/* ── Portfolio Filter ── */
.gp-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gp-filter__btn {
  padding: 10px 24px;
  border: 2px solid var(--gp-green);
  background: transparent;
  color: var(--gp-green);
  border-radius: 50px;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--gp-transition);
}

.gp-filter__btn:hover,
.gp-filter__btn--active {
  background: var(--gp-green);
  color: var(--gp-white);
}

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

.gp-portfolio-card {
  border-radius: var(--gp-radius);
  overflow: hidden;
  box-shadow: var(--gp-shadow);
  transition: opacity var(--gp-transition), transform var(--gp-transition);
}

.gp-portfolio-card.gp-hidden {
  display: none;
}

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

.gp-portfolio-card__compare {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}

.gp-portfolio-card__before,
.gp-portfolio-card__after {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
}

.gp-portfolio-card__before img,
.gp-portfolio-card__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-portfolio-card__after {
  opacity: 0;
}

.gp-portfolio-card__compare:hover .gp-portfolio-card__after {
  opacity: 1;
}

.gp-portfolio-card__compare:hover .gp-portfolio-card__before {
  opacity: 0;
}

.gp-portfolio-card__label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(47, 107, 60, 0.85);
  color: var(--gp-white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  transition: opacity 0.3s;
}

.gp-portfolio-card__compare:hover .gp-portfolio-card__label--before {
  opacity: 0;
}

.gp-portfolio-card__label--after {
  left: auto;
  right: 12px;
  background: rgba(239, 231, 214, 0.9);
  color: var(--gp-green-dark);
  opacity: 0;
}

.gp-portfolio-card__compare:hover .gp-portfolio-card__label--after {
  opacity: 1;
}

.gp-portfolio-card__info {
  padding: 20px;
  background: var(--gp-white);
}

.gp-portfolio-card__info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.gp-portfolio-card__info p {
  color: var(--gp-text-muted);
  font-size: 0.88rem;
}

.gp-portfolio-card__tag {
  display: inline-block;
  background: var(--gp-beige);
  color: var(--gp-green);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: system-ui, sans-serif;
  margin-top: 8px;
}

/* ── Steps ── */
.gp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.gp-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--gp-white);
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow);
  position: relative;
}

.gp-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gp-green);
  color: var(--gp-white);
  border-radius: 50% 50% 50% 12px;
  font-family: system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.gp-step h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.gp-step p {
  color: var(--gp-text-muted);
  font-size: 0.9rem;
}

/* ── Why Us ── */
.gp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.gp-why-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--gp-radius);
  backdrop-filter: blur(4px);
}

.gp-why-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50% 50% 50% 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.gp-why-item h3 {
  color: var(--gp-white);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.gp-why-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

/* ── Reviews ── */
.gp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gp-review {
  background: var(--gp-white);
  padding: 32px;
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow);
  position: relative;
}

.gp-review::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  color: var(--gp-beige);
  line-height: 1;
  font-family: Georgia, serif;
}

.gp-review__stars {
  color: #c9a84c;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.gp-review__text {
  font-style: italic;
  color: var(--gp-text);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.gp-review__author {
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gp-green);
}

.gp-review__location {
  font-size: 0.8rem;
  color: var(--gp-text-muted);
}

/* ── CTA ── */
.gp-cta {
  text-align: center;
  padding: 72px 24px;
  background: linear-gradient(135deg, var(--gp-beige) 0%, var(--gp-cream) 100%);
  border-radius: var(--gp-radius-lg);
  margin: 0 24px;
}

.gp-cta h2 {
  margin-bottom: 16px;
}

.gp-cta p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--gp-text-muted);
}

/* ── Page Hero (subpages) ── */
.gp-page-hero {
  background: var(--gp-green);
  color: var(--gp-white);
  padding: 60px 24px;
  text-align: center;
  border-radius: 0 0 var(--gp-radius-lg) var(--gp-radius-lg);
}

.gp-page-hero h1 {
  color: var(--gp-white);
  margin-bottom: 12px;
}

.gp-page-hero p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
}

.gp-breadcrumb {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  margin-bottom: 16px;
  opacity: 0.75;
}

.gp-breadcrumb a {
  color: var(--gp-beige);
}

.gp-breadcrumb a:hover {
  color: var(--gp-white);
}

/* ── About Page ── */
.gp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.gp-about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.gp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.gp-stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--gp-beige);
  border-radius: var(--gp-radius);
}

.gp-stat__number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gp-green);
  font-family: system-ui, sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.gp-stat__label {
  font-size: 0.88rem;
  color: var(--gp-text-muted);
}

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

.gp-team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--gp-white);
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow);
}

.gp-team-card__avatar {
  width: 80px;
  height: 80px;
  background: var(--gp-green);
  color: var(--gp-white);
  border-radius: 50% 50% 50% 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: system-ui, sans-serif;
  margin: 0 auto 16px;
}

.gp-team-card h3 {
  margin-bottom: 4px;
}

.gp-team-card__role {
  color: var(--gp-green-light);
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.gp-team-card p {
  color: var(--gp-text-muted);
  font-size: 0.9rem;
}

/* ── Contact Page ── */
.gp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.gp-contact-info {
  padding: 32px;
  background: var(--gp-beige);
  border-radius: var(--gp-radius);
}

.gp-contact-info h2 {
  margin-bottom: 24px;
}

.gp-contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.gp-contact-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gp-green);
  color: var(--gp-white);
  border-radius: 50% 50% 50% 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.gp-contact-item h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.gp-contact-item p,
.gp-contact-item a {
  font-size: 0.92rem;
  color: var(--gp-text-muted);
}

.gp-contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gp-cream-dark);
}

.gp-contact-hours h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.gp-contact-hours table {
  width: 100%;
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
}

.gp-contact-hours td {
  padding: 4px 0;
  color: var(--gp-text-muted);
}

.gp-contact-hours td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--gp-text);
}

.gp-form {
  background: var(--gp-white);
  padding: 36px;
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow);
}

.gp-form h2 {
  margin-bottom: 24px;
}

.gp-form__group {
  margin-bottom: 20px;
}

.gp-form__group label {
  display: block;
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gp-text);
}

.gp-form__group input,
.gp-form__group textarea,
.gp-form__group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gp-beige);
  border-radius: var(--gp-radius-sm);
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  background: var(--gp-cream);
  color: var(--gp-text);
  transition: border-color var(--gp-transition);
}

.gp-form__group input:focus,
.gp-form__group textarea:focus,
.gp-form__group select:focus {
  outline: none;
  border-color: var(--gp-green);
}

.gp-form__group textarea {
  min-height: 140px;
  resize: vertical;
}

.gp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gp-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gp-text-muted);
}

.gp-form__checkbox input {
  width: auto;
  margin-top: 4px;
}

.gp-form__success {
  display: none;
  padding: 16px;
  background: #e8f5e9;
  color: var(--gp-green-dark);
  border-radius: var(--gp-radius-sm);
  margin-top: 16px;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
}

.gp-form__success--visible {
  display: block;
}

/* ── Privacy Page ── */
.gp-privacy-content {
  max-width: 780px;
  margin: 0 auto;
}

.gp-privacy-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.gp-privacy-content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.gp-privacy-content p,
.gp-privacy-content li {
  color: var(--gp-text-muted);
  font-size: 0.95rem;
}

.gp-privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.gp-privacy-content li {
  margin-bottom: 6px;
}

.gp-privacy-content .gp-updated {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--gp-text-muted);
  margin-bottom: 32px;
}

/* ── Services Detail ── */
.gp-service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.gp-service-detail:nth-child(even) {
  direction: rtl;
}

.gp-service-detail:nth-child(even) > * {
  direction: ltr;
}

.gp-service-detail__image {
  border-radius: var(--gp-radius-lg) var(--gp-radius-sm) var(--gp-radius-lg) var(--gp-radius-sm);
  overflow: hidden;
  box-shadow: var(--gp-shadow-lg);
}

.gp-service-detail__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.gp-service-detail__content h2 {
  margin-bottom: 16px;
}

.gp-service-detail__content p {
  color: var(--gp-text-muted);
  margin-bottom: 16px;
}

.gp-service-detail__features {
  margin-top: 20px;
}

.gp-service-detail__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.gp-service-detail__features li::before {
  content: "✓";
  color: var(--gp-green);
  font-weight: 700;
  font-family: system-ui, sans-serif;
}

/* ── Footer ── */
.gp-footer {
  background: var(--gp-green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
  margin-top: 80px;
}

.gp-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gp-footer__brand .gp-logo__text {
  color: var(--gp-white);
  font-size: 1.4rem;
}

.gp-footer__brand .gp-logo__tagline {
  color: rgba(255, 255, 255, 0.5);
}

.gp-footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.gp-footer h4 {
  color: var(--gp-white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: system-ui, sans-serif;
}

.gp-footer__links li {
  margin-bottom: 10px;
}

.gp-footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
}

.gp-footer__links a:hover {
  color: var(--gp-white);
}

.gp-footer__contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
}

.gp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  font-family: system-ui, sans-serif;
}

.gp-footer__bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.gp-footer__bottom a:hover {
  color: var(--gp-white);
}

/* ── Cookie Banner ── */
.gp-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--gp-green-dark);
  color: var(--gp-white);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.gp-cookie--visible {
  transform: translateY(0);
}

.gp-cookie__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gp-cookie__text {
  flex: 1;
  min-width: 280px;
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
  line-height: 1.5;
}

.gp-cookie__text a {
  color: var(--gp-beige);
  text-decoration: underline;
}

.gp-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.gp-cookie__btn {
  padding: 10px 22px;
  border: none;
  border-radius: 50px;
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--gp-transition);
}

.gp-cookie__btn--accept {
  background: var(--gp-green-light);
  color: var(--gp-white);
}

.gp-cookie__btn--accept:hover {
  background: var(--gp-green);
}

.gp-cookie__btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gp-cookie__btn--reject:hover {
  color: var(--gp-white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Responsive: 1024px ── */
@media (max-width: 1024px) {
  .gp-services-grid,
  .gp-portfolio-grid,
  .gp-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

/* ── Responsive: 768px ── */
@media (max-width: 768px) {
  .gp-philosophy,
  .gp-about-grid,
  .gp-contact-grid,
  .gp-service-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gp-service-detail:nth-child(even) {
    direction: ltr;
  }

  .gp-why-grid {
    grid-template-columns: 1fr;
  }

  .gp-services-grid,
  .gp-portfolio-grid,
  .gp-reviews-grid,
  .gp-team-grid {
    grid-template-columns: 1fr;
  }

  .gp-steps {
    grid-template-columns: 1fr 1fr;
  }

  .gp-hero {
    min-height: 70vh;
  }

  .gp-section {
    padding: 60px 0;
  }

  .gp-form__row {
    grid-template-columns: 1fr;
  }

  .gp-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gp-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .gp-burger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .gp-header__inner {
    position: relative;
  }

  .gp-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    gap: 4px;
  }

  .gp-nav--open {
    display: flex;
  }

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

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

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

  .gp-cookie__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Responsive: 480px ── */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .gp-container {
    padding: 0 16px;
  }

  .gp-hero__content {
    padding: 60px 16px;
  }

  .gp-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .gp-btn {
    width: 100%;
    max-width: 280px;
  }

  .gp-steps {
    grid-template-columns: 1fr;
  }

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

  .gp-filter {
    gap: 8px;
  }

  .gp-filter__btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .gp-cta {
    margin: 0 16px;
    padding: 48px 20px;
  }

  .gp-form {
    padding: 24px;
  }

  .gp-portfolio-card__compare {
    height: 220px;
  }

  .gp-philosophy__image img,
  .gp-about-image img {
    height: 280px;
  }
}
