/* Generated CSS for HTML Website */

/* --- Source: app/globals.css --- */
/* ============================================
   SHREE SATI SAREES - Global Styles
   Elegant Fashion Color Palette
   ============================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --primary: #8B1A30;
  --primary-dark: #6B1425;
  --primary-light: #A82040;
  --secondary: #C9A94E;
  --secondary-light: #D4BC6A;
  --accent: #D4A0A0;
  --accent-light: #E8C4C4;
  --dark: #1A1A2E;
  --dark-lighter: #2A2A3E;
  --light: #FDF6F0;
  --light-warm: #FFF8F2;
  --white: #FFFFFF;
  --gray-100: #F7F7F8;
  --gray-200: #E8E8EC;
  --gray-300: #D1D1D8;
  --gray-400: #9E9EAB;
  --gray-500: #6B6B7B;
  --gray-600: #4A4A5A;
  --text-dark: #1A1A2E;
  --text-body: #4A4A5A;
  --text-muted: #6B6B7B;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 26, 46, 0.12);
  --shadow-xl: 0 16px 48px rgba(26, 26, 46, 0.16);
  --shadow-gold: 0 4px 20px rgba(201, 169, 78, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 80px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
}

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

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

ul,
ol {
  list-style: none;
}

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

/* ── Section Styles ── */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-warm {
  background-color: var(--light-warm);
}

.section-dark {
  background-color: var(--dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 16px auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139, 26, 48, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 26, 48, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 78, 0.35);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.7s ease-out forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.7s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

/* ── Form Styles ── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 26, 48, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-error {
  color: #dc3545;
  font-size: 0.82rem;
  margin-top: 4px;
}

/* ── Checkbox ── */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .container {
    padding: 0 16px;
  }

  :root {
    --header-height: 70px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}


/* --- Source: components/Header.module.css --- */
/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 20px rgba(26, 26, 46, 0.08);
}

.inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logoIcon {
  font-size: 1.6rem;
  color: var(--secondary);
  filter: drop-shadow(0 2px 4px rgba(201, 169, 78, 0.3));
}

