/* Reelly AI - Main Stylesheet */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    /* Colors - Light Theme */
    --background: hsl(0, 0%, 98%);
    --foreground: hsl(0, 0%, 5%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 5%);
    --primary: hsl(213, 100%, 22%);
    /* #00306F */
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(213, 100%, 35%);
    --secondary: hsl(210, 17%, 95%);
    --secondary-foreground: hsl(0, 0%, 5%);
    --muted: hsl(210, 17%, 95%);
    --muted-foreground: hsl(0, 0%, 40%);
    --purple: hsl(269, 91%, 65%);
    --border: hsl(0, 0%, 89%);
    --input: hsl(0, 0%, 89%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(213, 100%, 22%), hsl(269, 91%, 65%));
    --gradient-hero: linear-gradient(135deg, hsl(213, 100%, 22%), hsl(213, 100%, 35%));
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));

    /* Shadows */
    --shadow-glow: 0 0 40px hsl(213, 100%, 22%, 0.3);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 5rem 0;

    /* Border Radius */
    --radius: 0.75rem;
}

.form-validation.error {
    color: #ef4444;
}

.form-validation.success {
    color: #10b981;
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.success-message {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            display: none;
        }

.form-input.success {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Dark Theme */
.dark {
    --background: hsl(0, 0%, 3%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(0, 0%, 6%);
    --card-foreground: hsl(0, 0%, 98%);
    --secondary: hsl(0, 0%, 8%);
    --secondary-foreground: hsl(0, 0%, 98%);
    --muted: hsl(0, 0%, 8%);
    --muted-foreground: hsl(0, 0%, 65%);
    --border: hsl(0, 0%, 12%);
    --input: hsl(0, 0%, 12%);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px hsl(213, 100%, 35%, 0.4);
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    font-feature-settings: "rlig" 1, "calt" 1;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

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

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

.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

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

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border: 1px solid var(--border);
}

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

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--background);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.control-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    color: var(--muted-foreground);
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--muted);
    color: var(--foreground);
}

.dark .sun-icon {
    display: block;
}

.dark .moon-icon {
    display: none;
}

body:not(.dark) .sun-icon {
    display: none;
}

body:not(.dark) .moon-icon {
    display: block;
}

.auth-buttons {
    display: none;
    gap: 0.75rem;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--border);
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--foreground);
}

.mobile-auth {
    display: flex;
    gap: 0.75rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;

}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background), var(--background));
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 10%;
    width: 8rem;
    height: 8rem;
    background: var(--primary);
    filter: blur(60px);
}

.floating-2 {
    top: 40%;
    right: 20%;
    width: 12rem;
    height: 12rem;
    background: var(--purple);
    filter: blur(80px);
    animation-delay: 1s;
}

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

.hero-title {
    font-size:3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
}

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

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

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 18rem;
    height: 37.5rem;
    background: linear-gradient(to bottom, #1f2937, #111827);
    border-radius: 3rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-card);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
}

.phone-status {
    background: #f9fafb;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #111827;
}

.phone-battery {
    display: flex;
    gap: 0.25rem;
}

.battery-indicator {
    width: 1rem;
    height: 0.5rem;
    border-radius: 0.125rem;
}

.battery-indicator:nth-child(1) {
    background: #10b981;
}

.battery-indicator:nth-child(2) {
    background: #d1d5db;
}

.battery-indicator:nth-child(3) {
    background: #d1d5db;
}

.phone-content {
    padding: 1rem;
    background: linear-gradient(to bottom, #dbeafe, white);
    height: calc(100% - 2rem);
    position: relative;
}

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

.phone-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.phone-header p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.phone-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.phone-search {
    background: white;
    border-radius: var(--radius);
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.search-icon {
    width: 1rem;
    height: 1rem;
    background: #d1d5db;
    border-radius: 0.25rem;
}

.phone-search span {
    color: #9ca3af;
    font-size: 0.875rem;
}

.phone-properties {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.property-card {
    background: white;
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.property-image {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.property-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem;
}

.property-info p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.property-price {
    color: var(--primary) !important;
    font-weight: 700 !important;
    margin-top: 0.25rem !important;
}

.phone-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #e5e7eb;
}

.nav-dot.active {
    background: var(--primary);
}

.phone-float-1,
.phone-float-2 {
    position: absolute;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.phone-float-1 {
    top: -1rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
}

.phone-float-2 {
    bottom: -1rem;
    right: -1rem;
    width: 2rem;
    height: 2rem;
    animation-delay: 1s;
}

/* Floating Partners */
.floating-partners {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 2rem;
    opacity: 0.2;
}

.partner-logo {
    width: 3rem;
    height: 3rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
}

.partner-logo:nth-child(2) {
    animation-delay: 0.5s;
}

.partner-logo:nth-child(3) {
    animation-delay: 1s;
}

.partner-logo:nth-child(4) {
    animation-delay: 1.5s;
}

.partner-logo:nth-child(5) {
    animation-delay: 2s;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
}

/* Features */
.features {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    background: var(--muted);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-glow);
}

/* Partners */
.partners {
    padding: var(--section-padding);
    background: var(--muted);
}

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

.active-nav {
    color: var(--gradient-primary) !important;
}

.partner-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-card);
}

.partner-logo-large {
    width: 5rem;
    height: 5rem;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.partner-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

/* Why Choose Us */
.why-choose {
    padding: var(--section-padding);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    margin-bottom: 2rem;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.why-choose-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 24rem;
    height: 24rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.dashboard-icon {
    width: 6rem;
    height: 6rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.dashboard-mockup h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dashboard-mockup p {
    color: var(--muted-foreground);
}

.dashboard-float-1,
.dashboard-float-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.dashboard-float-1 {
    top: -1.5rem;
    right: -1.5rem;
    width: 4rem;
    height: 4rem;
    background: var(--purple);
}

.dashboard-float-2 {
    bottom: -1.5rem;
    left: -1.5rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    animation-delay: 1s;
}

/* CTA */
.cta {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    opacity: 0.9;
}

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

.cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: white;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.75;
    color: white;
    margin: 0;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--background), var(--muted));
}

.page-hero-content h1 {
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background), var(--muted));
}

