/* ============================================
   BandhanMatrimony - Light Theme Stylesheet
   Font: Cormorant Garamond + DM Sans
   ============================================ */

:root {
    --cream:       #fdf8f3;
    --white:       #ffffff;
    --rose-light:  #fce8e8;
    --rose:        #d4697a;
    --rose-dark:   #b5485c;
    --gold:        #c9973a;
    --gold-light:  #f5e9d3;
    --text:        #2c1a1a;
    --text-muted:  #7a5c5c;
    --border:      #e8d8d0;
    --shadow:      rgba(180, 80, 80, 0.08);
    --shadow-lg:   rgba(180, 80, 80, 0.15);
    --radius:      12px;
    --radius-lg:   20px;
    --transition:  all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: white;
    color: var(--text);
    line-height: 1.65;
    font-size: 15px;
}

h1,h2,h3,h4,h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
.footer_img{
    max-width: 100%;
    background: white;
    border-radius: 10px;
    padding: 5px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px var(--shadow);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .4rem; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--text); }
.brand strong { color: var(--rose); }
.brand-icon { color: var(--gold); font-size: 1.6rem; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--text-muted); transition: var(--transition); }
.nav-links a:hover { color: var(--rose); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .5rem 1.3rem; border-radius: 50px; font-size: .875rem;
    font-weight: 500; cursor: pointer; transition: var(--transition); border: none;
    font-family: 'DM Sans', sans-serif;
}
.btn-primary { background: #000000; color: white; }
.btn-primary:hover { background: #ed1d26; transform: translateY(-1px); box-shadow: 0 4px 14px var(--shadow-lg); }
.btn-outline { border: 1.5px solid #ff0000; color: #000000; background: transparent; }
.btn-outline:hover { background: #ed1d26; }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: #b5842e; transform: translateY(-1px); }
.btn-lg { padding: .8rem 2rem; font-size: 1rem; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none; flex-direction: column; background: var(--white);
    border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; gap: .75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); font-weight: 500; padding: .4rem 0; border-bottom: 1px solid var(--border); }
.mobile-btn { background: var(--rose); color: white; border: none; padding: .5rem 1.5rem; border-radius: 50px; cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* ===== ALERTS ===== */
.alert {
    padding: .9rem 1.5rem; margin: 0; font-size: .9rem;
    transition: opacity .5s ease;
}
.alert ul { padding-left: 1rem; }
.alert-success { background: #d4edda; color: #155724; border-bottom: 3px solid #28a745; }
.alert-error { background: #f8d7da; color: #721c24; border-bottom: 3px solid #dc3545; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #ffffff 50%, #ff0000 50%, #fff5f5 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,105,122,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    background: #fd7171; color: #ffffff; font-size: .8rem; font-weight: 600;
    padding: .35rem .9rem; border-radius: 50px; margin-bottom: 1.25rem; letter-spacing: .05em;
    text-transform: uppercase;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--text); margin-bottom: 1.25rem; }
.hero h1 em { color: red; font-style: italic; }
.hero p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; max-width: 460px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; }
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: #ed1d26; }
.stat-item .lbl { font-size: .78rem; color: #010101; font-weight: 500; }

.about-us {
    background: linear-gradient(135deg, #0e0c0c -25%, #ff0000 107%, #fff5f5 151%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.about-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.about-container h2{
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    font-size: 5rem;
    color: white;
}

.about-us .hero-actions a {
  color: white;
  font-size: medium;
  font-weight: bold;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.15); /* transparent white */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;

  padding: 10px 18px;
  margin-top: 20px;
}

.collage-circle {
  position: relative;
  width: 300px;
  height: 300px;
}

.collage-circle img {
  position: absolute;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Positioning in circle */
.collage-circle img:nth-child(1) {
  top: 0;
  left: 90px;
}

.collage-circle img:nth-child(2) {
  top: 90px;
  right: 0;
}

.collage-circle img:nth-child(3) {
  bottom: 0;
  left: 90px;
}

.collage-circle img:nth-child(4) {
  top: 90px;
  left: 0;
}

.about-para1{
    padding: 20px;
}

.about-para1 .head {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 58px;
    font-weight: 700;
    padding-bottom: 10px;
    color: rgb(120, 24, 14);
    line-height: 44px;
}

.about-para1 .head em{
    display: block;
    color: #f2bf00;
    font-weight: 700;
    font-size: 35px;
    font-family: 'Cinzel Decorative', cursive;
    line-height: 78px;
}

/* Hero image */
.hero-image-wrap {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hero-image-frame {
    width: 380px; height: 460px;
    background: linear-gradient(145deg, var(--rose-light), var(--gold-light));
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-lg);
}
.hero-image-frame .emoji-collage {
    font-size: 6rem; opacity: .12;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.hero-couple-card {
    background: var(--white); border-radius: var(--radius);
    padding: 1.5rem; text-align: center; width: 220px;
    box-shadow: 0 10px 30px var(--shadow-lg);
    z-index: 1;
}
.couple-avatars { display: flex; justify-content: center; gap: -10px; margin-bottom: .75rem; }
.couple-avatars .av {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--rose-light); border: 3px solid white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}
.couple-avatars .av:last-child { margin-left: -14px; background: var(--gold-light); }
.hero-couple-card .match { font-size: .78rem; color: var(--text-muted); margin-bottom: .25rem; }
.hero-couple-card .names { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; }
.floating-badge {
    position: absolute; bottom: 30px; left: -20px;
    background: white; border-radius: var(--radius);
    padding: .6rem 1rem; box-shadow: 0 8px 24px var(--shadow-lg);
    font-size: .8rem; display: flex; align-items: center; gap: .5rem;
    z-index: 2;
}
.floating-badge .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; }

/* ===== QUICK SEARCH ===== */
.quick-search {
    background: var(--white);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
}
.qs-inner { display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap; }
.qs-group { flex: 1; min-width: 160px; }
.qs-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .4rem; }
.qs-group select, .qs-group input {
    width: 100%; padding: .65rem .9rem; border: 1.5px solid var(--border);
    border-radius: var(--radius); background: var(--cream); color: var(--text);
    font-family: 'DM Sans', sans-serif; font-size: .9rem; outline: none;
    transition: var(--transition);
}
.qs-group select:focus, .qs-group input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(212,105,122,.1); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; background: #FFF5F5; }
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #ed1d26;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--text); margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 560px; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head .section-sub { margin: .75rem auto 0; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.feature-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem;
    transition: var(--transition); cursor: default;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px var(--shadow-lg); border-color: #ed1d26; }
.feat-icon {
    width: 56px; height: 56px; border-radius: var(--radius);
    background: #ff5454; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.feature-card p { color: var(--text-muted); font-size: .9rem; }

/* ===== PROFILES GRID ===== */
.profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.profile-card {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    transition: var(--transition);
}
.profile-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px var(--shadow-lg); }
.pc-photo {
    height: 180px; background: aliceblue;
    display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative;
}
.pc-badge {
    position: absolute; top: .6rem; right: .6rem;
    background: #22c55e; color: white; font-size: .65rem; font-weight: 700;
    padding: .2rem .55rem; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em;
}
.pc-body { padding: 1rem; 
    display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.pc-title {
  flex: 1; 
}
.pc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; }
.pc-meta { font-size: .8rem; color: var(--text-muted); margin: .25rem 0 .75rem; }
.pc-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .85rem; }
.pc-tag {
    background: var(--cream); border: 1px solid var(--border);
    font-size: .72rem; color: var(--text-muted); padding: .2rem .55rem; border-radius: 50px;
}
.pc-actions { display: grid; gap: .5rem; }
.pc-actions .btn { flex: 1; justify-content: center; padding: .45rem .5rem; font-size: .8rem; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--rose-light); color: var(--rose);
    font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    border: 2px dashed var(--rose);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step-card p { color: var(--text-muted); font-size: .9rem; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; }
.testi-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.75rem;
    position: relative;
}
.testi-card::before {
    content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 5rem;
    color: var(--rose-light); position: absolute; top: .5rem; right: 1.25rem;
    line-height: 1;
}
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: .75rem; }
.testi-text { font-size: .9rem; color: var(--text-muted); margin-bottom: 1rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-av {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--rose-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.testi-author strong { font-size: .9rem; display: block; }
.testi-author span { font-size: .78rem; color: var(--text-muted); }

/* ---- Hero Banner ---- */
#au-hero {
    background: linear-gradient(135deg, #0e0c0c -25%, #ff0000 107%);
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
    color: white;
}
#au-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
}
#au-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}
.au-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.au-hero-breadcrumb {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.au-hero-breadcrumb a { color: #ffaaaa; }
#au-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 600;
    color: white;
    line-height: 1.1;
    margin-bottom: .75rem;
}
#au-hero-title em {
    font-style: italic;
    color: #ffd700;
}
#au-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.au-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.au-btn-primary {
    background: white;
    color: #ed1d26;
    border: none;
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    text-decoration: none;
}
.au-btn-primary:hover { background: #ffd700; color: #000; transform: translateY(-2px); }
.au-btn-ghost {
    background: rgba(255,255,255,.15);
    color: white;
    border: 1.5px solid rgba(255,255,255,.4);
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    text-decoration: none;
    backdrop-filter: blur(8px);
}
.au-btn-ghost:hover { background: rgba(255,255,255,.25); }

/* Hero Image Collage */
#au-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#au-collage {
    position: relative;
    width: 300px;
    height: 300px;
}
.au-collage-img {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    overflow: hidden;
    backdrop-filter: blur(4px);
}
.au-collage-img:nth-child(1) { top: 0;    left: 85px;  }
.au-collage-img:nth-child(2) { top: 85px; right: 0;    }
.au-collage-img:nth-child(3) { bottom: 0; left: 85px;  }
.au-collage-img:nth-child(4) { top: 85px; left: 0;     }
#au-collage-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    z-index: 2;
}

