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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Instrument Sans", sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 800px;
    /* background: linear-gradient(135deg, #1A2A5A 0%, #2D4A7C 100%); */
    background: url(../images/bg.svg) no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0px;
}

.hero::after {
    content: url(../images/flight-icon.svg);
    position: absolute;
    font-size: 200px;
    opacity: 0.2;
    bottom: 10%;
    left: 5%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo img {
    width: 200px;
}

.logo h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.tagline {
    font-size: 40px;
    color: #ff9933;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 48px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.btn {
    padding: 16px 35px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ff9933;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    background: #e66d00;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: #1a2a5a;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    width: 100%;
    max-width: 400px;
    background: #d5ebfb;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone-screen {
    border-radius: 30px;
    aspect-ratio: 11/19.5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 80px;
    overflow: hidden;
    position: relative;
}
.phone-screen img {
    max-width: 100%;
    object-fit: cover;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #6bafe5;
    border-radius: 0 0 20px 20px;
}

/* Features Section */
.features {
    padding: 100px 0px;
    background: white;
}

  .features .section-header h2 {
        margin-bottom: 13px;
    }

@media (max-width: 768px) {
    .features {
        padding: 30px 0px;
    }
}

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

.section-header h2 {
    font-size: 42px;
    color: #1a2a5a;
}

.section-header p {
    font-size: 18px;
    color: #363636;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fd;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ff9933;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
    background: #fff;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 22px;
    color: #1a2a5a;
    margin-bottom: 12px;
    line-height: 28px;
}

.feature-card p {
    color: #363636;
    font-size: 15px;
    line-height: 1.6;
}

/* App Preview Section */
.app-preview {
    padding: 100px 0px;
    background: linear-gradient(135deg, #f8f9fd 0%, #e8eeff 100%);
}

@media (max-width: 768px) {
    .app-preview {
        padding: 30px 0px;
    }
}

.preview-caption {
    text-align: center;
    font-size: 20px;
    color: #1a2a5a;
    font-weight: 600;
    margin-bottom: 50px;
}

.screenshots-grid {
    display: flex;
    gap: 30px;
    width: 100%;
}

.screenshot {
    background: #535353;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
}

.screenshot:hover {
    transform: scale(1.05);
}

.screenshot img {
    max-width: 100%;
    display: block;
}

/* Slider Section  */

.carousel-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    background: #535353;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 12px solid #535353;
}

/* Wrapper to slide all images together */
.carousel-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.carousel-dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

.dot {
    height: 16px;
    width: 16px;
    margin: 0 3px;
    background-color: #beb5b5;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
    cursor: pointer;
    transition:
        opacity 0.3s,
        background-color 0.3s;
}

.dot.active {
    opacity: 1;
    background-color: #ff7f00; /* Tickut orange */
}

/* Terms Section */

.policy-section {
    background: #fff;
    padding: 80px 0px;
}

.btn-style {
    color: #f98d30;
    border: 1px solid #f98d30;
    padding: 10px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
}

.policy-header h2 {
    font-size: 42px;
    color: #1a2a5a;
    margin-bottom: 10px;
}

.policy-header p {
    text-align: center;
    font-size: 16px;
    color: #363636;
    margin-bottom: 50px;
}

.accordion {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background: #f8f9fd;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #e5e5e5;
    transition: background 0.3s;
    border-radius: 15px;
}

.accordion-header:hover {
    border: 1px solid #ff9933;
}

.accordion-header .icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-item.active .icon {
    transform: rotate(360deg);
}

.accordion-content {
    display: none;
    padding: 25px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    border: 1px solid #e5e5e5;
    border-top: 0;
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content h3 {
    font-size: 16px;
    margin: 20px 0 8px;
    color: #333;
}

/* Footer */
footer {
    background: #001d2c;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 150px;
}

.footer-email {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-email a {
    color: #ff9933;
    text-decoration: none;
}

.footer-email a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff9933;
    transform: translateY(-5px);
}

.copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Privacy Policy Style */

.privacy-header {
    background: url(../images/bg.svg) no-repeat;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.inside-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inside-logo img {
    width: 200px;
    padding-bottom: 30px;
}

.privacy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.7;
}

.privacy-content h2 {
    color: #333;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 600;
    padding-bottom: 10px;
}

.privacy-content h3 {
    color: #272727;
    font-size: 1.3rem;
    margin: 30px 0 15px;
    font-weight: 500;
}

.privacy-content p {
    margin-bottom: 15px;
    color: #363636;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-content li {
    margin-bottom: 8px;
    color: #363636;
}

.privacy-content ol {
    margin-left: 25px;
}

.contact-info {
    background: #fff7f0;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #ff9933;
}

.contact-info strong {
    color: #333;
}

.contact-info a{
    color: #000;
    font-weight: 600;
}
.contact-info a:hover{
    color: #ff9933;
}

.back-to-home {
    text-align: center;
    margin: 40px 0;
}

.back-to-home a {
    color: #f98d30;
    border: 1px solid #f98d30;
    padding: 10px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-home a:hover {
    background: #f98d30;
    color: #fff;
}

.effective-date {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin:0 0 30px 0;
    text-align: center;
    color: #1565c0;
    font-weight: 500;
}

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

    .logo {
        justify-content: center;
    }

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

    .hero::after {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 36px;
    }

    .logo-icon {
        font-size: 36px;
    }

    .tagline {
        font-size: 28px;
        line-height: 42px;
    }

    .hero-description {
        font-size: 16px;
    }



    .section-header h2 {
        font-size: 26px;
        line-height: normal;
    }

    .preview-caption{
         line-height: normal;
    }

    .policy-header h2 {
        font-size: 26px;
    }

    .features-grid,
    .policies-grid {
        grid-template-columns: 1fr;
    }

    .policy-section {
        padding: 30px 0px;
    }
    .accordion-header {
        font-size: 15px;
    }
    .accordion-content {
        padding: 10px;
        font-size: 13px;
        line-height: 1.6;
    }

    .section-header p {
        font-size: 15px;
    }
    .footer-email a {
        font-size: 16px;
    }
    .privacy-content h2{
        font-size: 1.3rem;
    }
    .privacy-header h1{
        line-height: normal;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .phone-mockup {
        max-width: 100%;
    }
    .carousel-dots {
        bottom: 2px;
    }
}
