/* CSS Variables */
:root {
    --primary: #aa8338;
    --primary-dark: #8a6a2a;
    --dark-blue: #081b31;
    --light-beige: #e9e9e2;
    --dark-gray: #231f20;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e1e5eb;
    --transition: all 0.3s ease;
}

/* Legal Pages */
.legal-page {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f2 55%, #ffffff 100%);
    min-height: 100vh;
}

.legal-section {
    padding: 140px 0 80px;
}

.legal-card {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0 20px;
}

.legal-header {
    margin-bottom: 30px;
}

.legal-header h1 {
    font-size: 2.35rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    padding-left: 18px;
    border-left: 5px solid var(--primary);
    letter-spacing: 0.4px;
}

.legal-header p {
    color: #5e6673;
    font-size: 1.02rem;
    margin-bottom: 0;
}

.legal-content {
    color: #2e2c2d;
}

.legal-content > h1 {
    font-size: 2.35rem;
    color: var(--dark-blue);
    margin: 30px 0 18px;
    padding-left: 18px;
    border-left: 5px solid var(--primary);
    letter-spacing: 0.4px;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-top: 34px;
    margin-bottom: 14px;
    padding-left: 16px;
    border-left: 4px solid rgba(170, 131, 56, 0.55);
}

.legal-content h3 {
    font-size: 1.12rem;
    color: var(--primary-dark);
    margin-top: 22px;
    margin-bottom: 10px;
    padding-left: 16px;
    border-left: 3px solid rgba(8, 27, 49, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.legal-content p {
    line-height: 1.8;
    margin-left: 16px;
}

.legal-content ul {
    margin: 0 0 18px 36px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-highlight {
    background: rgba(170, 131, 56, 0.1);
    border-left: 4px solid var(--primary);
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.finpay-terms,
.belmoney-terms {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(8, 27, 49, 0.08);
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.95), rgba(255, 255, 255, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.finpay-terms {
    margin-bottom: 28px;
}

.terms-section-divider {
    width: 100%;
    height: 1px;
    margin: 18px 0 26px;
    background: linear-gradient(90deg, transparent, rgba(8, 27, 49, 0.2), rgba(170, 131, 56, 0.7), rgba(8, 27, 49, 0.2), transparent);
}

.belmoney-terms {
    margin-top: 0;
    transform: translateY(-8px);
}

.finpay-terms h2,
.belmoney-terms h2 {
    margin-top: 0;
}

.finpay-terms > h3:first-of-type,
.belmoney-terms > h3:first-of-type {
    margin-top: 0;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 120px 0 60px;
    }

    .legal-card {
        padding: 0 16px;
    }

    .legal-header h1 {
        font-size: 1.8rem;
        padding-left: 14px;
    }

    .legal-content h2 {
        font-size: 1.2rem;
        padding-left: 14px;
    }

    .legal-content > h1 {
        font-size: 1.8rem;
        margin-top: 24px;
        padding-left: 14px;
    }

    .legal-content h3 {
        padding-left: 14px;
    }

    .legal-content p {
        margin-left: 14px;
    }

    .legal-content ul {
        margin-left: 30px;
    }

    .finpay-terms,
    .belmoney-terms {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .terms-section-divider {
        margin: 14px 0 22px;
    }
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Gradient Title Styles */
.gradient-title {
    background: linear-gradient(90deg, var(--dark-blue) 30%, var(--primary) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.scroll-animate.animate-in .section-title,
.section-header.scroll-animate-child.animate-in .section-title {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.scroll-animate.animate-in .section-subtitle,
.section-header.scroll-animate-child.animate-in .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

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

/* Scroll-triggered Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-child {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease var(--animation-delay, 0s), transform 0.6s ease var(--animation-delay, 0s);
}

.scroll-animate-child.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px; /* Changed from 4px to 50px for pill shape */
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(170, 131, 56, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-outline:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header & Navigation - Modern Redesign */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(170, 131, 56, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

/* Navigation Links */
.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::before {
    width: 100%;
}

/* CTA Button */
.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(170, 131, 56, 0.2);
    text-decoration: none;
}

.nav-cta i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(170, 131, 56, 0.3);
    color: var(--white);
}

.nav-cta:hover i {
    transform: translateX(5px);
}

body.modal-open {
    overflow: hidden;
}

.app-download-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 27, 49, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.app-download-modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.app-download-modal__dialog {
    position: relative;
    width: min(100%, 720px);
    background: #f7f7f7;
    border-radius: 0;
    padding: 58px 52px 40px;
    text-align: center;
    box-shadow: 0 26px 70px rgba(7, 21, 37, 0.35);
    transform: translateY(24px) scale(0.98);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-download-modal.is-visible .app-download-modal__dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.app-download-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #7b8190;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.app-download-modal__close:hover {
    color: var(--dark-blue);
    transform: rotate(90deg);
}

.app-download-modal__eyebrow {
    color: var(--primary);
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.app-download-modal__title {
    color: var(--dark-blue);
    font-size: 3rem;
    margin-bottom: 16px;
}

.app-download-modal__subtitle {
    color: #687184;
    margin: 0 auto 28px;
    font-size: 1.15rem;
    max-width: 540px;
}

.app-download-modal__qr-shell {
    background: var(--white);
    border: 2px solid rgba(170, 131, 56, 0.35);
    border-radius: 20px;
    padding: 26px;
    max-width: 380px;
    margin: 0 auto 18px;
}

.app-download-modal__qr-image {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    object-fit: contain;
    display: block;
    margin: 0 auto 14px;
}

.app-download-modal__platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--dark-blue);
    font-size: 1.35rem;
    font-weight: 500;
}

.app-download-modal__platforms i {
    margin-right: 6px;
}

.app-download-modal__direct-links {
    color: #8a919f;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.app-download-modal__direct-links a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.app-download-modal__direct-links a:hover {
    text-decoration: underline;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: linear-gradient(135deg, rgba(170, 131, 56, 0.1), rgba(170, 131, 56, 0.05));
    border: 1px solid rgba(170, 131, 56, 0.2);
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: transparent;
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

.menu-toggle:hover i {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-cta {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-left: 1px solid rgba(170, 131, 56, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
    }
    
    .nav-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        margin-top: 20px;
    }

    .app-download-modal {
        padding: 12px;
    }

    .app-download-modal__dialog {
        padding: 52px 18px 30px;
        border-radius: 18px;
    }

    .app-download-modal__eyebrow {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .app-download-modal__title {
        font-size: 2.1rem;
    }

    .app-download-modal__subtitle {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .app-download-modal__qr-shell {
        padding: 16px;
        border-radius: 16px;
    }

    .app-download-modal__platforms {
        font-size: 1.05rem;
        gap: 8px;
    }

    .app-download-modal__direct-links {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 30px;
    }
    
    .menu-toggle {
        padding: 8px 12px;
        font-size: 1.2rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
}

/* Scroll Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header {
    animation: slideDown 0.5s ease forwards;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .header,
    .navbar,
    .logo,
    .nav-link::before,
    .nav-cta,
    .nav-cta i,
    .menu-toggle,
    .nav-menu {
        animation: none;
        transition: none;
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--dark-blue) 30%, var(--primary) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.stat-item {
    flex: 1;
    padding: 20px 15px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--light-beige);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    min-width: 0;
    animation: floatStat 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
    animation-delay: 1s;
}

.stat-item:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes floatStat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(170, 131, 56, 0.12);
}

.stat-content {
    text-align: center;
    width: 100%;
}

.stat-number {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: break-word;
}

.stat-label {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    padding: 0 5px;
}

/* Responsive adjustments for hero stats */
@media (max-width: 1200px) {
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 180px;
        max-width: 190px;
        padding: 18px 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 12px;
    }
    
    .stat-item {
        padding: 16px 10px;
        min-width: 160px;
        max-width: 170px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .stat-item {
        width: calc(50% - 10px);
        min-width: auto;
        max-width: none;
        padding: 16px 10px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .stat-item {
        padding: 16px 8px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Special optimization for the largest number */
.stat-item:first-child .stat-number {
    font-size: 1.6rem;
}

@media (max-width: 1200px) {
    .stat-item:first-child .stat-number {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .stat-item:first-child .stat-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .stat-item:first-child .stat-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .stat-item:first-child .stat-number {
        font-size: 1.5rem;
    }
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hand-phone-container {
    position: relative;
    width: 450px;
    height: 500px;
}

.hand-phone-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: visible;
}

.hand-phone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(8, 27, 49, 0.15); */
}

.notification {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.8s ease 1s forwards, float 3s ease-in-out 2s infinite;
    opacity: 0;
    transform: translateX(-20px);
    z-index: 2;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification i {
    color: #4CAF50;
    font-size: 1.5rem;
}

.notification p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.notification span {
    font-weight: 700;
    color: var(--dark-blue);
    display: block;
    margin-top: 3px;
}

.qr-floating, .secure-floating {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.qr-floating {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.secure-floating {
    top: 120px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(5px) rotate(-5deg); }
}

/* Responsive adjustments for hero section */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hand-phone-container {
        width: 400px;
        height: 450px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 60px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hand-phone-container {
        margin: 0 auto;
    }
    
    .notification {
        left: 20px;
        bottom: -20px;
    }
    
    .qr-floating, .secure-floating {
        display: none; /* Hide on smaller screens for better layout */
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hand-phone-container {
        width: 320px;
        height: 380px;
    }
    
    .stat-item {
        min-width: 160px;
        padding: 15px;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
    }
    
    .hand-phone-container {
        width: 280px;
        height: 330px;
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate-in .section-header,
.section-header.scroll-animate-child.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Problem Section */
/* Mission Section */
.mission-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.mission-layout {
    display: flex;
    gap: 80px;
    align-items: stretch;
}

.mission-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-right {
    flex: 0 0 420px;
    display: flex;
}

.mission-image {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.mission-label {
    display: inline-block;
    width: fit-content;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark-blue);
    border: 1.5px solid var(--dark-blue);
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 18px;
}

.mission-section .section-title {
    font-size: 2.4rem;
    background: linear-gradient(90deg, var(--dark-blue) 30%, var(--primary) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.25;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.mission-section .section-title::after {
    left: 0;
    transform: none;
}

.mission-lead {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.mission-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0;
}

.mission-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 36px 0;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mission-info-card {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dce9fb;
    border-radius: 14px;
    padding: 20px 18px;
    box-shadow: 0 8px 24px rgba(12, 57, 125, 0.06);
}

.mission-info-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.mission-info-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 992px) {
    .mission-layout {
        flex-direction: column;
        gap: 48px;
    }

    .mission-right {
        flex: none;
        width: 100%;
    }

    .mission-image {
        height: 340px;
        min-height: 340px;
    }

    .mission-cards {
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .mission-section .section-title {
        font-size: 1.8rem;
    }

    .mission-cards {
        grid-template-columns: 1fr;
    }
}

.problem-section {
    background-color: var(--light-beige);
    padding: 100px 0;
}

.problem-section .section-title {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--dark-blue) 30%, var(--primary) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.problem-section .section-subtitle {
    transition-delay: 0.1s;
}

/* Problem Section */
.problem-section {
    background-color: var(--light-beige);
    padding: 100px 0;
}

.problem-section .section-title {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--dark-blue) 30%, var(--primary) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.problem-section .section-subtitle {
    transition-delay: 0.1s;
}

/* Problem Content Layout */
.problem-content {
    display: flex;
    gap: 50px;
    align-items: stretch;
    min-height: 500px;
}

.problem-image {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.image-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(8, 27, 49, 0.9), transparent);
    padding: 40px 30px 30px;
    color: var(--white);
}

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

.overlay-content i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overlay-content p {
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Problem Cards Container */
.problem-cards-container {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

/* Modern Problem Cards */
.problem-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 
        0 10px 30px rgba(8, 27, 49, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    border: 1px solid rgba(170, 131, 56, 0.1);
    transition: all 0.5s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 249, 247, 0.95));
}

.problem-card:nth-child(1) {
    animation-delay: 0.4s;
}

.problem-card:nth-child(2) {
    animation-delay: 0.5s;
}

.problem-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(170, 131, 56, 0.08) 0%, rgba(170, 131, 56, 0) 70%);
    opacity: 0;
    animation: glowPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.problem-card:nth-child(1) .card-glow {
    animation-delay: 0s;
}

.problem-card:nth-child(2) .card-glow {
    animation-delay: 2s;
}

.problem-card:nth-child(3) .card-glow {
    animation-delay: 4s;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.problem-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.problem-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--dark-blue));
    border-radius: 2px;
    animation: lineExpand 3s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% {
        width: 50px;
    }
    50% {
        width: 70px;
    }
}

.problem-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
    padding-right: 10px;
}

/* Card Subtle Movement */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0);
    }
    33% {
        transform: translateY(-3px) rotateX(0.5deg);
    }
    66% {
        transform: translateY(2px) rotateX(-0.5deg);
    }
}

.problem-card:nth-child(1) {
    animation: fadeInUp 0.8s ease 0.4s forwards, cardFloat 8s ease-in-out 0.4s infinite;
}

.problem-card:nth-child(2) {
    animation: fadeInUp 0.8s ease 0.5s forwards, cardFloat 8s ease-in-out 2s infinite;
}

.problem-card:nth-child(3) {
    animation: fadeInUp 0.8s ease 0.6s forwards, cardFloat 8s ease-in-out 4s infinite;
}

/* Card Border Animation */
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(170, 131, 56, 0.2), transparent);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 15s linear infinite;
    opacity: 0.3;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

/* Card Number Indicator */
.problem-card::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    animation: numberPulse 4s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(170, 131, 56, 0.2);
}

.problem-card:nth-child(1)::after {
    content: '01';
}

.problem-card:nth-child(2)::after {
    content: '02';
}

.problem-card:nth-child(3)::after {
    content: '03';
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Responsive Design for Problem Section */
@media (max-width: 1100px) {
    .problem-content {
        gap: 40px;
    }
    
    .problem-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .problem-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .problem-image,
    .problem-cards-container {
        flex: none;
        width: 100%;
    }
    
    .image-container {
        height: 350px;
    }
    
    .problem-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .problem-card {
        flex: 1;
        min-width: calc(50% - 12.5px);
        padding: 30px 25px;
    }
    
    .problem-card:last-child {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .problem-section {
        padding: 80px 0;
    }
    
    .problem-section .section-title {
        font-size: 2rem;
    }
    
    .problem-section .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .image-container {
        height: 300px;
        animation: floatImage 8s ease-in-out infinite;
    }
    
    .problem-cards {
        gap: 20px;
    }
    
    .problem-card {
        padding: 25px 20px;
        min-width: 100%;
    }
    
    .problem-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .problem-card p {
        font-size: 1rem;
    }
    
    .problem-card::after {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .problem-section {
        padding: 60px 0;
    }
    
    .problem-section .section-title {
        font-size: 1.8rem;
    }
    
    .image-container {
        height: 250px;
    }
    
    .image-overlay {
        padding: 30px 20px 20px;
    }
    
    .overlay-content i {
        font-size: 2rem;
    }
    
    .overlay-content h4 {
        font-size: 1.3rem;
    }
    
    .problem-card {
        padding: 20px;
    }
    
    .problem-card h3 {
        font-size: 1.2rem;
        padding-bottom: 10px;
    }
    
    .problem-card h3::after {
        width: 40px;
        height: 2px;
    }
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.solution-section .section-title {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--dark-blue) 30%, var(--primary) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.solution-section .section-subtitle {
    max-width: 980px;
    transition-delay: 0.1s;
}

/* Solution Container */
.solution-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 80px;
}

/* Main Solution Image */
.main-solution-image {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(8, 27, 49, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    animation: floatImage 8s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.main-solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.main-solution-image:hover img {
    transform: scale(1.05);
}

.image-overlay-solution {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 27, 49, 0.7), rgba(8, 27, 49, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.image-overlay-solution .overlay-content {
    text-align: center;
    color: var(--white);
    max-width: 500px;
}

.image-overlay-solution i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.image-overlay-solution h4 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.image-overlay-solution p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Solution Features Grid */
.solution-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.feature-card {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-dark));
    border-radius: 18px;
    padding: 30px;
    box-shadow: 
        0 15px 35px rgba(8, 27, 49, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Animated Background */
.card-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(8, 27, 49, 0.9), 
        rgba(170, 131, 56, 0.8), 
        rgba(8, 27, 49, 0.9));
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    border-radius: 18px;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.18rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    animation: lineExpand 3s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% {
        width: 50px;
    }
    50% {
        width: 70px;
    }
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Card Entrance Animation Delays */
.feature-card-1 {
    animation-delay: 0.3s;
}

.feature-card-2 {
    animation-delay: 0.4s;
}

.feature-card-3 {
    animation-delay: 0.5s;
}

.feature-card-4 {
    animation-delay: 0.6s;
}

/* Card Hover Effects */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 45px rgba(8, 27, 49, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.feature-card:hover .card-bg-animation {
    animation-duration: 4s;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--dark-blue), #0a2446);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.7s forwards;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-box .btn {
    position: relative;
    z-index: 2;
}

/* Responsive Design for Solution Section */
@media (max-width: 1200px) {
    .solution-container {
        max-width: 1200px;
    }
    
    .main-solution-image {
        height: 400px;
    }
    
    .solution-features {
        gap: 20px;
    }
    
    .feature-card {
        height: 240px;
        padding: 25px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .solution-container {
        max-width: 100%;
    }
    
    .main-solution-image {
        height: 350px;
        margin-bottom: 50px;
    }
    
    .solution-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        height: 220px;
        padding: 25px;
    }
    
    .image-overlay-solution .overlay-content {
        padding: 30px;
    }
    
    .image-overlay-solution i {
        font-size: 3rem;
    }
    
    .image-overlay-solution h4 {
        font-size: 1.8rem;
    }
    
    .image-overlay-solution p {
        font-size: 1.1rem;
    }
    
    .cta-box {
        padding: 40px 30px;
        margin-top: 50px;
    }
    
    .cta-box h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 80px 0;
    }
    
    .solution-section .section-title {
        font-size: 2rem;
    }
    
    .solution-section .section-subtitle {
        font-size: 1.1rem;
        padding: 0 8px;
    }
    
    .main-solution-image {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .solution-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        height: 200px;
        padding: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .cta-box {
        padding: 35px 25px;
        margin-top: 40px;
    }
    
    .cta-box h3 {
        font-size: 1.6rem;
    }
    
    .cta-box p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .solution-section {
        padding: 60px 0;
    }
    
    .solution-section .section-title {
        font-size: 1.8rem;
    }
    
    .main-solution-image {
        height: 250px;
    }
    
    .image-overlay-solution .overlay-content {
        padding: 20px;
    }
    
    .image-overlay-solution i {
        font-size: 2.5rem;
    }
    
    .image-overlay-solution h4 {
        font-size: 1.6rem;
    }
    
    .image-overlay-solution p {
        font-size: 1rem;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        height: auto;
        min-height: 180px;
        padding: 25px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .cta-box {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .cta-box h3 {
        font-size: 1.4rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
}

/* Experience Section */
.experience-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.experience-section .section-title {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--dark-blue) 30%, var(--primary) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.experience-section .section-subtitle {
    transition-delay: 0.1s;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.experience-text {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.experience-text h3 {
    color: var(--dark-blue);
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.experience-text p {
    color: var(--dark-gray);
    opacity: 0.9;
    line-height: 1.7;
}

.experience-visual {
    display: flex;
    height: 100%;
}

.visual-card {
    background: var(--dark-blue);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(8, 27, 49, 0.15);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.exp-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.exp-feature:nth-child(1) {
    animation-delay: 0.3s;
}

.exp-feature:nth-child(2) {
    animation-delay: 0.4s;
}

.exp-feature:nth-child(3) {
    animation-delay: 0.5s;
}

.exp-feature:nth-child(4) {
    animation-delay: 0.6s;
}

.exp-feature i {
    color: var(--primary);
    font-size: 1.5rem;
}

.exp-feature h4 {
    color: var(--dark-blue);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.visual-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 25px 20px;
    border-radius: 12px;
    position: relative;
    background: linear-gradient(145deg, rgba(8, 27, 49, 0.7), rgba(8, 27, 49, 0.5));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

/* Animated Border with Brand Colors */
.animated-border {
    position: relative;
    border-radius: 12px;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary), #c49a47, var(--primary));
    background-size: 300% 100%;
    border-radius: 14px;
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.visual-stat {
    text-align: center;
    flex: 1;
}

.visual-stat h4 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(170, 131, 56, 0.3);
}

.visual-stat p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
    color: var(--light-beige);
}

.map-visual {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 12px;
    margin-top: auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-visual:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(170, 131, 56, 0.75), rgba(8, 27, 49, 0.85));
    padding: 20px;
    text-align: center;
}

.map-overlay i {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: bounce 2s ease infinite;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3));
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.map-overlay p {
    margin: 0;
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    max-width: 80%;
    letter-spacing: 1px;
}

/* Bounce animation for map marker */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .experience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-text h3 {
        font-size: 1.4rem;
    }
    
    .visual-stat h4 {
        font-size: 2rem;
    }
    
    .map-visual {
        height: 260px;
    }
    
    .map-overlay p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .experience-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-visual {
        height: 240px;
    }
    
    .map-overlay i {
        font-size: 3rem;
    }
    
    .map-overlay p {
        font-size: 1.1rem;
    }
}

/* Values & Vision Section - Modern Redesign */
.values-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(170, 131, 56, 0.03) 0%, rgba(170, 131, 56, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 27, 49, 0.03) 0%, rgba(8, 27, 49, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.values-section .container {
    position: relative;
    z-index: 1;
}

.values-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-section .section-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    display: inline-block;
}

.values-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--dark-blue));
    border-radius: 3px;
}

.values-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

/* Modern Grid Layout */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

/* Card Styles */
.value-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.value-card:nth-child(1) {
    animation-delay: 0.3s;
}

.value-card:nth-child(2) {
    animation-delay: 0.4s;
}

.value-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Card Hover Effect */
.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(170, 131, 56, 0.2);
}

/* Individual Card Backgrounds */
.vision-card {
    background: linear-gradient(145deg, #ffffff, rgba(170, 131, 56, 0.02));
    border-bottom: 4px solid var(--primary);
}

.mission-card {
    background: linear-gradient(145deg, #ffffff, rgba(8, 27, 49, 0.02));
    border-bottom: 4px solid var(--dark-blue);
}

.values-card {
    background: linear-gradient(145deg, #ffffff, rgba(233, 233, 226, 0.1));
    border-bottom: 4px solid var(--light-beige);
}

/* Icon Wrapper */
.value-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.value-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary), var(--dark-blue)) border-box;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
    color: var(--dark-blue);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(170, 131, 56, 0.2) 0%, rgba(170, 131, 56, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover .icon-glow {
    opacity: 1;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Card Content */
.value-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 0;
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(170, 131, 56, 0.03) 50%);
    border-radius: 0 30px 0 0;
    pointer-events: none;
}

.mission-card .card-decoration {
    background: linear-gradient(135deg, transparent 50%, rgba(8, 27, 49, 0.03) 50%);
}

.values-card .card-decoration {
    background: linear-gradient(135deg, transparent 50%, rgba(233, 233, 226, 0.2) 50%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .value-card {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 80px 0;
    }
    
    .values-section .section-title {
        font-size: 2rem;
    }
    
    .values-section .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .value-card {
        padding: 40px 30px;
    }
    
    .value-card h3 {
        font-size: 1.6rem;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 60px 0;
    }
    
    .values-section .section-title {
        font-size: 1.8rem;
    }
    
    .values-section .section-subtitle {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 35px 25px;
    }
    
    .value-card h3 {
        font-size: 1.4rem;
    }
}

/* Smooth Animation Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Hover Effects */
.value-card:hover .card-decoration {
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }
}

/* Scroll Animation Support */
@media (prefers-reduced-motion: reduce) {
    .value-card,
    .value-icon,
    .icon-glow,
    .card-decoration {
        animation: none;
        transition: none;
    }
}

/* Competitive Advantage Section - Modern Three Column Layout */
.advantage-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.advantage-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.advantage-section .section-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    display: inline-block;
}

.advantage-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--dark-blue));
    border-radius: 3px;
}

.advantage-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

/* Three Column Grid */
.advantage-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 10;
    align-items: stretch;
}

.advantage-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Left & Right Columns - Increased Height */
.left-column, .right-column {
    justify-content: space-between;
}

/* Advantage Items - Modern Card Style */
.advantage-item {
    display: flex;
    gap: 20px;
    padding: 30px 25px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    transition: height 0.4s ease;
    border-radius: 4px 0 0 4px;
}

.advantage-item:hover::before {
    height: 100%;
}

.advantage-item:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 20px 40px rgba(170, 131, 56, 0.08);
    border-color: rgba(170, 131, 56, 0.15);
}

.left-column .advantage-item {
    animation-delay: 0.3s;
}

.left-column .advantage-item:nth-child(2) {
    animation-delay: 0.4s;
}

.right-column .advantage-item {
    animation-delay: 0.5s;
}

.right-column .advantage-item:nth-child(2) {
    animation-delay: 0.6s;
}

.advantage-icon-wrapper {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, rgba(170, 131, 56, 0.08), rgba(170, 131, 56, 0.03));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
    border: 1px solid rgba(170, 131, 56, 0.1);
}

.advantage-item:hover .advantage-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(170, 131, 56, 0.2);
}

.advantage-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.advantage-text p {
    color: var(--dark-gray);
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Center Column - Image with Icons Overlay - INCREASED HEIGHT */
.center-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-visual {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

/* Background Image - Full Height */
.advantage-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.uk-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.advantage-visual:hover .uk-image {
    transform: scale(1.05);
}

/* Floating Icons Container - On Foreground */
.floating-icons-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    animation: floatIcon 7s ease-in-out infinite;
    border: 3px solid var(--white);
    transition: all 0.3s ease;
    z-index: 20;
    opacity: 1;
    backdrop-filter: blur(0);
}

.floating-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.2);
    border-color: var(--white);
    box-shadow: 0 25px 45px rgba(170, 131, 56, 0.4);
    cursor: pointer;
}

/* Floating Icon Positions - Spread Across Taller Image */
.icon-1 { 
    top: 15%; 
    left: 15%; 
    animation-delay: 0s; 
}

.icon-2 { 
    top: 25%; 
    right: 20%; 
    animation-delay: 0.7s; 
}

.icon-3 { 
    bottom: 25%; 
    left: 20%; 
    animation-delay: 1.4s; 
}

.icon-4 { 
    bottom: 15%; 
    right: 15%; 
    animation-delay: 2.1s; 
}

/* Background Floating Elements - Very Subtle */
.bg-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-element {
    position: absolute;
    color: rgba(170, 131, 56, 0.03);
    font-size: 3rem;
    animation: floatBackground 20s ease-in-out infinite;
}

.bg-1 { top: 20%; left: 10%; animation-delay: 0s; }
.bg-2 { top: 70%; left: 15%; animation-delay: 5s; }
.bg-3 { top: 50%; right: 15%; animation-delay: 10s; }

/* Animations */
@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-18px) rotate(6deg);
    }
    66% {
        transform: translateY(18px) rotate(-6deg);
    }
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.03;
    }
    25% {
        transform: translate(40px, -30px) rotate(15deg);
        opacity: 0.05;
    }
    75% {
        transform: translate(-30px, 40px) rotate(-15deg);
        opacity: 0.05;
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .advantage-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .center-column {
        grid-column: span 2;
        order: -1;
        margin-bottom: 20px;
    }
    
    .advantage-visual {
        height: 480px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .floating-icon {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
    }
    
    .advantage-item {
        padding: 28px 25px;
        min-height: 150px;
    }
}

@media (max-width: 768px) {
    .advantage-section {
        padding: 80px 0;
    }
    
    .advantage-section .section-title {
        font-size: 2rem;
    }
    
    .advantage-section .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .advantage-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .center-column {
        grid-column: span 1;
        order: -1;
    }
    
    .advantage-visual {
        height: 440px;
        max-width: 550px;
    }
    
    .advantage-item {
        padding: 25px;
        min-height: auto;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .advantage-section {
        padding: 60px 0;
    }
    
    .advantage-section .section-title {
        font-size: 1.8rem;
    }
    
    .advantage-section .section-subtitle {
        font-size: 1rem;
    }
    
    .advantage-visual {
        height: 380px;
    }
    
    .advantage-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }
    
    .advantage-icon-wrapper {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
    
    .floating-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .advantage-item,
    .floating-icon,
    .bg-element,
    .uk-image {
        animation: none;
        transition: none;
    }
}

/* Contact Section - Modern Redesign */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.contact-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(170, 131, 56, 0.03) 0%, rgba(170, 131, 56, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 27, 49, 0.03) 0%, rgba(8, 27, 49, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.contact-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.contact-section .section-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    display: inline-block;
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--dark-blue));
    border-radius: 3px;
}

.contact-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

/* Contact Content Grid */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    background: linear-gradient(135deg, rgba(170, 131, 56, 0.02), rgba(170, 131, 56, 0.01));
    border: 1px solid rgba(170, 131, 56, 0.05);
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(170, 131, 56, 0.05), rgba(170, 131, 56, 0.02));
    border-color: rgba(170, 131, 56, 0.15);
    transform: translateX(5px);
}

.contact-item:nth-child(1) {
    animation-delay: 0.3s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.4s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.5s;
}

.contact-item:nth-child(4) {
    animation-delay: 0.6s;
}

.contact-icon-wrapper {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, rgba(170, 131, 56, 0.1), rgba(170, 131, 56, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(170, 131, 56, 0.1);
}

.contact-item:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(170, 131, 56, 0.2);
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.contact-details p {
    color: var(--dark-gray);
    line-height: 1.6;
    opacity: 0.8;
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Contact Form Container */
.contact-form-container {
    background: var(--white);
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.contact-form-container:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--dark-gray);
    opacity: 0.7;
    font-size: 1rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    width: 100%;
}

.form-group {
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.5s;
}

.form-group:nth-child(2) {
    animation-delay: 0.6s;
}

.form-group:nth-child(3) {
    animation-delay: 0.7s;
}

.form-group:nth-child(4) {
    animation-delay: 0.8s;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid var(--medium-gray);
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-gray);
    color: var(--dark-blue);
    font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(170, 131, 56, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(35, 31, 32, 0.5);
    font-weight: 400;
}

/* Focus Border Animation */
.focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
    width: 80%;
}

/* Submit Button */
.btn-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(170, 131, 56, 0.2);
    animation-delay: 0.9s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.btn-submit span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-submit i {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(170, 131, 56, 0.3);
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1.1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 35px;
    }
    
    .contact-form-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section .section-title {
        font-size: 2rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-form-container {
        padding: 35px;
    }
    
    .contact-form-header h3 {
        font-size: 1.6rem;
    }
    
    .btn-submit {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .section-title {
        font-size: 1.8rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 25px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-form-header h3 {
        font-size: 1.4rem;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
        border-radius: 14px;
    }
    
    .btn-submit {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .contact-info,
    .contact-item,
    .contact-icon-wrapper,
    .contact-form-container,
    .btn-submit,
    .btn-submit::before,
    .focus-border {
        animation: none;
        transition: none;
    }
}

/* Footer - Modern Redesign */
.footer {
    background: linear-gradient(145deg, var(--dark-blue) 0%, #0a2440 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(170, 131, 56, 0.05) 0%, rgba(170, 131, 56, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Brand Section */
.footer-brand {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(170, 131, 56, 0.15);
    border: 1px solid rgba(170, 131, 56, 0.3);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Footer - Modern Redesign */
.footer {
    background: linear-gradient(145deg, var(--dark-blue) 0%, #0a2440 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(170, 131, 56, 0.05) 0%, rgba(170, 131, 56, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Brand Section */
.footer-brand {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(170, 131, 56, 0.15);
    border: 1px solid rgba(170, 131, 56, 0.3);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Footer Links */
.footer-links {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.footer-links:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-links:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-links:hover h4::after {
    width: 60px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Newsletter Section */
.footer-newsletter {
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.footer-newsletter h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.newsletter-input-group:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(170, 131, 56, 0.1);
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-radius: 50px 0 0 50px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group input:focus {
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateX(3px);
    box-shadow: 0 10px 20px rgba(170, 131, 56, 0.3);
}

.newsletter-btn i {
    font-size: 1rem;
}

.newsletter-message {
    font-size: 0.85rem;
    min-height: 24px;
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.rights {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.dot {
    color: rgba(255, 255, 255, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 3;
        max-width: 500px;
    }
    
    .footer-newsletter {
        grid-column: span 3;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
    
    .footer-newsletter {
        grid-column: span 2;
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        background: transparent;
        border: none;
    }
    
    .newsletter-input-group input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand,
    .footer-links,
    .footer-newsletter {
        grid-column: span 1;
    }
    
    .footer-links h4 {
        margin-bottom: 20px;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .badge {
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
    }
    
    .dot {
        display: none;
    }
    
    .footer-bottom-links a {
        width: 100%;
        text-align: center;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .footer-brand,
    .footer-links,
    .footer-newsletter,
    .footer-bottom,
    .footer-logo,
    .badge,
    .newsletter-btn,
    .footer-links a {
        animation: none;
        transition: none;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 60px;
    }
    
    .app-screenshot {
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .notification {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }
    
    .floating-icon {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 70px 0;
    }
    
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}