/* Hero Stats Strip */
#au-stats-strip {
    background: white;
    border-bottom: 3px solid #ed1d26;
    padding: 1.75rem 0;
    box-shadow: 0 4px 20px rgba(180,80,80,.08);
}
.au-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.au-stat-item {
    text-align: center;
    padding: .75rem 1rem;
    border-right: 1px solid #f5e8e8;
}
.au-stat-item:last-child { border-right: none; }
.au-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #ed1d26;
    line-height: 1;
}
.au-stat-lbl {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .25rem;
    font-weight: 500;
}
.au-stat-icon { font-size: 1.2rem; margin-bottom: .4rem; }

/* ---- Mission Section ---- */
#au-mission {
    padding: 5rem 0;
    background: #fff5f5;
}
.au-mission-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
#au-mission-image-col {
    position: relative;
}
#au-mission-image-frame {
    background: linear-gradient(145deg, #fff0f0, #ffd9d9);
    border-radius: 20px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 20px 60px rgba(237,29,38,.12);
    position: relative;
    overflow: hidden;
}
.au-mission-float-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: .85rem 1.1rem;
    box-shadow: 0 8px 24px rgba(180,80,80,.15);
    display: flex;
    align-items: center;
    gap: .6rem;
}
#au-mission-float-1 { bottom: -20px; left: -20px; }
#au-mission-float-2 { top: -20px; right: -20px; }
.au-float-icon { font-size: 1.4rem; }
.au-float-text strong { display: block; font-size: .85rem; color: var(--text); }
.au-float-text span { font-size: .73rem; color: var(--text-muted); }

