/* ALPS Matrimony - Exact styling from React project */

:root {
    /* Colors from React index.css */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222.2, 84%, 4.9%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222.2, 84%, 4.9%);
    --primary: hsl(142, 76%, 36%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(142, 76%, 56%);
    --secondary: hsl(24, 100%, 50%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --accent: hsl(320, 100%, 60%);
    --accent-foreground: hsl(0, 0%, 100%);
    --purple: hsl(260, 100%, 45%);
    --purple-foreground: hsl(0, 0%, 100%);
    --muted: hsl(210, 40%, 96.1%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --border: hsl(214.3, 31.8%, 91.4%);
    --input: hsl(214.3, 31.8%, 91.4%);
    --ring: hsl(142, 76%, 36%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(142, 76%, 56%));
    --gradient-hero: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(24, 100%, 50%), hsl(320, 100%, 60%));
    --gradient-card: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(142, 76%, 98%));
    --gradient-hero2: linear-gradient(135deg, hsl(63.45deg 54.7% 86.42%), hsl(43.31deg 66.13% 50.57%), hsl(35.76deg 80.56% 65.43%));
    /* Shadows */
    --shadow-primary: 0 10px 30px -10px hsl(142, 76%, 36%, 0.3);
    --shadow-card: 0 4px 20px -5px hsl(142, 76%, 36%, 0.15);
    
    --radius: 0.5rem;
}

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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.language-bar {
    background: hsl(210, 40%, 96.1%, 0.3);
    padding: 0.5rem 0;
}

.language-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.lang-btn:hover {
    color: var(--primary);
    background: hsl(142, 76%, 36%, 0.1);
}