.logoName {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.logoSub {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navLink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
}

.navLink:hover {
  color: var(--primary);
  background: rgba(139, 26, 48, 0.05);
}

/* ── Dropdown ── */
.dropdown {
  position: relative;
}

.chevron {
  transition: transform var(--transition-fast);
}

.chevron.chevronOpen {
  transform: rotate(180deg);
}

.dropdownMenu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdownMenu.dropdownOpen {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdownItem {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-body);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.dropdownItem:hover {
  color: var(--primary);
  background: rgba(139, 26, 48, 0.05);
}

/* ── Hamburger ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.burger.burgerOpen span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.burgerOpen span:nth-child(2) {
  opacity: 0;
}

.burger.burgerOpen span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 24px 40px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    overflow-y: auto;
  }

  .nav.navOpen {
    right: 0;
  }

  .navLink {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
  }

  .dropdown {
    width: 100%;
  }

  .dropdownMenu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), visibility var(--transition-base);
  }

  .dropdownMenu.dropdownOpen {
    visibility: visible;
    max-height: 200px;
  }
}

/* --- Source: components/Footer.module.css --- */
/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.footerTop {
  padding: 80px 0 50px;
}

.grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
}

/* ── Brand Column ── */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.brandIcon {
  font-size: 1.5rem;
  color: var(--secondary);
}

.brandName {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.brandSub {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brandDesc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Columns ── */
.col {}

.colTitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.colTitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  border-radius: 1px;
}

/* ── Links ── */
.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
  display: inline-block;
}

.links li a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

/* ── Contact List ── */
.contactList {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contactList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.contactList li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.contactList li a:hover {
  color: var(--secondary);
}

.contactIcon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Footer Bottom ── */
.footerBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bottomInner p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.bottomLinks {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}

.bottomLinks a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}

.bottomLinks a:hover {
  color: var(--secondary);
}

.divider {
  color: rgba(255, 255, 255, 0.2);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footerTop {
    padding: 50px 0 30px;
  }

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

  .bottomInner {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Source: components/ContactForm.module.css --- */
/* ── Contact Form ── */
.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.submitBtn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Alerts */
.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

.alertSuccess {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.alertError {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .form {
    padding: 28px 20px;
  }

  .formGrid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- Source: app/page.module.css --- */
/* ════════════════════════════════════════
   HOME PAGE STYLES
   ════════════════════════════════════════ */

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B33 30%, #3D1C3A 60%, #1A1A2E 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background: url('../images/lehenga-collection.png') center/cover no-repeat;
  opacity: 0.25;
  mix-blend-mode: luminosity;
}

.heroContent {
  position: relative;
  text-align: center;
  max-width: 780px;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.heroBadge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(201, 169, 78, 0.15);
  border: 1px solid rgba(201, 169, 78, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.heroTitle {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.heroHighlight {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heroDesc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.heroCta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.heroDecor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.decorCircle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 78, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.decorCircle2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 26, 48, 0.1) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

/* ── About Section ── */
.about {
  background: var(--white);
}

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

.aboutImgWrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.aboutImgWrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.aboutImgWrapper:hover img {
  transform: scale(1.03);
}

.aboutImgAccent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.aboutImage {
  position: relative;
}

.expBadge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.expNumber {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.expText {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.3;
}

.aboutContent p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.aboutStats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.stat {
  text-align: center;
}

.statNumber {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.statLabel {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Services Section ── */
.servicesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.serviceCard {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.serviceCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.serviceCard:hover .serviceCardLine {
  width: 100%;
}

.serviceIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(139, 26, 48, 0.08), rgba(201, 169, 78, 0.08));
  border-radius: var(--radius-md);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.serviceCard h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.serviceCard p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.serviceCardLine {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width var(--transition-base);
}

/* ── Mission & Vision ── */
.missionVision {
  background: linear-gradient(135deg, #1A1A2E 0%, #2A1A30 100%);
}

.mvGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mvCard {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.mvCard:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.mvIconWrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 78, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.mvIcon {
  font-size: 1.6rem;
}

.mvCard h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}

.mvCard p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

.mvDecor {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(201, 169, 78, 0.06);
}

.mvCardAlt .mvDecor {
  background: rgba(139, 26, 48, 0.08);
}

/* ── Why Choose Us ── */
.featuresGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.featureCard {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
}

.featureCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 78, 0.2);
}

.featureIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(139, 26, 48, 0.06), rgba(201, 169, 78, 0.1));
  border-radius: 50%;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.featureCard h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.featureCard p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Contact Section ── */
.contactGrid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.contactInfo {}

.contactInfoCard {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
}

.contactInfoCard h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contactItem {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contactItemIcon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contactItem strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contactItem p {
  font-size: 0.88rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.5;
}

.contactItem a {
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.contactItem a:hover {
  opacity: 1;
}

.contactFormWrap {}

.mapContainer {
  margin-top: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .aboutGrid {
    gap: 40px;
  }

  .servicesGrid,
  .featuresGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contactGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    padding: 100px 20px 60px;
  }

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

  .aboutImgWrapper img {
    height: 350px;
  }

  .aboutStats {
    gap: 20px;
  }

  .mvGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .servicesGrid,
  .featuresGrid {
    grid-template-columns: 1fr;
  }

  .heroCta {
    flex-direction: column;
    align-items: center;
  }

  .aboutStats {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* --- Source: app/legal.module.css --- */
/* ════════════════════════════════════════
   LEGAL PAGES - Shared Styles
   (Terms & Conditions, Privacy Policy)
   ════════════════════════════════════════ */

.legalPage {
  padding-top: var(--header-height);
}

.legalHero {
  background: linear-gradient(135deg, var(--dark) 0%, #2D1B33 100%);
  padding: 60px 0;
  text-align: center;
}

.legalHero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.legalHero p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.legalContent {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.legalContent section {
  margin-bottom: 40px;
}

.legalContent h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-200);
}

.legalContent h3 {
  font-size: 1.1rem;
  margin: 20px 0 10px;
  color: var(--text-dark);
}

.legalContent p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}

.legalContent ul {
  padding-left: 24px;
  margin: 12px 0 20px;
}

.legalContent ul li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 8px;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
  list-style: disc;
}

.legalContent a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.contactBox {
  background: var(--light);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 16px;
}

.contactBox p {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .legalContent {
    padding: 40px 0 60px;
  }

  .legalHero {
    padding: 40px 0;
  }
}