/**
 * Chit Fund Management System - Landing Page Styles
 * Modern Glassmorphism UI Design
 * Primary: #3b82f6 (Blue) | Accent: #ec4899 (Pink)
 */

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --accent: #ec4899;
    --accent-dark: #db2777;
    --accent-light: #f472b6;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 20px;
}

/* ============================================
   BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-800);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }
h5 { font-size: 0.875rem; }
h6 { font-size: 0.75rem; }

p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   UTILITY CLASSES
============================================ */
.section-padding {
    padding: 60px 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.section-subtitle {
    font-size: 0.875rem;
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   GLASSMORPHISM CARD
============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.3);
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
    color: var(--white);
}

.btn-accent-custom {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.35);
}

.btn-accent-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.45);
    color: var(--white);
}

.btn-outline-primary-custom {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 9px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

/* ============================================
   NAVIGATION
============================================ */
.navbar-custom {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar-custom.scrolled {
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-800) !important;
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600) !important;
    padding: 8px 16px !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-xl);
}

.hero-mockup {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============================================
   FEATURES SECTION
============================================ */
.features-section {
    background: var(--white);
}

.feature-card {
    padding: 24px;
    text-align: center;
    height: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.25rem;
    color: var(--white);
}

.feature-icon.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.feature-icon.bg-accent-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.feature-icon.bg-success-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.bg-warning-gradient {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-icon.bg-info-gradient {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-icon.bg-purple-gradient {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ============================================
   USER TYPES SECTION
============================================ */
.user-types-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.user-card {
    padding: 30px;
    text-align: center;
    height: 100%;
}

.user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--white);
}

.user-avatar.admin {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.user-avatar.customer {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.user-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.user-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.user-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.user-features li {
    font-size: 0.8rem;
    padding: 6px 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-features li i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* ============================================
   SCREENSHOTS SECTION
============================================ */
.screenshots-section {
    background: var(--white);
}

.screenshot-card {
    overflow: hidden;
    cursor: pointer;
}

.screenshot-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: var(--transition);
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 16px;
    border-radius: 0 0 var(--radius) var(--radius);
}

.screenshot-overlay span {
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 500;
}

.screenshots-disclaimer {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 24px;
    font-style: italic;
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #fce7f3 100%);
}

.pricing-card {
    padding: 30px 24px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-size: 0.65rem;
    padding: 4px 40px;
    transform: rotate(45deg);
    font-weight: 600;
}

.pricing-duration {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.pricing-price small {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-features li {
    font-size: 0.8rem;
    padding: 8px 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* ============================================
   SUBSCRIPTION FORM SECTION
============================================ */
.subscription-section {
    background: var(--white);
}

.subscription-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
}

.form-floating {
    margin-bottom: 16px;
}

.form-floating label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.form-control,
.form-select {
    font-size: 0.85rem;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #ef4444;
}

.invalid-feedback {
    font-size: 0.75rem;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--gray-900);
    padding: 40px 0 20px;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand span {
    color: var(--primary-light);
}

.footer-text {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 0;
}

.footer-links h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    font-size: 0.8rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ============================================
   ALERTS
============================================ */
.alert-custom {
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
}

.alert-success-custom {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.alert-danger-custom {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* ============================================
   CONTACT PAGE STYLES
============================================ */
.contact-hero-section {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    position: relative;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-section {
    background: var(--white);
}

.contact-info-card {
    padding: 30px 20px;
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.contact-form-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

.contact-map-wrapper {
    padding: 40px;
}

.contact-map-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    height: calc(100% - 60px);
    min-height: 350px;
}

.contact-map iframe {
    display: block;
}

.contact-faq-section {
    background: var(--white);
}

.contact-faq-section .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: var(--radius) !important;
    overflow: hidden;
}

.contact-faq-section .accordion-button {
    background: var(--glass-bg);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    padding: 18px 24px;
    border: none;
    box-shadow: none;
}

.contact-faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.contact-faq-section .accordion-button:focus {
    box-shadow: none;
}

.contact-faq-section .accordion-button::after {
    background-size: 16px;
}

.contact-faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.contact-faq-section .accordion-body {
    padding: 20px 24px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Contact Page Responsive */
@media (max-width: 991.98px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-section {
        padding: 120px 0 40px;
    }
    
    .contact-hero-title {
        font-size: 1.75rem;
    }
    
    .contact-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 24px;
    }
    
    .contact-map {
        min-height: 280px;
    }
}

/* ============================================
   BACK TO TOP BUTTON
============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    border: none;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   LOADING SPINNER
============================================ */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.spinner-overlay.show {
    opacity: 1;
    visibility: visible;
}

.spinner-custom {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

@media (max-width: 767.98px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.25rem; }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .subscription-form-wrapper {
        padding: 24px 16px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .footer-links {
        margin-top: 24px;
    }
}

/* ============================================
   ANIMATION CLASSES
============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for cards */
.feature-card { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   LOGO STYLES
============================================ */
.navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
}

/* ============================================
   GOOGLE MAPS SECTION
============================================ */
.map-section {
    width: 100%;
    position: relative;
}

.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

@media (max-width: 767.98px) {
    .map-wrapper iframe {
        height: 300px;
    }
    
    .navbar-logo {
        height: 32px;
    }
    
    .footer-logo {
        height: 28px;
    }
}

/* ============================================
   ADDITIONAL ANIMATIONS
============================================ */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    animation-delay: 4s;
}

/* Hover animations */
.feature-card:hover .feature-icon {
    animation: pulse 0.6s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

.screenshot-card img {
    transition: transform 0.4s ease;
}

/* Button hover effects */
.btn-primary-custom:hover,
.btn-outline-primary-custom:hover,
.btn-accent-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Glass card shimmer effect */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card {
    position: relative;
    overflow: hidden;
}
