/* ========================================
   CSS Variables & Base Styles
   ======================================== */
:root {
    --navy-dark: #1a2f4a;
    --navy: #2f445d;
    --navy-light: #4a6b8a;
    --gold: #c9a227;
    --gold-light: #d4b54a;
    --gold-dark: #a88a1f;
    --cream: #f9ecdb;
    --white: #c38e67;
    --gray-light: #f9ecdb;
    --gray: #6b7280;
    --text-dark: #1f2937;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.3);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: var(--navy);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo-image {
    width: 100px;
    height: auto;
    transition: transform var(--transition-normal);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text sup {
    font-size: 0.6em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-normal);
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.login-btn {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all var(--transition-normal) !important;
}

.login-btn:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4) !important;
}

.login-btn::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-normal);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1920&q=80') center/cover;
    opacity: 0.50;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(47, 68, 93, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-gold);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.3s;
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.5s;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    backdrop-filter: blur(10px);
    border: 2px solid #000000;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.app-btn i {
    font-size: 1.5rem;
}

.app-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: #000000;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

/* ========================================
   About App Section
   ======================================== */
.about-app {
    padding: 120px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.4rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.description-detail {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
}

/* ========================================
   CTA Banners
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.banner-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy-dark);
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
    min-width: 300px;
}

.banner-text h2 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.banner-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   Appraisal Section
   ======================================== */
.appraisal-section {
    padding: 80px 0;
    background: var(--cream);
}

.appraisal-card {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    padding: 50px 60px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
}

.appraisal-content h2 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.appraisal-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.7;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--cream);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* ========================================
   FAQ Preview Section
   ======================================== */
.faq-preview {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.faq-intro {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-icon-box {
    display: inline-block;
}

.faq-icon {
    width: 120px;
    height: 120px;
    background: var(--navy-dark);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
    cursor: pointer;
}

.faq-icon:hover {
    transform: scale(1.05) rotate(-3deg);
}

.faq-icon span:first-child {
    font-size: 1.4rem;
}

.faq-icon span:last-child {
    font-size: 1.1rem;
    color: var(--gold);
}

/* ========================================
   Download Section
   ======================================== */
.download-section {
    padding: 80px 0;
    background: #2f445d;
    text-align: center;
}

.download-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #f9ecdb;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--navy-dark);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.download-btn i {
    font-size: 2rem;
}

.btn-text {
    text-align: left;
}

.btn-text span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.btn-text strong {
    font-size: 1.1rem;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.download-btn.apple:hover {
    background: #000;
}

.download-btn.google:hover {
    background: #000;
}

/* ========================================
   App Screenshots Section
   ======================================== */
.app-screenshots {
    padding: 100px 0;
    background: #f9ecdb;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.main-screenshot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-screenshot img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: opacity 0.5s ease;
}

.screenshot-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.screenshot-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.screenshot-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    min-height: 60px;
    transition: opacity 0.3s ease;
}

.screenshot-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: all var(--transition-normal);
    border: 3px solid transparent;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

@media (max-width: 1024px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .screenshot-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .app-screenshots {
        padding: 60px 0;
    }
    
    .screenshots-grid {
        gap: 30px;
    }
    
    .main-screenshot img {
        max-height: 450px;
    }
    
    .screenshot-title {
        font-size: 1.8rem;
    }
    
    .screenshot-description {
        font-size: 1rem;
        min-height: 50px;
    }
    
    .screenshot-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .thumbnail {
        height: 70px;
    }
}

/* ========================================
   More Info / FAQ Section
   ======================================== */
.more-info {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: #000000;
    font-size: 1.1rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: #2f445d;
}

.faq-question i {
    color: #000000;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: #000000;
    line-height: 1.8;
}

.youtube-card {
    margin-top: 60px;
    padding: 0 20px;
}

.video-preview-card {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
}

.video-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.video-preview-image {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000000;
}

.video-preview-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-normal);
}

.video-preview-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.video-preview-card:hover .play-button {
    transform: scale(1.1);
    background: #cc0000;
}

.play-button i {
    font-size: 2.5rem;
    color: #ffffff;
}

.video-info {
    padding: 25px 30px;
    background: #ffffff;
}

.video-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    font-family: var(--font-display);
}

.video-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #666666;
}

/* ========================================
   Consultation Section
   ======================================== */
.consultation {
    padding: 120px 0;
    background: var(--gray-light);
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.consultation-image {
    position: relative;
}

.consult-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    left: 20px;
    top: 20px;
    background: var(--gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.section-label {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultation-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.consultation-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.consultation-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================================
   CTA Full Width
   ======================================== */
.cta-full {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1629909615184-74f495363b67?w=1920&q=80') center/cover fixed;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 68, 93, 0.95) 0%, rgba(47, 68, 93, 0.9) 100%);
}

.cta-full .container {
    position: relative;
    z-index: 1;
}

.cta-full h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-full p {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 40px;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
    background: var(--navy-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 47, 74, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-image {
    width: 200px;
    height: auto;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-owner {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-newsletter h3,
.footer-links h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom i {
    color: #e74c3c;
}

/* ========================================
   Animations
   ======================================== */
@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grid items */
.gallery-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-item:nth-child(2) { transition-delay: 0.2s; }
.gallery-item:nth-child(3) { transition-delay: 0.3s; }
.gallery-item:nth-child(4) { transition-delay: 0.4s; }

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .about-grid,
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right var(--transition-normal);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .appraisal-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-full h2 {
        font-size: 2rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .banner-text {
        min-width: auto;
    }
    
    .banner-btn {
        white-space: normal;
        padding: 14px 25px;
        font-size: 0.95rem;
        line-height: 1.4;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-buttons {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .banner-btn {
        font-size: 0.85rem;
        padding: 12px 18px;
        gap: 8px;
    }
    
    .banner-btn i {
        font-size: 1rem;
    }
    
    .app-screenshots {
        padding: 40px 0;
    }
    
    .main-screenshot img {
        max-height: 350px;
    }
    
    .screenshot-title {
        font-size: 1.5rem;
    }
    
    .screenshot-description {
        font-size: 0.95rem;
    }
    
    .screenshot-thumbnails {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
    }
    
    .thumbnail {
        height: 100px;
        border: 2px solid transparent;
    }
}
