@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --clr-bg: #0C0D15;
  --clr-surface: #13141F;
  --clr-text: #F2F2F2;
  --clr-muted: #8C90A5;
  --clr-accent: #C86DD7;
  --clr-accent-2: #6DB4D7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--clr-accent-2);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 1.5rem 0;
}

header.scrolled {
  background-color: rgba(12, 13, 21, 0.95);
  backdrop-filter: blur(10px);
}

header.hidden {
  transform: translateY(-100%);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--clr-text);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--clr-text);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--clr-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(200, 109, 215, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--clr-text) 0%, var(--clr-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--clr-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 500px;
}

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  min-width: fit-content;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-2) 100%);
  color: var(--clr-bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 109, 215, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-text);
  border: 2px solid var(--clr-text);
}

.btn-secondary:hover {
  background: var(--clr-text);
  color: var(--clr-bg);
}

.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--clr-surface);
  padding: 3rem 2rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(200, 109, 215, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(200, 109, 215, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--clr-accent);
}

.service-card p {
  color: var(--clr-muted);
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--clr-accent);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 4rem 0;
}

.before-after-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.before-after-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.before-after-item:hover img {
  transform: scale(1.05);
}

.before-after-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(12, 13, 21, 0.95), transparent);
  padding: 2rem;
  color: var(--clr-text);
}

.before-after-label h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lookbook-item:hover {
  transform: translateY(-10px);
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(12, 13, 21, 0.9), transparent);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.lookbook-item:hover .lookbook-caption {
  transform: translateY(0);
}

.package-card {
  background: var(--clr-surface);
  padding: 3rem;
  border-radius: 4px;
  margin-bottom: 3rem;
  border: 1px solid rgba(200, 109, 215, 0.2);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--clr-accent), var(--clr-accent-2));
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 2rem;
}

.package-title {
  font-size: 2.5rem;
  color: var(--clr-accent);
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-text);
}

.package-description {
  color: var(--clr-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.75rem 0;
  color: var(--clr-text);
  position: relative;
  padding-left: 2rem;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: bold;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.process-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: var(--clr-surface);
  border-radius: 4px;
  border: 1px solid rgba(200, 109, 215, 0.1);
}

.cta-panel {
  background: var(--clr-surface);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 4px;
  border: 2px solid var(--clr-accent);
  margin: 4rem 0;
}

.cta-panel h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-panel p {
  color: var(--clr-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--clr-surface);
  padding: 3rem;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--clr-text);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--clr-bg);
  border: 1px solid rgba(200, 109, 215, 0.2);
  border-radius: 4px;
  color: var(--clr-text);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.contact-block {
  text-align: center;
  padding: 2rem;
  background: var(--clr-surface);
  border-radius: 4px;
}

.contact-block h3 {
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 2rem;
}

