/* 
 * PilotPass Design System
 * Theme: Premium FinTech / Official (Polished V2)
 * Version: 2.0.0 (Glassmorphism & Glows)
 */

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #D4AF37, #F0C850);
    color: #0a192f;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}

.announcement-bar .emoji {
    margin-right: 8px;
}

/* Root Variables */
:root {
    /* Color Palette */
    --color-navy: #0a192f;
    /* Deep Navy - Background */
    --color-navy-rgb: 10, 25, 47;
    --color-navy-light: #112240;
    /* Lighter Navy */
    --color-navy-light-rgb: 17, 34, 64;
    --color-slate: #8892b0;
    /* Slate - Secondary Text */
    --color-white: #e6f1ff;
    /* Off White - Primary Text */
    --color-gold: #FFD700;
    /* Gold */
    --color-gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --color-green: #64ffda;
    /* Green */

    /* Typography */
    --font-main: 'Inter', 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-spacing: 100px;

    /* Effects */
    --shadow-card: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(17, 34, 64, 0.65);
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--color-navy);
    /* Ambient Glow (Top Center) */
    background-image:
        radial-gradient(circle at 50% -10%, rgba(20, 45, 85, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 90% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 30%);
    background-attachment: fixed;
    color: var(--color-slate);
    font-family: var(--font-main);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

section {
    padding: var(--section-spacing) 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* Gradient Text for .text-gold in Headings */
h1 .text-gold,
h2 .text-gold {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Fix for gradient clipping */
}

/* Fallback for regular text */
.text-gold {
    color: var(--color-gold);
}

/* 
 * COMPONENTS 
 */

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 80px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 10px;
        /* Ajdust for mobile alignment */
    }
}

.navbar .logo img {
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar .logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5), 0 4px 10px rgba(0, 0, 0, 0.4);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.lang-switch {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.lang-switch a {
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.lang-switch a:hover {
    color: var(--color-white);
}

.lang-switch a.active {
    color: var(--color-navy);
    background: var(--color-gold);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 90vh;
    position: relative;
    padding-top: 0;
}

.hero-content {
    flex: 1;
    padding-right: 60px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    /* Larger */
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 540px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 1;
}

/* Ambient Glow behind Phone */
.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, rgba(10, 25, 47, 0) 70%);
    filter: blur(60px);
    z-index: -1;
    animation: pulseGlow 5s ease-in-out infinite alternate;
}

/* Hero Inner Container */
.hero-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Glassmorphism Phone Container */
.phone-mockup {
    width: 360px;
    /* Increased for better readability */
    height: 780px;
    /* Aspect ratio maintained (360 * 2.166) */
    background: var(--color-navy);
    /* Solid base for image */
    border: 8px solid #233554;
    /* Bezel */
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    /* Animation removed for CLS optimization */
    /* Aspect Ratio for CLS */
    aspect-ratio: 360 / 780;
    /* GPU acceleration hint */
    will-change: auto;
    contain: layout style paint;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 15px;
}

.store-btn {
    background: transparent;
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    line-height: normal;
}

.store-btn span {
    font-size: 1.2rem;
}

.store-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3);
}

/* Professional Download Area (Official Badges + QR) */
.download-area {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    background: rgba(17, 34, 64, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.download-info {
    max-width: 180px;
}

.download-info .launch-tag {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-navy);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.download-info p {
    font-size: 0.85rem;
    color: var(--color-slate);
    line-height: 1.4;
}

.official-badges {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    margin-top: 15px !important;
}

.official-badges a {
    display: inline-block !important;
    height: 44px !important;
}

.official-badges img {
    height: 100% !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
}

.official-badges a:hover img {
    transform: scale(1.05) !important;
}

.qr-group {
    display: flex !important;
    gap: 15px !important;
    padding-left: 15px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    align-items: center !important;
}

.qr-box-mini {
    text-align: center !important;
}

.qr-box-mini .qr-frame {
    width: 100px !important;
    height: 100px !important;
    background: #fff !important;
    padding: 8px !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qr-box-mini .qr-frame img {
    max-width: 90% !important;
    max-height: 90% !important;
    object-fit: contain !important;
}

.qr-box-mini span {
    display: block !important;
    font-size: 0.65rem !important;
    color: var(--color-slate) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

@media (max-width: 768px) {
    .download-area {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 25px;
    }

    .download-info {
        max-width: none;
    }

    .official-badges {
        flex-direction: row;
        justify-content: center;
    }

    .qr-group {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 20px;
    }
}

.badge-btn .badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-btn .badge-text small {
    font-size: 0.6rem;
    opacity: 0.7;
}

.badge-btn .badge-text strong {
    font-size: 0.9rem;
}

.smart-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.smart-qr .qr-box {
    width: 90px;
    height: 90px;
    margin-bottom: 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: #fff;
    /* QR kodların beyaz arka planda daha iyi okunması için */
    padding: 5px;
}

.smart-qr span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-slate);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .download-bar {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        width: 100%;
        padding: 30px 20px;
    }

    .download-text {
        max-width: none;
        text-align: center;
    }

    .store-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.qr-box::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background-image:
        radial-gradient(circle, var(--color-gold) 1px, transparent 1px),
        radial-gradient(circle, var(--color-gold) 1px, transparent 1px);
    background-size: 15px 15px;
    background-position: 0 0, 7.5px 7.5px;
    opacity: 0.15;
    animation: rotatePattern 20s linear infinite;
}

.qr-box::after {
    content: attr(data-label);
    position: absolute;
    background: rgba(212, 175, 55, 0.95);
    color: var(--color-navy);
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 2;
}

@keyframes rotatePattern {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.qr-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-white);
    opacity: 0.8;
}

/* Problem Section */
.problem-section {
    position: relative;
    /* Darker Background */
    background: linear-gradient(180deg, var(--color-navy) 0%, #050d1a 100%);
    padding: 120px 0;
}

/* System/Protocol Section */
.system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Stats Alignment Fix */
.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 16px;
    border: var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    /* Flexbox for vertical alignment */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.system-step h3 {
    margin-bottom: 15px;
    margin-top: auto;
    /* Push down if needed */
}

/* Stats Row Alignment */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    /* Consistent gap */
    flex-wrap: wrap;
    align-items: flex-start;
    /* Align tops */
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

/* Supported Languages Section */
.languages-section {
    padding: 80px 0;
    text-align: center;
    background: rgba(10, 25, 47, 0.5);
}

.lang-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 30px auto 0;
}

.lang-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--color-slate);
    transition: var(--transition);
}

