/* LuckyVault - Main Stylesheet */
/* Design: Material Design with Luxurious Color Palette */

:root {
    --primary-dark: #1a237e;
    --primary: #283593;
    --primary-light: #3949ab;
    --accent-gold: #f9a825;
    --accent-gold-light: #fdd835;
    --accent-gold-dark: #f57f17;
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --background-light: #fafafa;
    --background-white: #ffffff;
    --surface-elevated: #ffffff;
    --border-light: #e0e0e0;
    --success: #43a047;
    --error: #e53935;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.navbar-custom {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 2px 10px rgba(26, 35, 126, 0.3);
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-custom .brand-logo {
    display: flex !important;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 15px 0;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 30px;
    position: static !important;
    left: auto !important;
    transform: none !important;
}

.navbar-custom .brand-logo .logo-icon {
    font-size: 1.8rem;
}

.navbar-custom nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-custom .nav-links {
    display: flex !important;
    list-style: none !important;
    gap: 8px !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}

.navbar-custom .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.navbar-custom .nav-links a:hover,
.navbar-custom .nav-links a.active {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

/* Override Materialize nav styles completely */
.navbar-custom nav,
.navbar-custom nav ul,
.navbar-custom nav ul li,
.navbar-custom nav ul li a {
    background: transparent !important;
    box-shadow: none !important;
    height: auto !important;
    line-height: normal !important;
    float: none !important;
    position: static !important;
}

.navbar-custom .nav-links {
    display: flex !important;
    list-style: none !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-custom .nav-links li {
    display: block !important;
    float: none !important;
}

.navbar-custom .nav-links li a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    display: block !important;
    transition: all 0.3s ease !important;
}

.navbar-custom .nav-links li a:hover,
.navbar-custom .nav-links li a.active {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: #fff;
    padding: 80px 20px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 .highlight {
    color: var(--accent-gold);
    display: block;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 168, 37, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

/* Device Mockup */
.hero-device {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-mockup {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.device-frame {
    position: relative;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.device-screen {
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 9/19.5;
}

.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(5px);
    transition: filter 0.5s ease;
}

.device-screen img.loaded {
    filter: blur(0);
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: var(--background-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.feature-row {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row:nth-child(odd) {
    direction: rtl;
}

.feature-row:nth-child(odd) > * {
    direction: ltr;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(40, 53, 147, 0.3);
}

.feature-content h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-medium);
    font-size: 1.05rem;
    text-align: left;
    line-height: 1.7;
}

.feature-content ul {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.feature-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

.feature-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.feature-image {
    display: flex;
    justify-content: center;
}

.feature-image img {
    max-width: 280px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Screenshots Section */
.screenshots-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--background-light) 0%, #e8eaf6 100%);
    max-height: 500px;
    overflow: hidden;
}

.screenshots-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    height: 350px;
}

.carousel-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    align-items: center;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.screenshot-device {
    position: relative;
    max-width: 200px;
}

.screenshot-frame {
    background: linear-gradient(145deg, #333 0%, #1a1a1a 100%);
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.screenshot-frame img {
    width: 100%;
    border-radius: 18px;
    display: block;
    max-height: 280px;
    object-fit: cover;
    cursor: pointer;
    filter: blur(5px);
    transition: filter 0.5s ease;
}

.screenshot-frame img.loaded {
    filter: blur(0);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface-elevated);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

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

/* Footer */
.footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}

.footer-links h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Page Content (Privacy, Terms, Contact) */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-card {
    background: var(--surface-elevated);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-card h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-gold);
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-card p {
    color: var(--text-medium);
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.8;
}

.content-card ul {
    margin: 15px 0;
    padding-left: 25px;
    text-align: left;
}

.content-card ul li {
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-card a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.content-card a:hover {
    border-bottom-color: var(--primary);
}

/* Contact Form */
.contact-section {
    padding: 80px 20px;
    background: var(--background-light);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.7;
}

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

.contact-detail .icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-detail span {
    font-size: 1rem;
}

.contact-form-card {
    background: var(--surface-elevated);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(40, 53, 147, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.file-input-wrapper {
    position: relative;
}

.file-input-wrapper input[type="file"] {
    padding: 12px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 53, 147, 0.4);
}

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Privacy Accept Button (Flutter Integration) */
.privacy-accept-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 126, 0.95) 20%);
    padding: 30px 20px 25px;
    z-index: 9999;
    display: none;
}

.privacy-accept-container.visible {
    display: block;
}

.privacy-accept-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(249, 168, 37, 0.5);
    transition: all 0.3s ease;
}

.privacy-accept-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(249, 168, 37, 0.6);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .device-mockup {
        max-width: 280px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row:nth-child(odd) {
        direction: ltr;
    }

    .feature-content {
        text-align: center;
    }

    .feature-content p,
    .feature-content ul {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-custom .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .navbar-custom .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-custom .nav-links a {
        display: block;
        padding: 15px;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .device-mockup {
        max-width: 240px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .screenshots-section {
        padding: 60px 20px;
        max-height: 420px;
    }

    .screenshots-carousel {
        height: 300px;
    }

    .screenshot-device {
        max-width: 160px;
    }

    .screenshot-frame img {
        max-height: 220px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .page-header {
        padding: 60px 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-card {
        padding: 30px 25px;
    }

    .contact-form-card {
        padding: 30px 25px;
    }

    .contact-info {
        padding: 30px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .navbar-custom {
        padding: 0 15px;
    }

    .navbar-custom .brand-logo {
        font-size: 1.2rem;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .device-mockup {
        max-width: 200px;
    }

    .device-frame {
        border-radius: 30px;
        padding: 8px;
    }

    .device-screen {
        border-radius: 22px;
    }

    .features-section {
        padding: 60px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }

    .screenshots-section {
        max-height: 380px;
    }

    .screenshots-carousel {
        height: 260px;
    }

    .screenshot-device {
        max-width: 140px;
    }

    .screenshot-frame img {
        max-height: 190px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer {
        padding: 40px 15px 25px;
    }
}

/* Orientation change handling */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
    }

    .device-mockup {
        max-width: 180px;
    }

    .screenshots-section {
        max-height: 350px;
    }

    .screenshots-carousel {
        height: 250px;
    }

    .screenshot-device {
        max-width: 130px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
