/* ==========================
        GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ==========================
        RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 96px;
}

body {

    font-family: 'Manrope', sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;

}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
}

section {

    padding: clamp(64px, 8vw, 90px) clamp(20px, 8vw, 8%);

}

:root {

    --orange: #ff6a00;
    --orange-dark: #e55d00;
    --black: #0b0b0b;
    --card: #151515;
    --light: #cfcfcf;
    --border: #262626;

}



/* ==========================
        NAVBAR
========================== */

header {

    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;

    backdrop-filter: blur(14px);

    background: rgba(11, 11, 11, .92);

    border-bottom: 1px solid rgba(255, 255, 255, .05);

}

.navbar {

    max-width: 1300px;
    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 24px;

    padding: 16px clamp(20px, 4vw, 40px);

}

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}

.logo img {

    width: 55px;

}

.logo h2 {

    font-size: clamp(17px, 2vw, 22px);

    font-weight: 800;

    line-height: 1.15;

}

.nav-links {

    display: flex;

    gap: clamp(18px, 3vw, 40px);

}

.nav-links a {

    color: #d7d7d7;

    transition: .3s;

    font-weight: 600;

}

.nav-links a:hover {

    color: var(--orange);

}

.nav-btn {

    padding: 12px 24px;

    background: var(--orange);

    border-radius: 8px;

    color: #fff;

    font-weight: 700;

    transition: .3s;

}

.nav-btn:hover {

    background: var(--orange-dark);

}



/* ==========================
        HERO
========================== */

.hero {

    min-height: 100svh;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

    padding-top: 120px;

}

.hero-content h1 {

    font-size: clamp(40px, 6vw, 68px);

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;

}

.hero-content span {

    color: var(--orange);

}

.hero-content p {

    font-size: clamp(16px, 1.8vw, 19px);

    color: #cfcfcf;

    max-width: 600px;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

}

.primary-btn {

    background: var(--orange);

    padding: 16px 35px;

    border-radius: 8px;

    font-weight: 700;

    transition: .3s;

}

.primary-btn:hover {

    background: var(--orange-dark);

}

.secondary-btn {

    border: 1px solid var(--orange);

    padding: 16px 35px;

    border-radius: 8px;

    transition: .3s;

}

.secondary-btn:hover {

    background: var(--orange);

}

.hero-image {

    display: flex;

    justify-content: center;

}

.hero-image-mobile {

    display: none;

}

.hero-image img {

    width: min(100%, 700px);

    filter: drop-shadow(0 0 40px rgba(255, 106, 0, .35));

}



/* ==========================
        ABOUT STRIP
========================== */

.about-strip {

    background: linear-gradient(90deg, #ff6a00, #ff8d1a);

    padding: 28px;

    text-align: center;

}

.about-strip p {

    color: #111;

    font-size: 20px;

    font-weight: 700;

}



/* ==========================
        SECTION HEADINGS
========================== */

.section-heading {

    text-align: center;

    max-width: 760px;

    margin: auto auto 70px;

}

.section-heading h5 {

    color: var(--orange);

    letter-spacing: 2px;

    margin-bottom: 15px;

}

.section-heading h2 {

    font-size: clamp(32px, 4.4vw, 48px);

    margin-bottom: 20px;

}

.section-heading p {

    color: #cfcfcf;

    font-size: clamp(16px, 1.6vw, 18px);

}

/* ==========================
        SERVICES
========================== */

.services {

    background: #111;

}

.service-grid {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px;

}

.service-card {

    background: var(--card);

    min-height: 330px;

    padding: 38px 34px;

    border-radius: 16px;

    border: 1px solid var(--border);

    transition: .35s;

}

.service-card:hover {

    transform: translateY(-10px);

    border-color: var(--orange);

    box-shadow: 0 20px 50px rgba(255, 106, 0, .15);

}

.service-card i {

    font-size: 42px;

    color: var(--orange);

    margin-bottom: 24px;

}

.service-card h3 {

    font-size: 25px;

    line-height: 1.25;

    margin-bottom: 34px;

    position: relative;

}

.service-card h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -18px;

    width: 44px;

    height: 3px;

    border-radius: 999px;

    background: var(--orange);

}

