/* ============================================
   MAIN PAGES CSS - Optimized for:
   - default.aspx (homepage)
   - Events-OnlineSpeedDating.aspx
   - about.aspx
   - contact.aspx
   - login.aspx

   This is a leaner CSS file (~1500 lines vs 6300+)
   for faster loading on the most visited pages.
   ============================================ */

/* ============================================
   ASP.NET VALIDATION THEME OVERRIDES
   ============================================ */

.aspNetHidden {
    display: none !important;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    padding: 0.8rem 1rem !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: white !important;
    font-size: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s !important;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none !important;
    border-color: #9d22ae !important;
    background: rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0 0 0 3px rgba(157, 34, 174, 0.1) !important;
}

input[type="submit"],
input[type="button"],
button[type="submit"] {
    padding: 1rem 3rem !important;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e) !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4) !important;
    transition: all 0.3s ease !important;
    width: auto !important;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button[type="submit"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6) !important;
}

input[type="checkbox"] {
    width: auto !important;
    margin-right: 0.5rem !important;
    cursor: pointer !important;
}

table[id*="FormView"] {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
}

table[id*="FormView"] td,
table[id*="FormView"] tr {
    border: none !important;
    padding: 0 !important;
    background: none !important;
}

span[id*="Validator"],
span[data-val="true"] {
    color: #fb7185 !important;
    font-size: 0.9rem !important;
    margin-left: 0.5rem !important;
}

div[id*="ValidationSummary"] {
    background: rgba(251, 113, 133, 0.1) !important;
    border: 1px solid var(--accent-coral) !important;
    border-radius: 10px !important;
    padding: 1rem 1.5rem !important;
    margin-bottom: 2rem !important;
    color: var(--accent-coral) !important;
}

div[id*="ValidationSummary"] ul {
    margin: 0 !important;
    padding-left: 1.5rem !important;
}

/* ============================================
   BASE STYLES & CSS VARIABLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #7c3aed;
    --deep-purple: #5b21b6;
    --dark-purple: #2e1065;
    --accent-rose: #e879f9;
    --accent-coral: #fb7185;
    --accent-gold: #fbbf24;
    --text-light: #ffffff;
    --text-gray: #d1d5db;
    --text-muted: #9ca3af;
    --background-dark: #0f0f0f;
    --background-medium: #1a1a1a;
    --background-light: #262626;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
}

.logo span {
    color: #9d22ae;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-links .cta-button:hover,
.mobile-menu .cta-button:hover {
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #9d22ae;
}

.mobile-menu .cta-button {
    display: block;
    text-align: center;
    margin-top: 1rem;
}

.cta-button {
    background: #7d1b8e;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.5);
    background: #c855d9;
    color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 80px;
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)),
                url('images/speeddating1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15), transparent);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #e6d9f5;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Hero */
.hero-about {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)),
                url('images/speeddating3.jpg') center/cover;
    height: 60vh;
}

.hero-about h1 {
    font-size: 3.5rem;
}

.hero-about p {
    font-size: 1.3rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 34, 174, 0.6);
}

.btn-secondary {
    background: transparent;
    padding: 1rem 2.5rem;
    border: 2px solid #9d22ae;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
}

.btn-secondary:hover {
    background: #9d22ae;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 34, 174, 0.4);
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION (Homepage)
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    background: url('images/speeddating2.jpg') center/cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(124, 58, 237, 0.15);
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #e6d9f5;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.3);
}

.stat-item h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-rose);
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.event-card {
    background: var(--background-medium);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.3);
}

.event-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #9d22ae 0%, #7d1b8e 100%);
    position: relative;
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--primary-purple);
}

.event-content {
    padding: 2rem;
}

.event-content h3,
.event-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-details span::before {
    content: '•';
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.event-button {
    display: block;
    text-align: center;
    background: #9d22ae;
    padding: 0.8rem;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.event-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.5);
    background: #7d1b8e;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    background: rgba(26, 26, 26, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    background: #9d22ae;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e6d9f5;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--background-medium);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    opacity: 0.3;
    font-family: Georgia, serif;
    color: var(--primary-purple);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-light);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: #231934;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 2rem 2rem 4rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-section .btn-secondary {
    background: white;
    color: #9d22ae;
    border: none;
    position: relative;
    z-index: 1;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--background-medium);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section.company-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-info h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.company-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-info h3,
.contact-info h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    margin-bottom: 0.5rem;
}

.contact-info ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info ul li a:hover {
    color: var(--primary-purple);
}

.footer-section.quick-links {
    display: flex;
    flex-direction: column;
}

