/* =========================================
   RESET & SYSTEM CONSTANTS
========================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  /* Colors */
  --primary: #246BF5;
  --primary-hover: #004FD6;
  --primary-light: #EFF6FF;
  --dark: #0F172A;
  --dark-hover: #1E293B;
  --text: #475569;
  --text-muted: #64748B;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --border: #E2E8F0;
  --border-hover: #94A3B8;
  --border-dark: #0F172A;

  /* Typography */
  --font-main: "Plus Jakarta Sans", "Inter", sans-serif;

  /* Spacing */
  --container-width: 1200px;
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

body {
  font-family: var(--font-main);
  background: #FFFFFF;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Utilities */
.container {
  width: min(92%, var(--container-width));
  margin: 0 auto;
}

section {
  padding: 100px 0;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Common Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(36, 107, 245, 0.15);
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--dark);
}

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

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--primary);
  transition: all 0.2s ease;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

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

/* =========================================
   HEADER & NAVIGATION
========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-mobile-header {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-link {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
}

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

/* Mobile Menu Button */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 101;
}

.menu-btn span {
  width: 100%;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  background: var(--bg-light);
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px 60px;
  align-items: center;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
}

.hero-image {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hero-info {
  grid-column: 1;
  grid-row: 2;
}

.hero-label {
  display: inline-block;
  padding: 6px 14px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-info {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--text-muted);
}

.info-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.hero-image img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: left top;
}

/* =========================================
   TRUST BAR
========================================= */
.trust-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  padding: 0;
}

/* Compact horizontal strip — no cards */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-right: 1px solid var(--border);
  transition: background 0.2s ease;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: var(--bg-light);
}

.trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-item h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.trust-item p {
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* =========================================
   ABOUT
========================================= */
.about {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-content h3 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-content > p {
  color: var(--text);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.feature:hover {
  border-color: var(--border-hover);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--dark);
}

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


/* =========================================
   SERVICES SECTION (Symmetrical Layout)
========================================= */
.services {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.services-symmetrical-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Service Strip Rows (Flat design, no cards, simple divider lines) */
.service-strip-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s ease;
}

.service-strip-item:last-child {
  border-bottom: none;
}

.services-left-col .service-strip-item {
  text-align: right;
  flex-direction: row-reverse;
}

.service-strip-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.6;
  margin-top: 3px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.service-strip-item:hover .service-strip-num {
  opacity: 1;
}

.service-strip-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.service-strip-content p {
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Center Image Column */
.services-center-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.services-center-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1.1;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
}

.services-center-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-center-action .btn-primary {
  padding: 14px 28px;
}



/* =========================================
   GALLERY (True Visual Overlay Redesign)
========================================= */
.gallery {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}

.gallery-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  aspect-ratio: 16/11;
  background: var(--dark);
}

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

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

/* Overlay Details sliding/fading on hover */
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  padding: 40px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.overlay-text {
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-showcase-item:hover .overlay-text {
  transform: translateY(0);
}

.overlay-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--primary);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.overlay-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.overlay-text p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px 32px;
  position: relative;
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
}

.quote-icon {
  font-size: 3.5rem;
  font-family: serif;
  color: rgba(36, 107, 245, 0.15);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.quote {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-author strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =========================================
   APPOINTMENT SECTION
========================================= */
.appointment-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}

.appointment-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px;
}

.appointment-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 36px;
}

.appointment-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.appointment-header p {
  color: var(--text);
}

.appointment-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid var(--border);
  color: var(--dark);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--border-hover);
}

.appointment-form .btn-primary {
  width: 100%;
}

.form-message {
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  position: relative;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--primary);
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.25s ease;
}

.contact-item:hover {
  border-left-color: var(--dark);
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.contact-item p {
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-map {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
  text-align: center;
  gap: 20px;
  flex-grow: 1;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.map-placeholder p {
  font-size: 1.1rem;
  font-weight: 700;
  max-width: 320px;
}

.map-placeholder .btn-secondary {
  width: 100%;
  max-width: 260px;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: var(--dark);
  color: #FFFFFF;
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 56px;
  width: auto;
  align-self: flex-start;
  border-radius: var(--radius-sm);
}

.footer h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #64748B;
}

/* =========================================
   MODAL
========================================= */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #FFFFFF;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 36px;
  width: min(90%, 480px);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--dark);
}

.modal h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal p {
  color: var(--text);
  margin-bottom: 24px;
}

.modal-info-list {
  display: grid;
  gap: 12px;
}

.modal-info-item {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
}

.modal-info-item a {
  color: var(--primary);
  font-weight: 800;
}

/* =========================================
   TABLETS & LAPTOPS RESPONSIVE (1200px / 992px)
========================================= */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
  .about-grid {
    gap: 40px;
  }
  .services-symmetrical-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .services-center-feature {
    grid-column: span 2;
    order: -1; /* Place image feature at top on smaller laptops */
  }
}

@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }
  
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-symmetrical-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-center-feature {
    grid-column: span 1;
  }

  .services-left-col .service-strip-item {
    text-align: left;
    flex-direction: row;
  }

  .hero {
    padding: 48px 0 60px;
  }

  .hero-content,
  .hero-image,
  .hero-info {
    grid-column: auto;
    grid-row: auto;
  }


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

  .hero-buttons {
    justify-content: center;
  }

  .hero-info {
    justify-content: center;
  }

  .hero-image img {
    aspect-ratio: 16/9;
    max-height: 320px;
    width: 100%;
  }

  .about-image img {
    aspect-ratio: 16/10;
    max-height: 400px;
  }
  
  .gallery-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================================
   PORTRAIT TABLETS RESPONSIVE (768px)
========================================= */
@media (max-width: 768px) {
  /* Header & Navigation Drawer */
  .menu-btn {
    display: flex;
  }
  
  .menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .menu-btn.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #FFFFFF;
    border-left: 1px solid var(--border-dark);
    flex-direction: column;
    padding: 40px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  
  .nav-menu.show {
    transform: translateX(0);
  }
  
  .nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 12px;
  }
  
  .nav-mobile-header h3 {
    font-weight: 800;
  }
  
  .close-btn {
    font-size: 1.75rem;
    cursor: pointer;
  }

  .nav-menu a {
    font-size: 1.05rem;
    padding: 4px 0;
  }
  
  .nav-actions {
    display: none;
  }
  
  /* Grids */
  .services-grid-wrapper {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .appointment-card {
    padding: 32px 24px;
  }
  
  .gallery-item-overlay {
    padding: 24px;
  }
}

/* =========================================
   MOBILE RESPONSIVE (480px)
========================================= */
@media (max-width: 480px) {
  section {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
  }

  .hero p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-label {
    font-size: 0.65rem;
    padding: 5px 10px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }

  .hero-info {
    flex-direction: column;
    gap: 20px;
  }

  .gallery-showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}