.service-card ul {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.service-card li {

    color: #cfcfcf;

    position: relative;

    padding-left: 22px;

    font-size: 16px;

}

.service-card li::before {

    content: "•";

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--orange);

    color: transparent;

    font-size: 0;

    position: absolute;

    left: 0;

    top: 50%;
    transform: translateY(-50%);

}



/* ==========================
        PACKAGES
========================== */

.packages {

    background: #0b0b0b;

}

.package-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 35px;

}

.package-card {

    background: var(--card);

    padding: 45px;

    border-radius: 18px;

    border: 1px solid var(--border);

    transition: .35s;

    position: relative;

}

.package-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 20px 45px rgba(255, 106, 0, .12);

}

.package-card h3 {

    font-size: 30px;

    margin-bottom: 18px;

}

.package-card p {

    color: #cfcfcf;

    margin-bottom: 25px;

}

.package-card ul {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 35px;

}

.package-card li {

    color: #ddd;

    position: relative;

    padding-left: 25px;

}

.package-card li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--orange);

    font-weight: 700;

}

.package-card a {

    display: inline-block;

    background: var(--orange);

    color: #fff;

    padding: 14px 30px;

    border-radius: 8px;

    font-weight: 700;

    transition: .3s;

}

.package-card a:hover {

    background: var(--orange-dark);

}



/* ==========================
      FEATURED PACKAGE
========================== */

.featured {

    border: 2px solid var(--orange);

    transform: scale(1.04);

}

.featured:hover {

    transform: scale(1.06);

}

.featured span {

    position: absolute;

    top: -14px;

    right: 25px;

    background: var(--orange);

    color: #fff;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

}



/* ==========================
        WHY US
========================== */

.why-us {

    background: #111;

}

.why-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 30px;

}

.why-card {

    background: var(--card);

    border-left: 5px solid var(--orange);

    padding: 35px;

    border-radius: 14px;

    transition: .35s;

}

.why-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(255, 106, 0, .12);

}

.why-card h3 {

    margin-bottom: 15px;

    font-size: 24px;

}

.why-card p {

    color: #cfcfcf;

}



/* ==========================
      COMING SOON
========================== */

.coming-soon {

    text-align: center;

    background: linear-gradient(135deg, #151515, #0d0d0d);

}

.coming-contact {

    margin-top: 40px;

}

.coming-contact h3 {

    font-size: 28px;

    margin-bottom: 25px;

    color: #fff;

}

.coming-contact .primary-btn {

    display: inline-block;

}



/* ==========================
        ANIMATIONS
========================== */

.service-card,

.package-card,

.why-card,

.contact-card {

    opacity: 0;

    transform: translateY(24px);

    transition: opacity .6s ease, transform .6s ease, border-color .35s, box-shadow .35s;

}

.service-card.show,

.package-card.show,

.why-card.show,

.contact-card.show {

    opacity: 1;

    transform: translateY(0);

}

.service-card.show:hover {

    transform: translateY(-10px);

}

.package-card.show:hover {

    transform: translateY(-12px);

}

.featured.show {

    transform: scale(1.04);

}

.featured.show:hover {

    transform: scale(1.06);

}

.why-card.show:hover {

    transform: translateY(-8px);

}

/* =====================================
        CONTACT
===================================== */

.contact {

    background: #0b0b0b;

}

.contact-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(260px, 1fr));

    gap: 34px;

    width: min(100%, 1060px);

    margin: 60px auto 0;

}

.contact-card {

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 45px 30px;

    text-align: center;

    transition: opacity .6s ease, transform .6s ease, border-color .35s, box-shadow .35s;

}

.contact-card:hover {

    transform: translateY(-10px);

    border-color: var(--orange);

    box-shadow: 0 20px 45px rgba(255, 106, 0, .15);

}