.lang-badge:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Hover Effect for Cards */
.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 25px;
    /* Icon Glow */
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.system-step h3 {
    margin-bottom: 15px;
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #050d1a;
}

footer a {
    opacity: 0.7;
}

footer a:hover {
    opacity: 1;
    color: var(--color-gold);
}

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

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

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

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }

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

@media (max-width: 768px) {
    .hero {
        padding-top: 40px;
        /* Reduced top padding */
        min-height: auto;
        /* Remove fixed height constraint */
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller title for mobile */
    }

    .store-buttons {
        justify-content: center;
    }

    /* Make phone responsive on mobile */
    .phone-mockup {
        width: 100% !important;
        max-width: 300px;
        /* Limit max width on mobile */
        height: auto !important;
        aspect-ratio: 360/780;
        /* Maintain aspect ratio */
        margin: 0 auto;
        border-width: 4px;
        /* Thinner border for mobile */
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-image::before {
        width: 100%;
        /* Resize glow for mobile */
    }

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

/* 
 * Feature Sections (Apple Style Zig-Zag)
 */
.feature-section {
    padding: 100px 0;
    position: relative;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
    /* Space between features */
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #8892b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--color-slate);
    margin-bottom: 30px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* Phone Mockup Adjustments for Features */
.feature-image .phone-mockup {
    height: 780px;
    /* Match Hero size */
    width: 360px;
    /* Increased for readability */
    /* REMOVED 3D Transform for better readability */
    transition: all 0.5s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    /* Clean shadow */
    aspect-ratio: 360 / 780;
}

.feature-row.reverse .feature-image .phone-mockup {
    /* No special transform needed */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-image:hover .phone-mockup {
    transform: translateY(-10px);
    /* Simple float up on hover */
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        margin-bottom: 80px;
    }
}

/* Premium Features Section */
.premium-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #050d1a 0%, var(--color-navy) 100%);
    position: relative;
}

.premium-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
}

.premium-visual {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 992px) {
    .premium-inner {
        flex-direction: column;
        text-align: center;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .premium-visual {
        order: -1;
        margin-bottom: 40px;
    }
}

.premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.premium-card h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-card ul {
    list-style: none;
    padding: 0;
}

.premium-card li {
    margin-bottom: 12px;
    color: var(--color-slate);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-card li::before {
    content: '✓';
    color: var(--color-green);
    font-weight: bold;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Blog System Styles
   ========================================= */

/* Blog Index */
.blog-header {
    padding: 120px 0 60px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--color-slate);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--color-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Blog Single Post */
.blog-post-header {
    padding: 120px 0 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-post-content {
    max-width: 720px;
    margin: 0 auto 80px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.blog-post-content h2 {
    color: var(--color-white);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.blog-post-content h3 {
    color: var(--color-gold);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-post-content strong {
    color: var(--color-white);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-slate);
    text-decoration: none;
    margin-bottom: 30px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 1.8rem;
    }
}

/* CTA Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #FFA000 100%);
    color: var(--color-navy);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: normal;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.cta-button.secondary:hover {
    background-color: var(--color-gold) !important;
    background: var(--color-gold) !important;
    /* Fallback */
    color: var(--color-navy) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* =========================================
   Mobile Optimization Improvements
   ========================================= */

@media (max-width: 768px) {

    /* Stack Blog Grid on Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Adjust Navbar for Mobile */
    .nav-links {
        gap: 15px;
        /* Reduce gap from 30px */
    }

    .nav-links li a {
        font-size: 0.9rem;
    }

    /* Ensure CTA Button is touch-friendly but fits */
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}

/* Success Card Styles */
.success-card {
    display: none;
    text-align: center;
    padding: 20px;
    animation: fadeInUp 0.5s ease forwards;
}

.success-card .success-icon {
    font-size: 3rem;
    color: var(--color-green);
    margin-bottom: 15px;
}

.success-card h3 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.success-card p {
    color: var(--color-slate);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar CTA Button */
.nav-cta-btn {
    background: var(--color-gold-gradient);
    color: var(--color-navy) !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    filter: brightness(1.1);
}

@media (max-width: 600px) {
    .nav-cta-btn {
        display: none;
        /* Hide on very small screens to save space */
    }
}

/* Fix for Navbar Layout */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}