.auth-container {
   
    padding: 1rem;
    margin-top: 7%;
    max-width:700px;
    margin-left:20%;

}

.auth-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .logo {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.auth-header h1 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--muted-foreground);
    margin: 0;
}

.auth-form {
    margin-bottom: 2rem;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
}

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

.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    background: var(--card);
    padding: 0 1rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

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

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

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.form-checkboxes {
    margin-bottom: 1.5rem;
}

.form-checkboxes .checkbox-label {
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.form-checkboxes .checkbox-label:last-child {
    margin-bottom: 0;
}

/* Contact Form */
.contact-section {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--muted-foreground);
    margin: 0.25rem 0;
}

.map-placeholder {
    width: 100%;
    height: 16rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: var(--muted-foreground);
}

.map-content svg {
    margin-bottom: 0.5rem;
}

.map-location {
    font-size: 0.875rem;
}

/* Pricing */
.pricing-section {
    padding: var(--section-padding);
}

.billing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.toggle-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.25rem;
    display: flex;
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: calc(var(--radius) - 0.25rem);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--muted-foreground);
}

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

.save-badge {
    color: #10b981;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
   
    margin: 0 auto;
}
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats{
          grid-template-columns: 1fr;
    }
    .auth-container {
        margin-left:0px !important
    }
    .hero {
    position: static !important;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display:block!important;
  }
  .hero-bg{
    position: static!important;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .hero-content{
    position: static !important;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
     display:block!important;
  }
  .dashboard-float-2{
      display: none !important;
  }
  .dashboard-float-1{
      display: none !important;
  }
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}



.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.price {
    display: grid;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--foreground);
}

.price-period {
    color: var(--muted-foreground);
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    color: #10b981;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.875rem;
}

/* FAQ */
.faq-section {
    padding: var(--section-padding);
    max-width: 56rem;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--muted);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: var(--muted-foreground);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Additional Sections */
.stats-section,
.mission-section,
.team-section,
.help-resources,
.faq-quick,
.contact-cta,
.pricing-cta {
    padding: var(--section-padding);
}

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

.stat-card {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

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

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

.mission-section {
    background: var(--muted);
}

.mission-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

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

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.resource-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    margin-bottom: 0.75rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
}

.faq-quick,
.contact-cta,
.pricing-cta {
    background: var(--muted);
    text-align: center;
}

.faq-quick-content,
.contact-cta-content,
.pricing-cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-buttons,
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 24rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--foreground);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
}

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

/* Animations */
@keyframes float {

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

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

/* Responsive Design */
@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .auth-buttons {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text {
        order: 1;
    }

    .hero-phone {
        order: 2;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .why-choose-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr;
    }

    .floating-partners {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .cta,
    .floating-element,
    .phone-float-1,
    .phone-float-2,
    .dashboard-float-1,
    .dashboard-float-2 {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .page-hero,
    .hero {
        padding-top: 2rem !important;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 40rem;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-button:hover {
    color: var(--foreground);
}

.modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

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

.-register-order-summary {
  background-color: var(--register-card-bg);
  border: 1px solid var(--register-card-border);
  border-radius: 8px;
  overflow: hidden;
}

.-register-summary-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--register-card-border);
}

.-register-summary-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--register-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.-register-summary-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--register-gradient-from), var(--register-gradient-to));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.-register-summary-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.-register-summary-plan {
  padding: 1rem;
  border-radius: 6px;
  background: linear-gradient(to right, hsla(var(--register-highlight), 0.05), hsla(var(--register-gradient-to), 0.05));
  border: 1px solid var(--register-card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.-register-summary-plan-name {
  font-weight: 600;
  color: var(--register-text-primary);
  margin-bottom: 0.25rem;
}

.-register-summary-plan-desc {
  font-size: 0.875rem;
  color: var(--register-text-secondary);
}

.-register-summary-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--register-text-primary);
}

.-register-summary-period {
  font-size: 0.875rem;
  color: var(--register-text-secondary);
}

.-register-summary-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.-register-features-title {
  font-weight: 600;
  color: var(--register-text-primary);
}

.-register-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .-register-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.-register-summary-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.-register-summary-feature svg {
  color: var(--register-success);
  flex-shrink: 0;
}

.-register-summary-feature span {
  font-size: 0.875rem;
  color: var(--register-text-secondary);
}

.-register-summary-total {
  border-top: 1px solid var(--register-card-border);
  padding-top: 1rem;
}

.-register-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
}

.-register-total-label {
  color: var(--register-text-primary);
}

.-register-total-amount {
  color: var(--register-text-primary);
}

.-register-summary-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--register-card-border);
}

.-register-continue-button {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(to right, var(--register-gradient-from), var(--register-gradient-to));
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.-register-continue-button:hover {
  box-shadow: 0 8px 24px hsla(var(--register-highlight), 0.3);
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .-register-main-title {
    font-size: 2rem;
  }
  
  .-register-main-description {
    font-size: 1rem;
  }
  
  .-register-summary-plan {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.-register-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.-register-check-icon {
  color: var(--register-success);
  flex-shrink: 0;
}

.-register-feature span {
  color: var(--register-text-secondary);
}
#termsLink{
color: var(--primary);
}
