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

/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */
:root {
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  /* Color Palette */
  --primary: #c5a880;          /* Warm Champagne Gold */
  --primary-hover: #b3946d;
  --accent: #d4af37;           /* Bright Metallic Gold */
  --dark: #111111;             /* Rich Black */
  --dark-light: #1e1e1e;       /* Charcoal Black */
  --light: #fcfbfa;            /* Soft Linen White */
  --light-gray: #f4f1eb;       /* Muted Cream Gray */
  --border: #e6dfd5;           /* Soft Border Color */
  --text-dark: #1a1a1a;        /* High Contrast Text */
  --text-muted: #666666;      /* Low Contrast Text */
  --text-light: #ffffff;       /* Light Text */
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(197, 168, 128, 0.1), 0 10px 10px -5px rgba(197, 168, 128, 0.04);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

iframe {
  border: 0;
  display: block;
}

/* ==========================================================================
   Typography & Common Elements
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1rem;
}

.highlight {
  color: var(--primary);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ==========================================================================
   Layout & Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 7rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--primary);
}

.section-header p {
  font-size: 1.1rem;
}

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--dark);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary);
  color: var(--dark);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-secondary:hover {
  background-color: var(--dark);
  color: var(--text-light);
}

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

.btn-accent:hover {
  background-color: var(--dark);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(252, 251, 250, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(230, 223, 213, 0.5);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background-color: var(--light);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  transition: var(--transition-smooth);
}

.header.scrolled .navbar {
  height: 65px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-icon {
  font-size: 1.8rem;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link:hover {
  color: var(--primary);
}

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

.nav-link.active {
  color: var(--primary);
}

/* Call to Action Navbar */
.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--dark);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Header Segment (Generic for inner pages)
   ========================================================================== */
.hero-page {
  height: 45vh;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
}

.hero-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.hero-page-content {
  position: relative;
  z-index: 10;
  margin-top: 50px;
}

.hero-page-content h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: #ccc;
}

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

.breadcrumb span.active {
  color: var(--primary);
}

/* ==========================================================================
   ANA SAYFA (index.html) ÖZEL STİLLERİ
   ========================================================================== */
/* Main Home Hero */
.hero {
  height: 100vh;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-content span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  color: #dddddd;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.2s ease;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1.4s ease;
}

/* Intro Section */
.intro-text h3 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  margin-bottom: 1.5rem;
}

.intro-img {
  position: relative;
  padding-left: 20px;
  padding-bottom: 20px;
}

.intro-img img {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.intro-img::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border: 2px solid var(--primary);
  z-index: -1;
  transition: var(--transition-smooth);
}

.intro-img:hover::before {
  transform: translate(-10px, 10px);
}

/* Services Overview Cards */
.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card-img {
  height: 250px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-content {
  padding: 2rem;
  text-align: center;
}

.service-card-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.service-card-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
}

.service-card-link:hover {
  color: var(--dark);
  border-color: var(--dark);
}

/* Testimonial Section */
.testimonials-sec {
  background-color: var(--light-gray);
}

.testimonial-card {
  background: var(--light);
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-client {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.client-job {
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Banner Promo / CTA */
.cta-banner {
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--text-light);
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.cta-banner-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.cta-banner-content p {
  color: #ccc;
  margin-bottom: 2rem;
}

/* ==========================================================================
   HAKKIMIZDA (hakkimizda.html) ÖZEL STİLLERİ
   ========================================================================== */
.about-stats {
  background-color: var(--light-gray);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
}

/* Stylist / Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.team-member {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-smooth);
}

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

.team-member-img {
  height: 380px;
  overflow: hidden;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-member:hover .team-member-img img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 1.5rem;
}

.team-member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.team-member-info span {
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   HİZMETLER & FİYATLAR (hizmetler.html) ÖZEL STİLLERİ
   ========================================================================== */
.menu-category {
  margin-bottom: 4rem;
}

.menu-category-title {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 2rem;
  text-align: center;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
}

.price-name-desc {
  max-width: 75%;
}

.price-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.price-dots {
  flex-grow: 1;
  border-bottom: 1px dotted var(--primary);
  margin: 0 1rem;
  height: 1px;
}

.price-val {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
}

/* Interactive FAQ Accordion */
.faq-sec {
  background-color: var(--light-gray);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
  user-select: none;
}

.faq-question:hover {
  background-color: var(--light-gray);
  color: var(--primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-family: var(--font-sans);
  color: var(--primary);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--light);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* arbitrary height to transition */
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--light-gray);
}

/* ==========================================================================
   GALERİ (galeri.html) ÖZEL STİLLERİ
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.6rem 1.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 2rem;
  text-align: center;
}

.gallery-overlay h3 {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay span {
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

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

/* Hide animations for filtering */
.gallery-item.hide {
  display: none;
}

/* ==========================================================================
   İLETİŞİM (iletisim.html) ÖZEL STİLLERİ
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
}

.contact-info-icon {
  font-size: 1.8rem;
  color: var(--primary);
  width: 50px;
  height: 50px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-content h4 {
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  line-height: 1.5;
}

/* Form Styles */
.contact-form-panel {
  background-color: var(--bg-card);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-form-panel h3 {
  margin-bottom: 1.5rem;
}

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

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

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  background-color: var(--light);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--text-light);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.map-sec {
  height: 450px;
  width: 100%;
}

.map-sec iframe {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h4 {
  color: var(--text-light);
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--primary);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-hours ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
}

.footer-hours span {
  color: var(--primary);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Media Queries (Responsive Layouts)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-member-img {
    height: 340px;
  }
}

@media screen and (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  .section-padding {
    padding: 4.5rem 0;
  }
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .intro-img {
    padding-left: 0;
    padding-bottom: 0;
    max-width: 500px;
    margin: 0 auto;
  }
  .intro-img::before {
    display: none;
  }
  
  /* Mobile Menu Styles */
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--light);
    flex-direction: column;
    padding: 100px 2.5rem 2.5rem 2.5rem;
    gap: 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    z-index: 1050;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-cta {
    display: none; /* Hide top CTA on mobile */
  }

  .hero {
    height: 90vh;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-panel {
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .grid-4, .gallery-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 280px;
  }
  .hero-page-content h1 {
    font-size: 2.5rem;
  }
}