.thanks-page img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.thanks-message {
  font-size: 1.5rem;
  color: var(--clr-accent);
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-page h1 {
  font-size: 6rem;
  margin-bottom: 1rem;
  color: var(--clr-accent);
}

.error-page p {
  font-size: 1.2rem;
  color: var(--clr-muted);
  margin-bottom: 2rem;
}

footer {
  background: var(--clr-surface);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(200, 109, 215, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.footer-info {
  color: var(--clr-muted);
  margin-bottom: 1.5rem;
  line-height: 2;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.footer-links a {
  color: var(--clr-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--clr-accent);
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 13, 21, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.overlay-menu.active {
  display: flex;
}

.overlay-menu-content {
  text-align: center;
}

.overlay-menu-links {
  list-style: none;
}

.overlay-menu-links li {
  margin: 2rem 0;
}

.overlay-menu-links a {
  font-size: 2rem;
  color: var(--clr-text);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.overlay-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 13, 21, 0.98);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
    font-size: 1.3rem;
  }

  .overlay-menu-close {
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
  }

  .lightbox-close {
    top: -2.5rem;
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .hero {
    padding: 6rem 1rem 2rem;
    min-height: auto;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    padding-right: 0;
  }

  .hero p {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-image img {
    max-height: 50vh;
    width: 100%;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section[style*="padding-top: 10rem"] {
    padding-top: 8rem !important;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  h2[style*="font-size: 2.5rem"] {
    font-size: 2rem !important;
  }

  h3[style*="font-size: 1.5rem"] {
    font-size: 1.3rem !important;
  }

  p[style*="font-size: 1.1rem"] {
    font-size: 1rem !important;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .package-card {
    padding: 2rem 1.5rem;
  }

  .package-header {
    flex-direction: column;
    gap: 1rem;
  }

  .package-title {
    font-size: 2rem;
  }

  .package-price {
    font-size: 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  div[style*="text-align: left"] {
    text-align: center !important;
  }

  div[style*="text-align: center"] {
    text-align: center !important;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }

  .btn[style*="width: 100%"] {
    width: 100% !important;
  }

  .btn[style*="display: inline-block"] {
    display: block !important;
    width: 100%;
    margin-top: 1rem;
  }

  .btn[style*="margin-top"] {
    margin-top: 1rem !important;
  }

  .service-card .btn,
  .package-card .btn,
  .benefit-item .btn {
    width: 100%;
    margin-top: 1rem;
  }

  a.btn {
    text-decoration: none;
  }

  .contact-form {
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thanks-page {
    padding: 6rem 1.5rem 2rem;
    min-height: calc(100vh - 200px);
  }

  .thanks-page img {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .thanks-page p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
    padding: 0 1rem;
  }

  .thanks-page .btn {
    width: 100%;
    max-width: 300px;
  }

  div[style*="text-align: left"] {
    text-align: center !important;
  }

  h2[style*="text-align: left"] {
    text-align: center !important;
  }

  div[style*="display: flex"][style*="align-items: start"] {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 1rem !important;
  }

  div[style*="display: flex"][style*="align-items: start"] i {
    margin-top: 0 !important;
  }

  div[style*="max-width: 900px"] {
    padding: 0 1rem;
  }

  div[style*="max-width: 800px"] {
    padding: 0 1rem;
  }

  div[style*="margin-bottom: 2rem"] {
    margin-bottom: 1.5rem !important;
  }

  div[style*="margin-bottom: 4rem"] {
    margin-bottom: 2rem !important;
  }

  p[style*="margin-bottom: 2rem"] {
    margin-bottom: 1.5rem !important;
  }

  p[style*="margin-bottom: 4rem"] {
    margin-bottom: 2rem !important;
  }

  h2[style*="margin-bottom: 2rem"] {
    margin-bottom: 1.5rem !important;
  }

  h3[style*="margin-bottom: 1rem"] {
    margin-bottom: 0.75rem !important;
  }

  h3[style*="margin-bottom: 0.5rem"] {
    margin-bottom: 0.5rem !important;
  }

  .cta-panel {
    padding: 3rem 1.5rem;
  }

  .cta-panel h2 {
    font-size: 2rem;
  }

  .cta-panel p {
    font-size: 1rem;
  }

  img[style*="width: 100%"] {
    max-width: 100%;
    height: auto;
  }

  i[data-lucide][style*="width: 64px"],
  i[data-lucide][style*="width: 56px"],
  i[data-lucide][style*="width: 48px"] {
    width: 40px !important;
    height: 40px !important;
  }

  div[style*="width: 50px"][style*="height: 50px"] {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }

  div[style*="width: 60px"][style*="height: 60px"] {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.3rem !important;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .section > .container > div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .section > .container > div[style*="grid-template-columns: repeat(3, 1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .section > .container > div[style*="grid-template-columns: repeat(2, 1fr)"],
  div[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  div[style*="padding: 4rem 3rem"] {
    padding: 2rem 1.5rem !important;
  }

  div[style*="margin: 4rem 0"] {
    margin: 2rem 0 !important;
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.98);
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .menu-toggle {
    font-size: 1.2rem;
    min-width: 40px;
    min-height: 40px;
  }

  .overlay-menu-close {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.3rem;
    min-width: 40px;
    min-height: 40px;
  }

  .lightbox-close {
    top: -2rem;
    font-size: 1.3rem;
    min-width: 40px;
    min-height: 40px;
  }

  .hero {
    padding: 5rem 0.5rem 1.5rem;
    min-height: auto;
  }

  .hero .container {
    gap: 1.5rem;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-image img {
    max-height: 40vh;
  }

  .section {
    padding: 3rem 0.5rem;
  }

  .section[style*="padding-top: 10rem"] {
    padding-top: 6rem !important;
  }

  p[style*="font-size: 1.2rem"] {
    font-size: 1rem !important;
  }

  p[style*="margin-bottom: 4rem"] {
    margin-bottom: 2rem !important;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  h2[style*="font-size: 2.5rem"] {
    font-size: 1.75rem !important;
  }

  h2[style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
  }

  h3[style*="font-size: 1.5rem"] {
    font-size: 1.2rem !important;
  }

  h3[style*="font-size: 1.3rem"] {
    font-size: 1.1rem !important;
  }

  p[style*="font-size: 1.1rem"] {
    font-size: 0.95rem !important;
  }

  div[style*="text-align: left"] {
    text-align: center !important;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .package-card {
    padding: 1.5rem 1rem;
  }

  .package-title {
    font-size: 1.75rem;
  }

  .package-price {
    font-size: 1.25rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-item {
    padding: 1.5rem 1rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }

  .cta-buttons {
    gap: 0.75rem;
  }

  .btn[style*="width: 100%"] {
    width: 100% !important;
  }

  .btn[style*="display: inline-block"] {
    display: block !important;
    width: 100%;
  }

  .btn[style*="margin-top"] {
    margin-top: 0.75rem !important;
  }

  .service-card .btn,
  .package-card .btn,
  .benefit-item .btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.7rem 1rem;
  }

  .cta-buttons .btn {
    padding: 0.7rem 1rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .cta-panel {
    padding: 2rem 1rem;
  }

  .cta-panel h2 {
    font-size: 1.75rem;
  }

  .cta-panel p {
    font-size: 1rem;
  }

  i[data-lucide][style*="width: 64px"],
  i[data-lucide][style*="width: 56px"],
  i[data-lucide][style*="width: 48px"] {
    width: 32px !important;
    height: 32px !important;
  }

  div[style*="width: 50px"][style*="height: 50px"] {
    width: 35px !important;
    height: 35px !important;
    font-size: 1rem !important;
  }

  div[style*="width: 60px"][style*="height: 60px"] {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.1rem !important;
  }

  .footer-content {
    padding: 2rem 1rem;
  }

  .footer-brand {
    font-size: 1.2rem;
  }

  .footer-info {
    font-size: 0.85rem;
  }

  .section > .container > div[style*="grid-template-columns"],
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .section > .container > div[style*="padding: 4rem"],
  div[style*="padding: 4rem 3rem"] {
    padding: 1.5rem 1rem !important;
  }

  div[style*="margin: 4rem 0"] {
    margin: 1.5rem 0 !important;
  }

  div[style*="gap: 4rem"] {
    gap: 1.5rem !important;
  }

  div[style*="gap: 3rem"] {
    gap: 1rem !important;
  }

  .before-after {
    gap: 1.5rem;
  }

  .contact-layout {
    gap: 1.5rem;
  }

  .thanks-page {
    padding: 5rem 1rem 1.5rem;
    min-height: calc(100vh - 150px);
  }

  .thanks-page img {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .thanks-message {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }

  .thanks-page p {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
    padding: 0 0.5rem;
  }

  .thanks-page .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1.25rem;
  }

  div[style*="display: flex"][style*="align-items: start"] {
    gap: 0.75rem !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }

  div[style*="display: flex"][style*="align-items: start"] i {
    width: 28px !important;
    height: 28px !important;
    margin-top: 0 !important;
  }

  h2[style*="text-align: left"] {
    text-align: center !important;
  }

  div[style*="max-width: 900px"],
  div[style*="max-width: 800px"] {
    padding: 0 0.5rem;
  }

  div[style*="margin-bottom: 2rem"] {
    margin-bottom: 1rem !important;
  }

  div[style*="margin-bottom: 4rem"] {
    margin-bottom: 1.5rem !important;
  }

  p[style*="margin-bottom: 2rem"] {
    margin-bottom: 1rem !important;
  }

  p[style*="margin-bottom: 4rem"] {
    margin-bottom: 1.5rem !important;
  }

  h2[style*="margin-bottom: 2rem"] {
    margin-bottom: 1rem !important;
  }

  h3[style*="margin-bottom: 1rem"] {
    margin-bottom: 0.5rem !important;
  }

  h3[style*="margin-bottom: 0.5rem"] {
    margin-bottom: 0.4rem !important;
  }

  .thanks-page .btn {
    max-width: 100%;
  }

  .process-steps {
    gap: 1rem;
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.97);
  }
}

