/* === VARIABLES & RESET === */
:root {
  --sapphire: #0f172a; /* Deep elegant blue */
  --sapphire-light: #1e293b;
  --gold: #d4af37; /* Classic French gold */
  --gold-hover: #b5942e;
  --cream: #f8fafc; /* Soft background */
  --white: #ffffff;
  --text-dark: #334155;
  --text-muted: #64748b;
  --border-color: #e2e8f0;

  --font-heading: "Cinzel Decorative", serif;
  --font-body: "Montserrat", sans-serif;

  --container-width: 1200px;
  --container-narrow: 800px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}

/* === UTILS === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.narrow-container {
  max-width: var(--container-narrow);
}
.section {
  padding: 120px 0;
  position: relative;
}

.bg-sapphire {
  background-color: var(--sapphire);
  color: var(--white);
}
.bg-light {
  background-color: var(--white);
}
.bg-cream {
  background-color: var(--cream);
}

.text-white {
  color: var(--white) !important;
}
.text-cream {
  color: #e2e8f0 !important;
}
.gold-text {
  color: var(--gold);
}
.text-muted-fr {
  color: var(--text-muted);
}

.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.full-width {
  width: 100%;
}

.shadow-elegant {
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
}

/* Slanted Section Dividers */
.slanted-top {
  clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
  padding-top: 150px;
}
.slanted-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%);
  padding-bottom: 150px;
}
.slanted-top-bottom {
  clip-path: polygon(0 5vw, 100% 0, 100% calc(100% - 5vw), 0 100%);
  padding: 150px 0;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sapphire);
}

.bg-sapphire h1,
.bg-sapphire h2,
.bg-sapphire h3 {
  color: var(--white);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}
h2.heading-fr {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sapphire);
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.sub-heading-fr {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* === BUTTONS & LINKS === */
.btn-gold,
.btn-sapphire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #dfbe63);
  color: var(--sapphire);
  box-shadow: 0 10px 20px -10px rgba(212, 175, 55, 0.5);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px rgba(212, 175, 55, 0.7);
}

.btn-sapphire {
  background-color: var(--sapphire);
  color: var(--white);
}
.btn-sapphire:hover {
  background-color: var(--sapphire-light);
  transform: translateY(-3px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  border-radius: 4px;
}
.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--sapphire);
}

.btn-text-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gold);
}
.btn-text-gold:hover {
  gap: 12px;
}

.link-arrow-gold {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.link-arrow-gold:hover {
  gap: 15px;
  color: var(--sapphire);
}

.large-btn {
  padding: 18px 40px;
  font-size: 1.1rem;
}
.small-btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* === HEADER === */
.header-fr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  transition: var(--transition);
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--sapphire);
}
.logo-svg.animated circle {
  transform-box: fill-box;
  transform-origin: center;
}

.desktop-menu {
  display: flex;
  gap: 30px;
}
.menu-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 5px;
}
.menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}
.menu-link:hover,
.menu-link.active {
  color: var(--gold);
}
.menu-link:hover::after,
.menu-link.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-link-desk {
  font-weight: 600;
  color: var(--sapphire);
}
.contact-link-desk:hover {
  color: var(--gold);
}
.burger-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sapphire);
}