.contact-card i {

    font-size: 45px;

    color: var(--orange);

    margin-bottom: 20px;

}

.contact-card h3 {

    font-size: 24px;

    margin-bottom: 15px;

}

.contact-card a {

    color: #d7d7d7;

    font-size: 18px;

    word-break: break-word;

    transition: .3s;

}

.contact-card a:hover {

    color: var(--orange);

}



/* =====================================
            FOOTER
===================================== */

footer {

    background: #090909;

    padding: 80px 8% 30px;

    border-top: 1px solid #222;

}

.footer-container {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 50px;

}

.footer-logo img {

    width: 70px;

    margin-bottom: 20px;

}

.footer-logo h2 {

    font-size: 30px;

    margin-bottom: 15px;

}

.footer-logo p {

    color: #cfcfcf;

    max-width: 420px;

}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.footer-links h3 {

    margin-bottom: 10px;

}

.footer-links a {

    color: #cfcfcf;

    transition: .3s;

}

.footer-links a:hover {

    color: var(--orange);

}

.footer-bottom {

    margin-top: 70px;

    border-top: 1px solid #222;

    padding-top: 25px;

    text-align: center;

    color: #9e9e9e;

}



/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:1100px) {

    .hero {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .hero-content p {

        margin: auto auto 40px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-image {

        margin-top: 40px;

    }

    .package-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

    .service-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

    .footer-container {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .footer-logo p {

        margin: auto;

    }

}



@media(max-width:850px) {

    .navbar {

        padding: 16px 20px;

        flex-wrap: wrap;

        gap: 14px 20px;

    }

    .nav-links {

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 12px 22px;

        font-size: 14px;

        order: 3;

    }

    .nav-btn {

        padding: 10px 18px;

        font-size: 14px;

    }

    .hero {

        gap: 32px;

        padding-top: 150px;

    }

    .hero-image img {

        width: min(75vw, 420px);

    }

}



@media(max-width:600px) {

    section {

        padding: 58px 20px;

    }

    html {

        scroll-padding-top: 128px;

    }

    .navbar {

        justify-content: center;

    }

    .logo h2 {

        font-size: 16px;

    }

    .logo img {

        width: 44px;

    }

    .nav-btn {

        display: none;

    }

    .nav-links {

        gap: 10px 16px;

        font-size: 13px;

    }

    .hero {

        min-height: auto;

        padding-top: 172px;

    }

    .hero-image-desktop {

        display: none;

    }

    .hero-image-mobile {

        display: flex;

        margin: 28px auto 30px;

    }

    .hero-content h1 {

        font-size: 38px;

        margin-bottom: 0;

    }

    .hero-content p {

        font-size: 16px;

    }

    .hero-image img {

        width: min(78vw, 320px);

    }

    .hero-buttons {

        flex-direction: column;

        gap: 14px;

    }

    .primary-btn,

    .secondary-btn {

        width: 100%;

        text-align: center;

    }

    .section-heading h2 {

        font-size: 30px;

    }

    .section-heading {

        margin-bottom: 44px;

    }

    .package-grid,

    .contact-grid {

        grid-template-columns: 1fr;

    }

    .service-grid {

        grid-template-columns: 1fr;

    }

    .featured,

    .featured:hover,

    .featured.show,

    .featured.show:hover {

        transform: none;

    }

    .service-card,

    .package-card,

    .contact-card,

    .why-card {

        padding: 28px;

    }

    .footer-logo h2 {

        font-size: 24px;

    }

    .footer-links {

        align-items: center;

    }

}


@media (prefers-reduced-motion: reduce) {

    *,

    *::before,

    *::after {

        scroll-behavior: auto;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

    }

    .service-card,

    .package-card,

    .why-card,

    .contact-card {

        opacity: 1;

        transform: none;

    }

}



/* =====================================
        SCROLLBAR
===================================== */

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #111;

}

::-webkit-scrollbar-thumb {

    background: var(--orange);

    border-radius: 10px;

}

::-webkit-scrollbar-thumb:hover {

    background: var(--orange-dark);

}