/* ==== BASE STYLES ==== */
:root {
    /* Complementary Color Scheme */
    --primary-color: #3273dc;
    --primary-color-light: #4a8bef;
    --primary-color-dark: #1a56b0;
    --secondary-color: #dc7332;
    --secondary-color-light: #ef8b4a;
    --secondary-color-dark: #b05a1a;
    
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #777777;
    
    --background-light: #f5f8ff;
    --background-dark: #121e34;
    
    --glassmorphism-bg: rgba(255, 255, 255, 0.2);
    --glassmorphism-border: rgba(255, 255, 255, 0.3);
    --glassmorphism-shadow: rgba(0, 0, 0, 0.1);
    
    --dark-overlay: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

/* ==== GLASSMORPHISM ELEMENTS ==== */
.glassmorphism-header {
    background: var(--glassmorphism-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glassmorphism-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.glassmorphism-section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4rem 1.5rem;
}

.alternate-section {
    background-color: rgba(245, 248, 255, 0.9);
    padding: 4rem 1.5rem;
}

.glassmorphism-footer {
    background: rgba(18, 30, 52, 0.95);
    color: var(--text-light);
    padding: 3rem 1.5rem;
}

.glassmorphism-card {
    background: var(--glassmorphism-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--glassmorphism-border);
    box-shadow: 0 8px 32px 0 var(--glassmorphism-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.glassmorphism-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.2);
}

.glassmorphism-button {
    background: var(--primary-color);
    border: 1px solid var(--primary-color-light);
    box-shadow: 0 4px 16px rgba(50, 115, 220, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.glassmorphism-button:hover {
    background: var(--primary-color-dark);
    box-shadow: 0 6px 20px rgba(50, 115, 220, 0.4);
    transform: translateY(-2px);
}

.glassmorphism-button-light {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.glassmorphism-button-light:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.glassmorphism-input, .glassmorphism-select {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(200, 200, 200, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.glassmorphism-input:focus, .glassmorphism-select:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(50, 115, 220, 0.25);
}

/* ==== COMPONENTS STYLING ==== */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.resource-list li {
    margin-bottom: 1rem;
}

.expert-card .card-content, .team-card .card-content {
    padding: 1.5rem;
}

.press-card {
    height: 100%;
}

.press-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer-divider {
    margin: 2rem 0;
    background-color: rgba(255, 255, 255, 0.1);
    height: 1px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.cta-section {
    background-size: cover;
    background-position: center;
    padding: 6rem 1.5rem;
}

.social-links p {
    margin-bottom: 0.5rem;
}

/* ==== ANIMATIONS ==== */
.animate-on-scroll {
    /*opacity: 0;*/
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    z-index: 9999;
    transform: scaleY(0);
    transform-origin: top;
}

/* ==== RESPONSIVE ADJUSTMENTS ==== */
@media screen and (max-width: 768px) {
    .hero-body {
        padding: 6rem 1.5rem;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .featured {
        transform: none;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

/* Ensure high contrast for text on images */
.hero-body h1, .hero-body h2, .hero-body p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.cta-section h2, .cta-section p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* ==== SPECIFIC PAGE STYLES ==== */
/* Privacy & Terms Pages */
.content h2.title {
    margin-top: 3rem;
}

.content ul, .content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form .field {
    margin-bottom: 1.5rem;
}

/* FAQ Styles */
.faq-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

/* Team & Expert Cards */
.team-card .image, .expert-card .image {
    overflow: hidden;
}

.team-card img, .expert-card img {
    transition: transform 0.5s ease;
}

.team-card:hover img, .expert-card:hover img {
    transform: scale(1.05);
}

/* Success Page */
.success-icon {
    color: #23d160;
    font-size: 5rem;
    margin-bottom: 2rem;
}

/* Dark overlay for better text readability on background images */
.hero, .cta-section {
    position: relative;
}

.hero::before, .cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 0;
}

.hero .hero-body, .cta-section .container {
    position: relative;
    z-index: 1;
}
.footer{
    background: black!important;
}