.main-header {
    padding: 1rem 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.brand-title {
    font-size: 2rem;
    font-weight: bold;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-hero {
    background: var(--gradient-primary);
    color: white;
    width: 100%;
    height: 3rem;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.btn-hero:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

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

.btn-ghost {
    background: transparent;
    color: var(--muted-foreground);
}

.btn-ghost:hover {
    background: var(--muted);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-service {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-service:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-ghost-small {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    background: transparent;
    color: var(--muted-foreground);
}

.btn-astrology {
    background: white;
    color: hsl(260, 100%, 45%);
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.hero3 {
    /*background: var(--gradient-hero2);*/
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.decoration-dot {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(to right, hsl(52, 100%, 70%), hsl(24, 100%, 70%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 28rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Hero Form */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-primary);
    max-width: 28rem;
}

.form-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    height: 3rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    padding: 0 1rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.mobile-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.country-code {
    display: flex;
    align-items: center;
    background: var(--muted);
    border-radius: 0.375rem;
    padding: 0 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.mobile-field {
    flex: 1;
}

.form-terms {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.4;
}

.terms-link {
    color: var(--primary);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--gradient-card);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--muted-foreground);
    font-size: 1.25rem;
    max-width: 32rem;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: hsl(142, 76%, 36%, 0.1);
    margin-bottom: 1rem;
    color: var(--primary);
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
}

.stat-card-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.stat-card-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-card {
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    color: white;
    transition: all 0.5s;
}

.service-card:hover {
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.3);
}

.assisted-service {
    background: var(--gradient-primary);
}

.elite-service {
    background: linear-gradient(135deg, hsl(260, 100%, 45%), hsl(320, 100%, 60%));
}

.service-bg-decoration {
    position: absolute;
    inset: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.5s;
}

.decoration-circle.large {
    width: 8rem;
    height: 8rem;
    top: 0;
    right: 0;
    transform: translate(4rem, -4rem);
}

.decoration-circle.small {
    width: 6rem;
    height: 6rem;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.05);
    transform: translate(-3rem, 3rem);
}

.service-card:hover .decoration-circle {
    transform: scale(1.5);
}

.service-content {
    position: relative;
    z-index: 10;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    aspect-ratio: 1 / 1;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.service-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.service-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.feature-item svg {
    width: 1rem;
    height: 1rem;
}

/* Additional Features */
.additional-features {
    margin-top: 4rem;
}

.additional-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.additional-feature-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.additional-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.additional-feature-icon {
  aspect-ratio: 1 / 1;   /* keep square proportions */
  width: 4rem;           /* or any size */
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(24, 100%, 50%, 0.1);
  border-radius: 50%;
  color: var(--secondary);
}

.additional-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.additional-feature-content h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.additional-feature-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.feature-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.feature-badge.secondary {
    background: hsl(24, 100%, 50%, 0.1);
    color: var(--secondary);
}

.feature-badge.outline {
    border: 1px solid var(--border);
    color: var(--muted-foreground);
}

/* Retail Section */
.retail-section {
    padding: 4rem 0;
    background: hsl(210, 40%, 96.1%, 0.3);
}

.retail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.retail-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.retail-icon {
    aspect-ratio: 1 / 1;
    width: 3rem;
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: hsl(142, 76%, 36%, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.retail-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.retail-title {
    font-size: 2rem;
    font-weight: bold;
}

.retail-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.retail-services {
    margin-bottom: 2rem;
}

.retail-service {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.retail-service-icon {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: hsl(142, 76%, 36%, 0.1);
    border-radius: 0.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.retail-service-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.retail-service-text h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.retail-service-text p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Retail Media */
.retail-media {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.retail-video-card {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
}

.video-decoration {
    position: absolute;
    inset: 0;
}

.video-content {
    position: relative;
    z-index: 10;
}

.video-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.video-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.play-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.video-placeholder:hover {
    background: rgba(255, 255, 255, 0.3);
}

.play-button {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon-large svg {
    width: 2rem;
    height: 2rem;
    margin-left: 0.25rem;
}

.video-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.retail-stats-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

.retail-stats-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.retail-stats-content {
    text-align: center;
}

.retail-stats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: hsl(142, 76%, 36%, 0.1);
    color: var(--primary);
    margin: 0 auto 1rem;
}

.retail-stats-icon svg {
    width: 2rem;
    height: 2rem;
}

.retail-stats-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.retail-stats-card p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.retail-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mini-stat {
    text-align: center;
}

.mini-stat-number {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.mini-stat-number.primary {
    color: var(--primary);
}

.mini-stat-number.secondary {
    color: var(--secondary);
}

.mini-stat-label {
    color: var(--muted-foreground);
    font-size: 0.75rem;
}

/* App Section */
.app-section {
    padding: 4rem 0;
    background: hsl(210, 40%, 96.1%, 0.3);
}

.app-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.app-badge.rating {
    background: hsl(24, 100%, 50%, 0.1);
    color: var(--secondary);
}

.app-badge.rating svg {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.app-badge.downloads {
    border: 1px solid var(--border);
    color: var(--foreground);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.app-mockup {
    background: var(--gradient-primary);
    padding: 1.5rem;
    border-radius: 0.75rem;
    color: white;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.app-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.smartphone-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.profile-previews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.profile-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 1rem;
    border-radius: 0.5rem;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.profile-badge {
    padding: 0.125rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.625rem;
    font-weight: 500;
}

.profile-badge.prime {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.profile-badge.regular {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.profile-matches {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.8);
}

.profile-card h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.profile-education,
.profile-profession {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.app-download h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.app-download-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.download-buttons .btn {
    justify-content: flex-start;
}

.app-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.app-stat {
    text-align: center;
}

.app-stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.app-stat-number.primary {
    color: var(--primary);
}

.app-stat-number.secondary {
    color: var(--secondary);
}

.app-stat-number.accent {
    color: var(--accent);
}

.app-stat-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Featured Matches */
.featured-matches {
    border-top: 1px solid var(--border);
    padding-top: 3rem;
}

.featured-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.match-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
    text-align: center;
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.match-avatar {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.match-card h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.match-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.match-education,
.match-profession {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.match-profession {
    color: var(--muted-foreground);
}

.match-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Success Section */
.success-section {
    padding: 4rem 0;
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
}

.rating-number {
    font-size: 2rem;
    font-weight: bold;
}

.rating-text {
    color: var(--muted-foreground);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.story-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    background: hsl(142, 76%, 36%, 0.1);
    border-radius: 50%;
    transform: translate(2.5rem, -2.5rem);
    transition: transform 0.5s;
}

.story-card:hover .story-decoration {
    transform: translate(2.5rem, -2.5rem) scale(1.5);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.story-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.story-info h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.story-rating {
    display: flex;
    gap: 0.125rem;
}

.story-rating svg {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.story-quote {
    margin-bottom: 1rem;
    color: var(--primary);
}

.story-quote svg {
    width: 1.5rem;
    height: 1.5rem;
}

.story-text {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.story-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.story-brand {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.story-love {
    width: 1rem;
    height: 1rem;
    color: #ef4444;
}

.stories-cta {
    text-align: center;
}

/* Other Services Section */
.other-services-section {
    padding: 4rem 0;
    background: var(--gradient-card);
}

.wedding-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.wedding-service-card {
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    color: white;
    transition: all 0.5s;
}

.wedding-service-card:hover {
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.3);
}

.wedding-planning {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.venue-booking {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.astrology-service {
    background: linear-gradient(135deg, hsl(260, 100%, 45%), hsl(240, 100%, 50%));
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.astrology-bg {
    position: absolute;
    inset: 0;
}

.floating-dot {
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.astrology-content {
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.astrology-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.astrology-icon svg {
    width: 2rem;
    height: 2rem;
}

.astrology-title {
    font-size: 2rem;
    font-weight: bold;
}

.astrology-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.astrology-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.astrology-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.astrology-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.astrology-feature svg {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-wrapper {
    max-width: 4xl;
    margin: 0 auto;
}

.faq-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.help-icon {
    color: var(--primary);
}

.help-icon svg {
    width: 2rem;
    height: 2rem;
}

.faq-container {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--foreground);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.2s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1rem;
}

.faq-footer {
    text-align: center;
}

.faq-footer p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--gradient-card);
}

.about-wrapper {
    max-width: 4xl;
    margin: 0 auto;
    text-align: center;
}

.about-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 3rem;
}

.about-badge {
    background: hsl(24, 100%, 50%, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.achievement-item {
    text-align: center;
}

.achievement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: hsl(142, 76%, 36%, 0.1);
    margin: 0 auto 1rem;
    transition: transform 0.3s;
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.1);
}

.achievement-icon.award {
    color: #eab308;
}

.achievement-icon.trending {
    color: #3b82f6;
}

.achievement-icon.heart {
    color: #ef4444;
}

.achievement-icon.shield {
    color: #22c55e;
}

.achievement-icon svg {
    width: 2rem;
    height: 2rem;
}

.achievement-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-stat {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
}

.about-stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.about-stat-number.primary {
    color: var(--primary);
}

.about-stat-number.secondary {
    color: var(--secondary);
}

.about-stat-number.accent {
    color: var(--accent);
}

.about-stat-label {
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-brand-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    text-align: center;
}

.footer-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--secondary);
}

.footer-subsection-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.footer-additional {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-more-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer-more-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-record {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
}

.record-text {
    font-size: 0.75rem;
}

.record-name {
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-achievement {
    text-align: center;
}

.achievement-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.achievement-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .retail-content,
    .app-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .logo {
        width: 3rem;
        height: 3rem;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .brand-subtitle {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid,
    .matches-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .wedding-services {
        grid-template-columns: 1fr;
    }
    
    .astrology-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .app-stats {
        grid-template-columns: 1fr;
    }
}


/* ===== MATCHES PAGE STYLES ===== */

/* Header Navigation Styles */
.header-nav {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-section .logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--muted-foreground);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
    background: hsl(24, 100%, 95%);
}

.user-profile {
    display: flex;
    align-items: center;
}

.profile-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.profile-dropdown:hover {
    background: var(--muted);
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Membership Toggle */
.membership-toggle {
    background: var(--muted);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
}

.toggle-btn {
    padding: 0.75rem 2rem;
    border: 1px solid var(--border);
    background: white;
    color: var(--muted-foreground);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:first-child {
    border-radius: 25px 0 0 25px;
}

.toggle-btn:last-child {
    border-radius: 0 25px 25px 0;
    border-left: none;
}

.toggle-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Matches Layout */
.matches-main {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.matches-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sidebar Styles */
.matches-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.matches-sidebar h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--muted-foreground);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.filter-list a:hover {
    background: hsl(24, 100%, 95%);
    color: var(--secondary);
}

.filter-list i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Content Styles */
.matches-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.content-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.text-primary {
    color: var(--secondary);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.sort-dropdown, .location-dropdown {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 0.875rem;
}

.filter-tag {
    padding: 0.5rem 1rem;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    background: hsl(24, 100%, 95%);
    border-color: var(--secondary);
    color: var(--secondary);
}

.filter-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Match Cards */
.match-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.match-card {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
}

.match-card:hover {
    box-shadow: var(--shadow-primary);
    border-color: var(--secondary);
}

.match-photo {
    position: relative;
}

.match-photo img {
    width: 150px;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
}

.shortlist-btn {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.id-verified {
    position: absolute;
    bottom: -48px;
    left: 8px;
    /*background: hsl(142, 76%, 36%);*/
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.match-details h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin: 0 0 0.5rem 0;
}

.match-id {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0 0 1rem 0;
}

.match-info {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.match-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    background: white;
    color: var(--muted-foreground);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--foreground);
    color: var(--foreground);
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    border: none;
    background: var(--secondary);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: hsl(24, 100%, 45%);
    transform: translateY(-1px);
}

.match-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.contact-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn.phone {
    background: var(--secondary);
    color: white;
}

.contact-btn:hover {
    transform: scale(1.1);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--secondary);
    color: var(--secondary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-number {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-number.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Membership Banner */
.membership-banner {
    background: linear-gradient(135deg, hsl(24, 100%, 97%) 0%, hsl(24, 100%, 92%) 100%);
    padding: 3rem 0;
    margin: 3rem 0;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
}

.banner-text h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.offer-text {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.highlight {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.5em;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--muted-foreground);
}

.benefits-list i {
    color: var(--secondary);
    width: 20px;
}

.membership-cta {
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.membership-cta:hover {
    background: hsl(24, 100%, 45%);
    transform: translateY(-2px);
}

.member-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}
/* Profile Modal Styles */
.user-profile {
    position: relative;
}

.profile-dropdown {
    cursor: pointer;
}

.profile-modal {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.profile-modal.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-modal-content {
    padding: 0;
}

.profile-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.profile-modal-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.profile-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.profile-id {
    margin: 4px 0;
    font-size: 14px;
    color: #666;
}

.member-status {
    display: inline-block;
    background: #e8f5e8;
    color: #2d7d2d;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.upgrade-section {
    padding: 16px 20px;
    background: #fff5f0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.upgrade-section p {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.upgrade-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.upgrade-btn:hover {
    background: #e55a2e;
}

.profile-menu {
    padding: 8px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.menu-item:hover {
    background: #f8f9fa;
}

.menu-item i {
    width: 20px;
    margin-right: 12px;
    color: #666;
    font-size: 14px;
}

.menu-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design for Matches Page */
@media (max-width: 1024px) {
    .matches-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .matches-sidebar {
        position: static;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }
    
    .main-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        width: 100%;
    }
    
    .nav-link {
        white-space: nowrap;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .matches-layout {
        padding: 0 0.3rem;
    }
    
    .match-card {
        display: block;
        grid-template-columns: 120px 1fr;
        gap: 1rem;
    }
    
    .match-contact {
        grid-column: span 2;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-bar > * {
        flex: 1;
        min-width: auto;
    }
    
    .matches-content {
        padding: 1rem;
    }
    
    .matches-sidebar {
        padding: 1rem;
        width: 100%;  
    }
}

@media (max-width: 480px) {
    .match-card {
        display: block;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .match-photo {
        justify-self: center;
    }
    
    .match-photo img {
        width: 120px;
        height: 150px;
    } 
    
    .header-container {
        padding: 0.75rem;
    }
    
    .logo-section .logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.25rem;
    }
    
    .main-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}

/* Interest Page Styles */
.breadcrumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.breadcrumb span {
    font-weight: 600;
    color: var(--foreground);
}

.breadcrumb-nav {
    display: flex;
    gap: 10px;
}

.breadcrumb-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    background: white;
    color: var(--primary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.profile-container {
    max-width: 1000px;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
}

.profile-image-section {
    position: relative;
    flex-shrink: 0;
}

.profile-main-img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--primary);
}

.verification-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: hsl(142, 76%, 36%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-summary {
    flex: 1;
}

.profile-title {
    margin-bottom: 20px;
    text-align: left;
}

.profile-title h1 {
    
    color: var(--foreground);
    margin: 0 0 5px 0;
}

.profile-id {
    color: var(--muted-foreground);
    font-size: 1rem;
    margin-right: 15px;
}

.last-seen {
    color: hsl(142, 76%, 36%);
    font-size: 0.9rem;
}

.profile-basic {
    margin-bottom: 25px;
}

.basic-info, .education-work {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.basic-info span, .education-work span {
    background: var(--muted);
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--foreground);
}

.interest-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.interest-status i {
    color: hsl(320, 100%, 60%);
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.call-btn, .message-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-btn {
    background: hsl(142, 76%, 36%);
    color: white;
}

.message-btn {
    background: var(--primary);
    color: white;
}



.call-btn:hover, .message-btn:hover, .shortlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.profile-details-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.section-title {
    font-size: 1.8rem;
    color: var(--foreground);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.subsection-title {
    font-size: 1.3rem;
    color: var(--foreground);
    margin: 25px 0 15px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2px 0;
    border-bottom: 1px solid var(--border);
}

.info-label {
    font-weight: 600;
    color: var(--foreground);
    flex: 1;
    min-width: 150px;
}

.info-value {
    color: var(--muted-foreground);
    flex: 1;
    text-align: right;
}

.upgrade-text {
    color: var(--primary) !important;
    font-weight: 600;
}

.about-content {
    padding: 20px;
    background: var(--muted);
    border-radius: 8px;
}

.about-content h3 {
    color: var(--foreground);
    margin-bottom: 15px;
}

.about-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.preferences-match {
    background: hsl(142, 76%, 95%);
    color: hsl(142, 76%, 36%);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.match-score {
    font-size: 1.1rem;
}


/* Responsive Design for Interest Page */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-main-img {
        width: 150px;
        height: 180px;
    }
    
    .profile-title h1 {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        gap: 2px;
    }
    
    .info-value {
        text-align: left;
    }
}