.footer-section.quick-links ul {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.5rem 2.5rem;
    list-style: none;
    justify-content: start;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #9d22ae;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer Form Inputs */
.footer-input {
    padding: 0.8rem !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 5px !important;
    color: white !important;
    font-size: 0.95rem !important;
}

.footer-select {
    flex: 1 !important;
    padding: 0.8rem !important;
    border-radius: 5px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
    font-size: 0.95rem !important;
}

/* Newsletter Age Input Fix */
#nl-age {
    font-size: 0.95rem !important;
    -moz-appearance: textfield !important;
}
#nl-age::-webkit-outer-spin-button,
#nl-age::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.footer-btn {
    padding: 0.8rem !important;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e) !important;
    border: none !important;
    border-radius: 5px !important;
    color: white !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.footer-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4) !important;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-page-content {
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: #e6d9f5;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.highlight-section {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.1), rgba(124, 58, 237, 0.1));
    border-color: rgba(157, 34, 174, 0.3);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-section h3 {
    font-size: 1.8rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Two-Column Layout */
.content-wrapper-two-col {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.about-main-content {
    max-width: 800px;
}

.about-main-content .about-intro {
    text-align: left;
}

.about-main-content .about-intro h2,
.about-main-content .about-intro p,
.about-main-content .about-section,
.about-main-content .about-section .about-icon,
.about-main-content .about-section h3,
.about-main-content .about-section p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

/* Sidebar */
.about-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--background-medium);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.sidebar-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.2);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    color: #9d22ae;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sidebar-stat {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-stat:last-child {
    border-bottom: none;
}

.sidebar-stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-rose);
    margin-bottom: 0.3rem;
}

.sidebar-stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.coverage-list,
.benefits-list {
    list-style: none;
    padding: 0;
}

.coverage-list li {
    padding: 0.7rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.coverage-list li:last-child {
    border-bottom: none;
}

.benefits-list li {
    padding: 0.7rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.15), rgba(124, 58, 237, 0.15));
    border-color: rgba(157, 34, 174, 0.3);
}

.sidebar-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.8rem;
    background: rgba(157, 34, 174, 0.2);
    border: 1px solid #9d22ae;
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.sidebar-link:hover {
    background: #9d22ae;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page-content {
    padding: 4rem 2rem;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-section {
    background: var(--background-medium);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.validation-summary {
    background: rgba(251, 113, 133, 0.1);
    border: 1px solid rgba(251, 113, 133, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #fb7185;
}

.validation-summary ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #e6d9f5;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #9d22ae;
    box-shadow: 0 0 0 3px rgba(157, 34, 174, 0.1);
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.field-validator {
    color: #fb7185;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    font-weight: bold;
}

.form-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 34, 174, 0.6);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.confirmation-message {
    text-align: center;
    padding: 3rem;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.4);
}

.confirmation-message label {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e6d9f5;
    display: block;
    margin-bottom: 1rem;
}

.confirmation-message p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

.login-content {
    padding: 4rem 2rem;
    background: var(--background-dark);
    min-height: 60vh;
}

.login-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.login-card {
    background: var(--background-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.login-header {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    padding: 2.5rem 2rem;
    text-align: center;
}

.login-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.login-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.login-body {
    padding: 2.5rem;
}

.login-message {
    display: block;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    background: rgba(251, 113, 133, 0.1);
    border: 1px solid var(--accent-coral);
    color: var(--accent-coral);
    font-weight: 600;
}

.login-message:empty {
    display: none;
}

.login-body .form-group {
    margin-bottom: 1.5rem;
}

.login-body .form-group:last-of-type {
    margin-bottom: 1rem;
}

.forgot-link-container {
    text-align: right;
    margin-bottom: 2rem;
}

.forgot-link {
    color: #9d22ae;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: var(--accent-rose);
    text-decoration: underline;
}

.login-actions {
    text-align: center;
}

.btn-login {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

.required {
    color: #fb7185;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-about h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    #testimonials {
        display: none;
    }

    section {
        padding: 2rem 1.5rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .content-wrapper-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-sidebar {
        position: static;
    }

    .about-main-content {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section.quick-links ul {
        grid-template-columns: auto auto;
        justify-content: center;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .btn-submit {
        width: 100%;
    }

    .form-actions {
        align-items: stretch;
    }

    .secure-badge {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .login-content {
        padding: 2rem 1rem;
    }

    .login-header {
        padding: 2rem 1.5rem;
    }

    .login-header h2 {
        font-size: 1.6rem;
    }

    .login-body {
        padding: 2rem 1.5rem;
    }

    .btn-login {
        width: 100%;
        padding: 1rem 2rem;
    }

    .contact-page-title,
    .login-page-title {
        font-size: 2.2em !important;
    }
}

@media (max-width: 480px) {
    .contact-page-title,
    .login-page-title {
        font-size: 2em !important;
    }
}