.au-section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    color: #ed1d26;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}
.au-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.au-section-title em { color: #ed1d26; font-style: italic; }
.au-section-body {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.au-value-list { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.5rem; }
.au-value-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}
.au-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid #fca5a5;
}
.au-value-content strong { display: block; font-size: .9rem; color: var(--text); margin-bottom: .15rem; }
.au-value-content span { font-size: .83rem; color: var(--text-muted); }

/* ---- Story Timeline ---- */
#au-story {
    padding: 5rem 0;
    background: white;
}
#au-story-head { text-align: center; margin-bottom: 3.5rem; }
#au-story-head .au-section-sub { color: var(--text-muted); max-width: 520px; margin: .75rem auto 0; font-size: .95rem; }
#au-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
#au-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ed1d26, #ff6b6b, transparent);
    transform: translateX(-50%);
}
.au-timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    align-items: flex-start;
}
.au-timeline-item:nth-child(even) { flex-direction: row-reverse; }
.au-timeline-dot {
    position: absolute;
    left: 50%;
    top: .5rem;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ed1d26;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(237,29,38,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .8rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    z-index: 1;
}
.au-timeline-content {
    flex: 1;
    background: #fff5f5;
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
    border: 1px solid #fce8e8;
}
.au-timeline-item:nth-child(even) .au-timeline-content { background: white; border-color: var(--border); }
.au-timeline-year {
    font-size: .75rem;
    font-weight: 700;
    color: #ed1d26;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .4rem;
}
.au-timeline-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; margin-bottom: .4rem; }
.au-timeline-body { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.au-timeline-spacer { flex: 1; }

/* ---- Team ---- */
#au-team {
    padding: 5rem 0;
    background: #fff5f5;
}
#au-team-head { text-align: center; margin-bottom: 3rem; }
#au-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.75rem;
}
.au-team-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .25s ease;
}
.au-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(180,80,80,.14);
    border-color: #ed1d26;
}
.au-team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff0f0, #ffd9d9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    border: 3px solid white;
    box-shadow: 0 6px 16px rgba(237,29,38,.15);
}
.au-team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: .25rem; }
.au-team-role { font-size: .78rem; color: #ed1d26; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .6rem; }
.au-team-bio { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
.au-team-links { display: flex; justify-content: center; gap: .5rem; margin-top: .85rem; }
.au-team-link {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    color: var(--text-muted);
    transition: all .2s;
    text-decoration: none;
}
.au-team-link:hover { background: #ed1d26; border-color: #ed1d26; color: white; }

/* ---- Why Us / Features ---- */
#au-why {
    padding: 5rem 0;
    background: white;
}
#au-why-head { text-align: center; margin-bottom: 3rem; }
#au-why-grid {
    justify-items: center;
    line-height: 53px;
    font-size: 25px;
}
.au-why-card {
    background: #fff5f5;
    border-radius: 16px;
    border: 1px solid #fce8e8;
    padding: 2rem;
    transition: all .25s;
}
.au-why-card:hover { background: white; border-color: #ed1d26; box-shadow: 0 8px 28px rgba(237,29,38,.1); transform: translateY(-4px); }
.au-why-icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    background: #ff5454;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}
.au-why-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; }
.au-why-body { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ---- Testimonials ---- */
#au-testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a0000, #3a0000);
    color: white;
}
#au-testi-head { text-align: center; margin-bottom: 3rem; }
#au-testi-head .au-section-label { color: #ffaaaa; }
#au-testi-head .au-section-title { color: white; }
#au-testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.au-testi-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    backdrop-filter: blur(4px);
}
.au-testi-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(255,100,100,.3);
    position: absolute;
    top: .4rem; right: 1.2rem;
    line-height: 1;
}
.au-testi-stars { color: #ffd700; font-size: .9rem; margin-bottom: .75rem; }
.au-testi-text { font-size: .88rem; color: rgba(255,255,255,.8); margin-bottom: 1.1rem; font-style: italic; line-height: 1.7; }
.au-testi-author { display: flex; align-items: center; gap: .75rem; }
.au-testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    border: 2px solid rgba(255,255,255,.2);
}
.au-testi-author strong { display: block; font-size: .875rem; color: white; }
.au-testi-author span { font-size: .73rem; color: rgba(255,255,255,.6); }

