/* ============================================================
   SUVED CREATIONS - Common Styles
   Shared across all pages
   ============================================================ */

/* --- CSS Variables --- */
:root {
  /* Colors — Apple-inspired light premium theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f7;
  --bg-tertiary: #fbfbfd;
  --bg-light: #f5f5f7;
  --bg-light-2: #e8e8ed;
  --bg-card: #ffffff;
  --bg-dark: #1d1d1f;

  --text-light: #1d1d1f;
  --text-light-muted: #86868b;
  --text-dark: #1d1d1f;
  --text-dark-muted: #6e6e73;

  --accent: #c9a96e;
  --accent-light: #d4bb84;
  --accent-dark: #a68b4b;
  --accent-rgb: 201, 169, 110;

  /* Typography */
  --font-heading: "Playfair Display", "Georgia", serif;
  --font-body: "DM Sans", "Helvetica Neue", sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 150px);
  --container-width: 1400px;
  --container-padding: clamp(20px, 5vw, 80px);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  /* Z-index layers */
  --z-cursor: 9999;
  --z-preloader: 9998;
  --z-menu-overlay: 9000;
  --z-header: 8000;
  --z-above: 100;
  --z-default: 1;
  --z-below: -1;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  position: relative;
}

/* Noise overlay for texture */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: var(--z-above);
  opacity: 0.15;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

::selection {
  background: var(--accent);
  color: #ffffff;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-light-muted);
}

.section-dark p {
  color: var(--text-light-muted);
}

.section-light p {
  color: var(--text-dark-muted);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-fluid {
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* --- Section Base --- */
.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
}

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

.section-dark-2 {
  background-color: var(--bg-secondary);
  color: var(--text-light);
}

.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* Alternating sections for visual rhythm */
.section-accent {
  background-color: var(--bg-secondary);
  color: var(--text-dark);
}

/* --- Section Header --- */
.section-header {
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 600px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
}

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

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1d1d1f;
  transition: left 0.5s var(--ease-out-expo);
  z-index: 0;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-text {
  padding: 0;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  position: relative;
}

.btn-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
}

.btn-text:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.4s var(--ease-out-expo);
}

.btn:hover .btn-arrow {
  transform: translate(4px, -4px);
}

/* --- Custom Cursor --- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s var(--ease-out-expo),
    height 0.4s var(--ease-out-expo),
    border-color 0.3s ease,
    background 0.3s ease;
}

.cursor-dot.cursor-hover {
  width: 60px;
  height: 60px;
  background: rgba(201, 169, 110, 0.12);
  mix-blend-mode: normal;
}

.cursor-ring.cursor-hover {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: var(--z-preloader);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--accent);
  opacity: 0;
  transform: translateY(20px);
  letter-spacing: 0.1em;
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.preloader-bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--accent);
}

.preloader-counter {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light-muted);
  letter-spacing: 0.1em;
}

body.loaded .preloader {
  pointer-events: none;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: var(--z-header);
  transition:
    padding 0.4s ease,
    background 0.4s ease;
}

.header.scrolled {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-padding);
}

.header-logo {
  position: relative;
  z-index: calc(var(--z-menu-overlay) + 1);
}

.header-logo img {
  height: 120px;
  width: auto;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-cta {
  margin-left: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
  z-index: calc(var(--z-menu-overlay) + 1);
  padding: 5px 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text-light);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-primary);
  z-index: var(--z-menu-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s var(--ease-out-expo),
    visibility 0.5s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-nav {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-overlay-link {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--text-light);
  display: block;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: color 0.3s ease;
}

.menu-overlay.active .menu-overlay-link {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay-link:hover {
  color: var(--accent);
}

/* Stagger animation delay */
.menu-overlay.active .menu-overlay-link:nth-child(1) {
  transition-delay: 0.1s;
}
.menu-overlay.active .menu-overlay-link:nth-child(2) {
  transition-delay: 0.15s;
}
.menu-overlay.active .menu-overlay-link:nth-child(3) {
  transition-delay: 0.2s;
}
.menu-overlay.active .menu-overlay-link:nth-child(4) {
  transition-delay: 0.25s;
}
.menu-overlay.active .menu-overlay-link:nth-child(5) {
  transition-delay: 0.3s;
}
.menu-overlay.active .menu-overlay-link:nth-child(6) {
  transition-delay: 0.35s;
}

.menu-overlay-footer {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 30px;
}

.menu-overlay-footer a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
}

.menu-overlay-footer a:hover {
  color: var(--accent);
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.footer-cta {
  padding: var(--section-padding) 0;
  text-align: center;
}

.footer-cta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 30px;
}

.footer-cta h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 40px;
  color: var(--text-light);
}

.footer-main {
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 25px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: var(--text-light-muted);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Image reveal with clip-path */
.img-reveal {
  overflow: hidden;
  position: relative;
}

.img-reveal img {
  transform: scale(1.3);
  transition: transform 1.2s var(--ease-out-expo);
}

.img-reveal.revealed img {
  transform: scale(1);
}

.img-reveal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.8s var(--ease-in-out);
}

.section-light .img-reveal::before {
  background: var(--bg-light);
}

.img-reveal.revealed::before {
  transform: scaleX(0);
}

/* Split text animation */
.split-line {
  overflow: hidden;
  display: block;
}

.split-line-inner {
  display: block;
  transform: translateY(100%);
  transition: transform 0.8s var(--ease-out-expo);
}

.revealed .split-line-inner {
  transform: translateY(0);
}

/* --- Marquee --- */
.marquee {
  overflow: hidden;
  padding: 30px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.12);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}

.marquee-item .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section-light .marquee-item {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Image Placeholder Fallback --- */
.img-placeholder {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-light-2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.img-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* --- Page Hero (shared across inner pages) --- */
.page-hero {
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3),
    rgba(10, 10, 10, 0.8)
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light-muted);
  margin-bottom: 20px;
}

.page-hero-breadcrumb a {
  color: var(--accent);
}

.page-hero-breadcrumb span {
  color: var(--text-light-muted);
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  color: #ffffff;
}

.page-hero-breadcrumb {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-breadcrumb a {
  color: var(--accent);
}

.page-hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Form Styles (shared) --- */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  margin-bottom: 10px;
}

.section-light .form-label {
  color: var(--text-dark-muted);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 15px 0;
  font-size: 1rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: var(--accent);
}

.section-light .form-input,
.section-light .form-textarea,
.section-light .form-select {
  color: var(--text-dark);
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.section-light .form-input:focus,
.section-light .form-textarea:focus,
.section-light .form-select:focus {
  border-bottom-color: var(--accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light-muted);
  opacity: 0.5;
}

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

.form-select {
  cursor: pointer;
  appearance: none;
}

/* --- Utility Classes --- */
.text-accent {
  color: var(--accent);
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overflow-hidden {
  overflow: hidden;
}
.relative {
  position: relative;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .page-hero {
    height: 60vh;
    min-height: 400px;
  }

  .header-logo img {
    height: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --section-padding: clamp(60px, 8vw, 100px);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .page-hero {
    height: 50vh;
    min-height: 350px;
  }

  .btn {
    padding: 14px 30px;
    font-size: 0.8rem;
  }

  .header-logo img {
    height: 60px;
  }

  h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .section-label::before {
    width: 20px;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .header-logo img {
    height: 50px;
  }
}
}
