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

:root {
  --sand: #F5E6C8;
  --ocean: #1A4A6B;
  --wave: #2E8B8B;
  --foam: #E8F4F4;
  --coral: #E8573A;
  --dark: #0D1F2D;
  --light: #FAFAF7;
  --gold: #C9A84C;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 10px 25px rgba(13, 31, 45, 0.10);
  --shadow-md: 0 22px 60px rgba(13, 31, 45, 0.14);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ring: 0 0 0 4px rgba(46, 139, 139, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── SMOOTH INTERACTIONS ─────────────────────── */
a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 10px;
}

/* ── NAVIGATION ─────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

nav.scrolled {
  background: rgba(13, 31, 45, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  letter-spacing: 3px;
}

.nav-logo span {
  color: var(--wave);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  position: relative;
}

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

.nav-links a:hover {
  color: white;
}

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

.nav-links a.active {
  color: white;
}

.nav-cta {
  background: var(--coral);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(232, 87, 58, 0.28);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

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

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(232, 87, 58, 0.34);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 31, 45, 0.6) 0%, rgba(26, 74, 107, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 750px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-block;
  background: var(--wave);
  color: white;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 9rem);
  color: white;
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--wave);
  font-style: normal;
}

.hero-sub {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: var(--sand);
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--coral);
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(232, 87, 58, 0.25);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  border: 2px solid var(--coral);
}

.btn-primary:hover {
  background: transparent;
  color: var(--coral);
  transform: translateY(-1px);
  box-shadow: 0 24px 70px rgba(232, 87, 58, 0.18);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::before {
  content: '';
  width: 1px;
  height: 50px;
  background: white;
  animation: scrollLine 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 0;
  }

  50% {
    height: 50px;
    opacity: 1;
  }

  100% {
    height: 0;
    opacity: 0;
  }
}

/* ── SECTIONS ────────────────────────────────── */
section {
  padding: 6rem 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--wave);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--dark);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.section-title em {
  color: var(--wave);
  font-style: normal;
}

.section-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #6B7280;
  font-size: 1.1rem;
  max-width: 550px;
  line-height: 1.8;
}

/* ── SERVICES HOME ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.service-card {
  background: var(--dark);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--wave);
  transition: width 0.4s;
}

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

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials-section {
  background: var(--dark);
  color: white;
}

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

.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.testimonial-card:hover {
  border-color: var(--wave);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--wave);
  line-height: 1;
  opacity: 0.6;
  margin-bottom: -1rem;
}

.testimonial-card p {
  font-family: 'Quicksand', sans-serif;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wave);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}

.author-info strong {
  display: block;
  color: white;
  font-size: 0.9rem;
}

.author-info span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* ── PRICING TABLE ───────────────────────────── */
.pricing-section {
  background: var(--foam);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.pricing-table th {
  background: var(--dark);
  color: white;
  padding: 1.5rem 2rem;
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.pricing-table th.highlight {
  background: var(--wave);
}

.pricing-table td {
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--dark);
}

.pricing-table tr:nth-child(even) td {
  background: rgba(46, 139, 139, 0.05);
}

.pricing-table tr:hover td {
  background: rgba(46, 139, 139, 0.1);
}

.pricing-table td.highlight {
  background: rgba(46, 139, 139, 0.08);
  font-weight: 600;
  color: var(--wave);
}

.pricing-table tr:hover td.highlight {
  background: rgba(46, 139, 139, 0.18);
}

.price-badge {
  background: var(--coral);
  color: white;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 999px;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--dark);
  color: white;
  padding: 5rem 4rem 2rem;
}

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

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-links a:hover {
  border-color: var(--wave);
  background: var(--wave);
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--wave);
}

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

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: white;
}

/* ── PAGE HEADER ─────────────────────────────── */
.page-header {
  height: 45vh;
  min-height: 350px;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600') center/cover no-repeat;
  opacity: 0.3;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  color: white;
  line-height: 1;
  letter-spacing: 2px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--wave);
  text-decoration: none;
}

/* ── TEAM GRID ───────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.team-card figure {
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.team-card figure img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s;
  filter: grayscale(20%);
}

.team-card:hover figure img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.team-card figcaption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.team-card figcaption span {
  color: var(--wave);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── DETAILS/SUMMARY ─────────────────────────── */
.services-list {
  margin-top: 3rem;
}

details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

details:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

summary {
  padding: 1.8rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  transition: color 0.3s;
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover {
  color: var(--wave);
}

.summary-icon {
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

details[open] .summary-icon {
  transform: rotate(45deg);
  background: var(--wave);
  border-color: var(--wave);
  color: white;
}

.details-content {
  padding: 0 0 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  color: #555;
  line-height: 1.8;
}

.details-content ul {
  padding-left: 1.2rem;
}

.details-content ul li {
  margin-bottom: 0.4rem;
}

/* ── GALLERY ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.5rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
  transition: transform 0.5s, filter 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 45, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
  font-size: 2rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ── CONTACT ─────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  margin-top: 4rem;
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--wave);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  color: var(--wave);
}

.contact-detail-text p {
  color: #555;
  line-height: 1.6;
}

.map-container {
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(13, 31, 45, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: none;
}

/* ── FORM ────────────────────────────────────── */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  outline: none;
  border-radius: var(--radius-md);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wave);
  box-shadow: var(--ring);
}

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

.form-group input[type="range"] {
  padding: 0;
  height: 4px;
  accent-color: var(--wave);
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.5rem;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: auto;
  margin-right: 0.5rem;
  accent-color: var(--wave);
}

.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.btn-submit {
  background: var(--dark);
  color: white;
  padding: 1.1rem 3rem;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  width: 100%;
}

.btn-submit:hover {
  background: var(--wave);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── REDUCED MOTION ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── WAVE DIVIDER ────────────────────────────── */
.wave-divider {
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.wave-divider svg {
  display: block;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  section {
    padding: 5rem 2.5rem;
  }

  nav {
    padding: 1.2rem 2.5rem;
  }

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

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

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

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

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

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .details-content {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 2rem 1.5rem;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.8rem 1rem;
  }
}