/* ---- CTA ---- */
#au-cta {
    background: linear-gradient(135deg, #ed1d26, #b5485c);
    padding: 4.5rem 0;
    text-align: center;
    color: white;
}
#au-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: white;
    margin-bottom: .85rem;
}
#au-cta-sub { color: rgba(255,255,255,.9); font-size: 1rem; margin-bottom: 2rem; }
#au-cta-btn {
    background: white;
    color: #ed1d26;
    border: none;
    padding: .9rem 2.5rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}
#au-cta-btn:hover { background: #ffd700; color: #000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #ffffff -26%, #ff0000 100%, #fff5f5 100%);
    padding: 4.5rem 0; text-align: center; color: white;
}
.cta-banner h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; color: rgb(0, 0, 0); }
.cta-banner p { opacity: .9; font-size: 1rem; margin-bottom: 2rem; }
.cta-banner .btn { background: white; color: var(--rose); }
.cta-banner .btn:hover { background: var(--gold-light); }

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #fff5f5 0%, #fdf8f0 100%);
    display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.auth-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px var(--shadow-lg); padding: 2.5rem;
    width: 100%; max-width: 480px;
}
.auth-logo { text-align: center; margin-bottom: 1.75rem; }
.auth-logo .brand-icon { font-size: 2.5rem; color: var(--gold); }
.auth-logo h2 { font-size: 1.8rem; margin-top: .25rem; }
.auth-logo p { color: var(--text-muted); font-size: .9rem; margin-top: .25rem; }
.auth-tabs { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 1.75rem; overflow: hidden; }
.auth-tab {
    flex: 1; text-align: center; padding: .65rem;
    font-size: .875rem; font-weight: 500; cursor: pointer;
    transition: var(--transition); color: var(--text-muted);
}
.auth-tab.active { background: var(--rose); color: white; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
    display: block; font-size: .8rem; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: .7rem 1rem;
    border: 1.5px solid var(--border); border-radius: var(--radius);
    background: var(--cream); color: var(--text);
    font-family: 'DM Sans', sans-serif; font-size: .9rem; outline: none;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rose); background: var(--white);
    box-shadow: 0 0 0 3px rgba(212,105,122,.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-hint { font-size: .76rem; color: var(--text-muted); margin-top: .3rem; }
.form-check { display: flex; align-items: center; gap: .5rem; font-size: .875rem; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--rose); }
.form-footer { text-align: center; margin-top: 1.25rem; font-size: .875rem; color: var(--text-muted); }
.form-footer a { color: var(--rose); font-weight: 500; }
.form-divider { display: flex; align-items: center; gap: .75rem; margin: 1.25rem 0; color: var(--text-muted); font-size: .8rem; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.input-icon { position: relative; }
.input-icon i { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: .85rem; }
.input-icon input, .input-icon select { padding-left: 2.4rem; }

/* ===== MULTI-STEP REGISTER ===== */
.register-page {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #fff5f5 0%, #fdf8f0 100%);
    padding: 2.5rem 1.5rem;
    display: flex; align-items: flex-start; justify-content: center;
}
.register-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px var(--shadow-lg); width: 100%; max-width: 680px;
    overflow: hidden;
}
.reg-header { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); padding: 2rem; color: white; text-align: center; }
.reg-header h2 { color: white; font-size: 1.8rem; }
.reg-header p { opacity: .85; font-size: .9rem; margin-top: .25rem; }
.progress-bar { display: flex; gap: 0; margin-top: 1.5rem; border-radius: 50px; overflow: hidden; background: rgba(255,255,255,.2); height: 6px; }
.progress-fill { background: var(--gold); height: 6px; border-radius: 50px; transition: width .4s ease; }
.step-indicators { display: flex; justify-content: space-between; margin-top: .75rem; }
.step-ind { font-size: .75rem; opacity: .7; }
.step-ind.active { opacity: 1; font-weight: 600; }
.reg-body { padding: 2.5rem; }
.step-section { display: none; }
.step-section.active { display: block; }
.step-title { font-size: 1.3rem; margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.step-title small { font-size: .75rem; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-weight: 400; display: block; margin-top: .25rem; }
.reg-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* ===== PROFILE PAGE ===== */
.profile-page { padding: 3rem 0; }
.profile-layout { display: grid; grid-template-columns: 300px 1fr; gap: 2rem; align-items: start; }
.profile-sidebar {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); padding: 2rem; text-align: center;
    position: sticky; top: 90px;
}
.profile-avatar {
    width: 120px; height: 120px; border-radius: 50%;
    background: linear-gradient(145deg, var(--rose-light), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; margin: 0 auto 1rem; border: 4px solid var(--white);
    box-shadow: 0 8px 24px var(--shadow-lg);
}
.profile-sidebar h3 { font-size: 1.3rem; }
.profile-sidebar .location { color: var(--text-muted); font-size: .875rem; margin: .35rem 0 1rem; }
.profile-info-list { text-align: left; margin-top: 1.25rem; }
.pil-item { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.pil-item:last-child { border: none; }
.pil-item .key { color: var(--text-muted); }
.pil-item .val { font-weight: 500; text-align: right; }
.profile-main > div { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.75rem; margin-bottom: 1.5rem; }
.profile-section-title { font-size: 1.2rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .5rem; }
.profile-section-title i { color: var(--rose); font-size: 1rem; }
.edit-form .form-actions { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 1.5rem; }

/* ===== SEARCH PAGE ===== */
.search-page { padding: 2.5rem 0; }
.search-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.filter-panel { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.5rem; position: sticky; top: 90px; }
.filter-panel h3 { font-size: 1.2rem; margin-bottom: 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.filter-panel h3 a { font-size: .78rem; color: var(--rose); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.filter-group { margin-bottom: 1.25rem; }
.filter-group label { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; display: block; margin-bottom: .5rem; }
.filter-group select, .filter-group input { width: 100%; padding: .55rem .75rem; border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--cream); font-family: 'DM Sans', sans-serif; font-size: .875rem; outline: none; }
.filter-group select:focus, .filter-group input:focus { border-color: var(--rose); }
.search-results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: .75rem; }
.results-count { font-size: .9rem; color: var(--text-muted); }
.results-count strong { color: var(--text); }
.sort-select { padding: .45rem .75rem; border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--white); font-family: 'DM Sans', sans-serif; font-size: .875rem; outline: none; }

/* ===== PLANS ===== */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; }
.plan-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem; text-align: center;
    transition: var(--transition); position: relative;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px var(--shadow-lg); }