/* === MOBILE NAV === */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--sapphire);
  z-index: 2000;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition);
}
.nav-overlay.open {
  transform: translateX(0);
}
.nav-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.brand-title-mobile {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
}
.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
}
.nav-links-mobile {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: auto;
}
.nav-links-mobile a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  border-bottom: 1px solid transparent;
}
.nav-links-mobile a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* === HERO === */
.hero-fr {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?auto=format&fit=crop&q=80&w=1920")
    center/cover no-repeat;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.4) 100%
  );
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 700px;
  color: var(--white);
}
.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
}
.accent-line {
  width: 40px;
  height: 2px;
  background-color: var(--gold);
}
.hero-description {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.hero-trust-badge i {
  color: var(--gold);
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

/* === SECTIONS & GRIDS === */
.grid-split-fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.grid-split-fr.reverse {
  direction: rtl;
}
.grid-split-fr.reverse > * {
  direction: ltr;
}

.image-frame-art {
  position: relative;
  padding: 20px;
  border: 2px solid var(--gold);
  transform: rotate(3deg);
  transition: var(--transition);
}
.image-frame-art.art-reverse {
  transform: rotate(-3deg);
}
.image-frame-art:hover {
  transform: rotate(0);
}
.image-frame-art img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gold-list {
  margin-top: 30px;
}
.gold-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.gold-list i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

/* === ATELIER CARDS === */
.atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.atelier-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.atelier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.atelier-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}
.atelier-card:hover::before {
  transform: scaleX(1);
}
.atelier-card.highlight {
  background-color: var(--white);
  color: var(--sapphire);
}
.atelier-card.highlight h3,
.atelier-card.highlight p {
  color: var(--sapphire);
}
.card-icon-fr {
  width: 60px;
  height: 60px;
  color: var(--gold);
  margin-bottom: 24px;
}
.atelier-card.highlight .card-icon-fr {
  color: var(--sapphire);
}

/* === BANNER & QUIZ === */
.banner-fr {
  background: linear-gradient(135deg, var(--sapphire-light), var(--sapphire));
  color: var(--white);
  padding: 60px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-right: 6px solid var(--gold);
}
.banner-content-fr {
  max-width: 600px;
}
.banner-content-fr h2 {
  color: var(--white);
}
.banner-content-fr p {
  color: var(--cream);
}
.banner-action-fr {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.large-icon-gold {
  width: 64px;
  height: 64px;
  color: var(--gold);
}

.quiz-box-fr {
  background-color: var(--white);
  padding: 60px;
  border-radius: 4px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--gold);
  color: var(--sapphire);
}
.quiz-header-fr h2 {
  color: var(--gold) !important;
}
.quiz-header-fr p {
  color: var(--sapphire) !important;
}
.small-note-cream {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* === FAQ === */
.accordion-fr {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.acc-item-fr {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
.acc-header-fr {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sapphire);
}
.acc-header-fr i {
  color: var(--gold);
  transition: var(--transition);
}
.acc-item-fr.active .acc-header-fr i {
  transform: rotate(45deg);
}
.acc-body-fr {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}
.acc-body-fr p {
  padding-bottom: 24px;
  margin: 0;
  color: var(--text-dark);
}
.acc-item-fr.active .acc-body-fr {
  max-height: 300px;
}

/* === FORM === */
.form-layout-fr {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 4px;
  overflow: hidden;
}
.form-info-fr {
  padding: 60px 50px;
}
.contact-details-fr {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item-fr {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--cream);
}
.icon-gold {
  color: var(--gold);
}
.contact-item-fr a {
  color: var(--cream);
}
.contact-item-fr a:hover {
  color: var(--gold);
}

.form-container-fr {
  padding: 60px 50px;
}
.form-heading-fr {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--sapphire);
}
.strict-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.input-group-fr {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.input-group-fr label {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sapphire);
}
.input-group-fr input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--cream);
}
.input-group-fr input:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--white);
}
.captcha-row-fr label {
  white-space: nowrap;
}
.checkbox-group-fr {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkbox-group-fr input {
  margin-top: 5px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}
.consent-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.consent-label a {
  color: var(--sapphire);
  text-decoration: underline;
}

/* === FOOTER === */
.footer-fr {
  padding: 80px 0 30px;
}
.footer-grid-fr {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo-fr {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
}
.footer-col-nav h4 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--font-body);
}
.footer-col-nav a {
  display: block;
  margin-bottom: 12px;
  color: var(--cream);
}
.footer-col-nav a:hover {
  color: var(--gold);
  transform: translateX(5px);
}
.footer-bottom-fr {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--cream);
}

/* === COOKIE === */
.cookie-modal-fr {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 340px;
  z-index: 5000;
  display: none;
}
.cookie-content-fr {
  background-color: var(--white);
  padding: 24px;
  border-radius: 4px;
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-content-fr p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .desktop-menu,
  .contact-link-desk,
  .btn-outline-gold {
    display: none;
  }
  .burger-trigger {
    display: block;
  }
  .hero-content,
  .grid-split-fr,
  .form-layout-fr,
  .footer-grid-fr {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-container {
    text-align: center;
  }
  .hero-subtitle {
    justify-content: center;
  }
  .hero-description {
    margin: 0 auto 40px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .atelier-grid {
    grid-template-columns: 1fr;
  }
  .banner-fr {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    border-right: none;
    border-bottom: 6px solid var(--gold);
  }
  .image-frame-art {
    transform: rotate(0) !important;
  }
  .form-info-fr,
  .form-container-fr {
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 80px 0;
  }
  h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-gold,
  .btn-text-gold {
    width: 100%;
    justify-content: center;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 22px;
    margin-top: 25px;
  }
  .margin {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .pages {
    padding: 90px 0 50px;
  }
  .pages h1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .text-wrapper {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .text-wrapper h2 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .text-wrapper h3 {
    font-size: 16px;
  }
  .text-wrapper p {
    font-size: 13px;
    line-height: 1.6;
  }
  .margin {
    font-size: 24px;
    margin: 80px 0 30px;
  }
  .split-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .pages {
    padding: 80px 0 40px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .text-wrapper {
    padding: 15px 10px;
  }
  .text-wrapper h2 {
    font-size: 16px;
    margin-top: 15px;
  }
  .text-wrapper h3 {
    font-size: 14px;
  }
  .text-wrapper p {
    font-size: 12px;
  }
  .margin {
    font-size: 20px;
    margin: 60px 0 20px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .contact-page-main {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .cp-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .cp-phone-link {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 120px;
    text-align: center;
  }

  .cp-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .cp-divider {
    margin: 0 auto 30px auto;
  }

  .cp-status {
    font-size: 14px;
    padding: 8px 16px;
    margin-bottom: 40px;
  }

  .cp-phone-link {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .cp-details {
    gap: 8px;
  }

  .cp-label {
    font-size: 12px;
  }

  .cp-address-box {
    padding-top: 20px;
    max-width: 100%;
  }

  .cp-addr {
    font-size: 16px;
  }

  .cp-email {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-page-main {
    padding-top: 100px;
    min-height: 70vh;
  }

  .cp-title {
    font-size: 22px;
  }

  .cp-divider {
    width: 50px;
  }

  .cp-status {
    font-size: 12px;
  }

  .cp-phone-link {
    font-size: 20px;
  }

  .cp-addr {
    font-size: 14px;
  }

  .cp-email {
    font-size: 12px;
  }
}
