:root {
    --primary-blue: #0052FF;
    --primary-hover: #0040cc;
    --secondary-teal: #00C4B5;
    --accent-green: #00D26A;
    --danger-red: #ef4444;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-main: #F4F7F9;
    --bg-card: #FFFFFF;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Reusable Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(0, 82, 255, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 82, 255, 0.23);
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: rgba(0, 82, 255, 0.05);
}

.card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-green {
    background-color: #dcfce7;
    color: #166534;
}

.badge-red {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar */
.navbar {
    background-color: transparent;
    backdrop-filter: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
}

.navbar.scrolled,
.navbar.menu-open {
    background-color: #ffffff;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}



.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    /*background: radial-gradient(circle at 50% -20%, #e0e7ff 0%, var(--bg-main) 70%);*/
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--text-main);
}

.hero-title span {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-container {
    width: 100%;
    max-width: 350px;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.app-header-mock {
    background: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.app-header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}



.app-content-mock {
    padding: 16px;
}

.app-promo-card {
    background: linear-gradient(135deg, #0a2540, var(--primary-blue));
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.app-promo-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.app-promo-card p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.app-promo-btn {
    background: #fff;
    color: #0a2540;
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-block;
}

.app-stats-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.app-stat-box {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.app-stat-box h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.app-stat-box p {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* Features */
.features {
    padding: 100px 0;
    background-color: #fff;
}

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #eff6ff;
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Floating UI Components (Carousel visuals) */
.ui-showcase {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.floating-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: absolute;
    width: 100%;
    max-width: 350px;
    z-index: 2;
    transition: transform 0.5s ease;
}

.floating-card-secondary {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 250px;
    z-index: 1;
    opacity: 0.9;
    transform: scale(0.9);
}

.floating-badge {
    background: #fff;
    border-radius: 9999px;
    padding: 8px 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    z-index: 3;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Animations for floating elements */
@keyframes float-slow {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes float-medium {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes float-fast {
    0% {
        transform: translateY(0px);
    }

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

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

.animate-float-1 {
    animation: float-slow 6s ease-in-out infinite;
}

.animate-float-2 {
    animation: float-medium 5s ease-in-out infinite 1s;
}

.animate-float-3 {
    animation: float-fast 4s ease-in-out infinite 0.5s;
}

/* Watchlist UI specific */
.watchlist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.watchlist-symbol {
    font-weight: 700;
    font-size: 1rem;
}

.watchlist-name {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.watchlist-price {
    font-weight: 700;
    text-align: right;
}

.watchlist-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
}

/* Review UI specific */
.review-ui-card {
    border-left: 4px solid var(--primary-blue);
}

/* Call Preview Section */
.call-preview {
    padding: 100px 0;
}

.call-preview-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.call-preview-content {
    flex: 1;
}

.call-card-mockup {
    flex: 1;
    max-width: 450px;
}

.app-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--card-shadow-hover);
    margin-bottom: 20px;
}

.app-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.app-card-title {
    font-size: 1.125rem;
    font-weight: 700;
}

.app-card-data {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.data-box {
    flex: 1;
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
}

.data-box-label {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.data-box.danger .data-box-label {
    color: var(--danger-red);
}

.data-box.success .data-box-label {
    color: var(--accent-green);
}

.data-box-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.target-list {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.target-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.target-item i {
    color: var(--accent-green);
    margin-right: 8px;
}

.target-item.pending i {
    color: #cbd5e1;
}

/* Success Stats */
.success-stats {
    background-color: #0f172a;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--secondary-teal);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1.125rem;
    color: #cbd5e1;
}

/* Subscriptions */
.subscriptions {
    padding: 100px 0;
    background-color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    border: 1px solid #e2e8f0;
    position: relative;
    padding: 40px 30px;
}

.pricing-card.popular {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px -5px rgba(0, 82, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

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

.price {
    font-size: 3rem;
    font-weight: 800;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pricing-features i {
    color: var(--primary-blue);
}

.pricing-card .btn {
    width: 100%;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    cursor: grab;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.marquee-wrapper::-webkit-scrollbar {
    display: none;
}

.marquee-wrapper:active {
    cursor: grabbing;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0 15px;
    align-items: stretch;
}

.testimonial-card {
    background: #fff;
    width: 300px;
    flex-shrink: 0;
    white-space: normal;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-review .video-container {
    transition: transform 0.3s ease;
    height: 220px; /* Reduced height to keep cards shorter */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #000;
    margin-bottom: 15px;
    cursor: pointer;
}

.video-review:hover .video-container {
    transform: scale(1.02);
}

.video-review:hover .play-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.show {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    max-height: 90vh;
}

@media (min-width: 768px) {
    .video-modal-content {
        max-width: 450px; /* Constrain width so height doesn't exceed screen */
    }
}

.video-modal-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-video {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: color 0.2s;
}

.close-video:hover {
    color: #fca5a5;
}

.stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--primary-blue);
    color: #334155; /* Changed for pastel contrast */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0052FF, #00C4B5);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #fff;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-app {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-app:hover {
    transform: scale(1.05);
}

.btn-app i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

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

.footer-logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 5px;
}

.social-links a {
    color: #94a3b8;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {

    .hero .container,
    .call-preview-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-inner {
        flex-direction: column !important;
        padding: 60px 20px !important;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    .carousel-slide {
        flex-direction: column !important;
        padding: 0 20px !important;
        gap: 40px !important;
    }

    .carousel-content .section-title,
    .carousel-content .section-subtitle {
        text-align: center !important;
    }

    .ui-showcase {
        flex: none !important;
        width: 100% !important;
        min-height: 350px !important;
        transform: scale(0.85);
        margin-bottom: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 1.75rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 24px !important;
        line-height: 1.5;
    }

    .hero-inner {
        padding: 40px 16px !important;
    }

    .hero-ctas {
        gap: 12px !important;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-app, .btn-dark {
        width: 100%;
        justify-content: center;
        padding: 10px 20px !important;
        font-size: 1rem !important;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .feature-icon {
        width: 64px !important;
        height: 64px !important;
        font-size: 1.5rem !important;
        margin-bottom: 16px !important;
    }

    .feature-card h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }
    
    .hero-visual svg {
        display: none !important;
    }
    
    .hero-image-container {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto;
        transform: rotate(0deg) !important;
    }
    
    .ui-showcase {
        flex: none !important;
        width: 100% !important;
        min-height: 280px !important;
        transform: scale(0.75);
    }

    .app-features-carousel, 
    .subscriptions, 
    .features {
        padding: 40px 0 !important;
    }

    .hero {
        padding: 120px 20px 40px 20px !important;
    }

    .carousel-slide {
        gap: 20px !important;
        padding: 0 45px !important;
    }

    .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    }

    .carousel-btn.prev-btn {
        left: 5px !important;
    }
    
    .carousel-btn.next-btn {
        right: 5px !important;
    }

    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }

    .carousel-content ul li {
        margin-bottom: 12px !important;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

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

/* Legal Content Styles */
.legal-content {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.legal-content h3,
.legal-content h2,
.legal-content h4 {
    color: var(--text-main);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.75rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    font-size: 1.35rem;
}

.legal-content p {
    margin-bottom: 1.25rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-main);
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Inner Pages Banner */
.inner-banner {
    background-color: #e8f1ff;
    padding: 140px 20px 80px;
    text-align: center;
    border-bottom: 1px solid #dce8fa;
}

.inner-banner h1 {
    font-size: 2.75rem;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.inner-banner h1 .highlight {
    color: #0ea5e9;
}

.inner-banner p {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}


.contact-section {
    background-color: #f4f9ff;
    padding: 150px 0 100px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-col h1 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.contact-info-col h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-info-col>p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.contact-details h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-details p {
    color: #64748b;
    font-size: 1rem;
}

.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-form-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #1e3a8a;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 1rem;
    color: #334155;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
}

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

.btn-submit {
    width: 100%;
    background: #0052ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0043d1;
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Global Overlays */
/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top.show.lift {
    transform: translateY(-80px);
    /* Lifts button above cookie banner */
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

.back-to-top.show.lift:hover {
    transform: translateY(-83px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #111827;
    color: #f3f4f6;
    padding: 16px 0;
    z-index: 1000;
    transition: bottom 0.5s ease;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.cookie-text a {
    color: var(--secondary-teal);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-outline {
    background: transparent;
    border: 1px solid #374151;
    color: #d1d5db;
}

.btn-cookie-outline:hover {
    background: #1f2937;
    color: #fff;
}

.btn-cookie-primary {
    background: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    color: #fff;
}

.btn-cookie-primary:hover {
    background: var(--primary-hover);
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }

    .back-to-top.show.lift {
        transform: translateY(-140px);
        /* Taller banner on mobile */
    }

    .back-to-top.show.lift:hover {
        transform: translateY(-143px);
    }
}
/* Form Message Styles */
.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    display: none;
}
.form-message:not(:empty) {
    display: block;
}
.form-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