.plan-card.featured { border-color: var(--rose); }
.plan-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #fd7171; color: white; font-size: .72rem; font-weight: 700;
    padding: .25rem .85rem; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em;
}
.plan-name { font-size: 1.2rem; margin-bottom: .25rem; }
.plan-price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 600; color: #ed1d26; margin: .75rem 0; }
.plan-price span { font-size: 1rem; color: var(--text-muted); }
.plan-features { margin: 1.25rem 0 1.75rem; text-align: left; }
.plan-features li { padding: .4rem 0; font-size: .875rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; }
.plan-features li i { color: #22c55e; }

/* ===== FOOTER ===== */
.footer {
    background: #000000;
    color: rgba(255,255,255,.75);
    padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { font-size: .875rem; opacity: .7; margin-top: .75rem; max-width: 280px; line-height: 1.7; }
.footer .brand { color: white; }
.footer .brand-icon { color: var(--gold); }
.footer .brand strong { color: #e9a8a8; }
.social-links { display: flex; gap: .65rem; margin-top: 1.25rem; }
.social-links a {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center; font-size: .85rem;
    color: rgba(255,255,255,.7); transition: var(--transition);
}
.social-links a:hover { background: var(--rose); border-color: var(--rose); color: white; }
.footer-col h4 { color: white; font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; font-size: .875rem; opacity: .7; margin-bottom: .5rem; transition: var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--rose); padding-left: 4px; }
.footer-col p i { margin-right: .4rem; color: #a3a3a3; opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; text-align: center; font-size: .8rem; opacity: .55; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-wrap { display: none; }
    .profile-layout, .search-layout { grid-template-columns: 1fr; }
    .filter-panel, .profile-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .qs-inner { flex-direction: column; align-items: normal; }
    .features-grid { grid-template-columns: 1fr; }
    .hero { padding: 3rem 0; }
    .section { padding: 3.5rem 0; }
}
