@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --primary-orange: #f2a223;
    --dark-navy: #1a1f36;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-navy);
}

nav ul li a:hover {
    color: var(--primary-orange);
}

.header-cta .btn {
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.header-cta .btn:hover {
    background: #e09212;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 162, 35, 0.4);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--white) 0%, #fff5e6 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.app-badge img {
    height: 45px;
    transition: var(--transition);
}

.app-badge:hover img {
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-navy);
}

.features-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.feature-card {
    flex: 1;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-navy);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Safety Section */
.safety {
    padding: 100px 0;
    background: var(--dark-navy);
    color: var(--white);
}

.safety .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.safety-image {
    flex: 1;
}

.safety-image img {
    max-width: 100%;
    border-radius: 20px;
}

.safety-content {
    flex: 1;
}

.safety-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.safety-content p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.safety-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.safety-list i {
    color: var(--primary-orange);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #f1f3f5;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-info {
    max-width: 300px;
}

.footer-links h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .hero .container,
    .safety .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        justify-content: center;
        margin-top: 50px;
    }

    .features-grid {
        flex-direction: column;
    }

    .hero-btns {
        justify-content: center;
    }

    nav {
        display: none;
    }
}