/*=========================================================
        KP ASTROLOGY - PREMIUM WEBSITE
        STYLE.CSS
=========================================================*/

/*=========================
        GOOGLE FONTS
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/*=========================
        CSS VARIABLES
=========================*/

:root{

    --primary:#D4AF37;
    --primary-light:#F4D77C;
    --secondary:#101C36;
    --dark:#07101C;
    --dark-light:#0F1C2E;
    --card:#13243D;
    --white:#ffffff;
    --text:#d8dbe2;
    --gray:#95A0B5;

    --gradient:linear-gradient(135deg,#D4AF37,#F6D76D);

    --shadow:0 15px 40px rgba(0,0,0,.30);

    --radius:18px;

    --transition:.35s ease;

}

/*=========================
        RESET
=========================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button,
input,
textarea,
select{

    font-family:inherit;

    outline:none;

}

button{

    cursor:pointer;

    border:none;

}

section{

    padding:100px 8%;

    position:relative;

}

.container{

    max-width:1200px;

    margin:auto;

}

/*=========================
        SCROLLBAR
=========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#06101b;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:100px;

}

/*=========================
        SELECTION
=========================*/

::selection{

    background:var(--primary);

    color:#000;

}

/*=========================
        PRELOADER
=========================*/

#preloader{

    position:fixed;

    inset:0;

    background:#07101C;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.loader{

    width:75px;

    height:75px;

    border-radius:50%;

    border:6px solid rgba(255,255,255,.12);

    border-top:6px solid var(--primary);

    animation:spin 1s linear infinite;

}

#preloader span{

    margin-top:20px;

    color:var(--primary);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/*=========================
        HEADINGS
=========================*/

h1,h2,h3,h4{

    font-family:'Cinzel',serif;

    line-height:1.2;

}

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    letter-spacing:2px;

    font-size:14px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-weight:600;

}

.section-header h2{

    font-size:46px;

    margin-bottom:20px;

}

.section-header p{

    color:var(--gray);

    font-size:17px;

}

/*=========================
        BUTTONS
=========================*/

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 38px;

    background:var(--gradient);

    color:#111;

    border-radius:60px;

    font-weight:700;

    transition:var(--transition);

    box-shadow:0 10px 30px rgba(212,175,55,.35);

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.btn-outline{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:16px 36px;

    border-radius:60px;

    border:2px solid var(--primary);

    color:var(--primary);

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);

    color:#111;

}

/*=========================
        CARD
=========================*/

.about-card,
.service-card,
.price-card,
.stat-box,
.trust-card,
.testimonial-card,
.trust-box{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    border-radius:20px;

    transition:.4s;

}

.about-card:hover,
.service-card:hover,
.price-card:hover,
.stat-box:hover,
.trust-card:hover,
.testimonial-card:hover,
.trust-box:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.45);

    box-shadow:0 15px 35px rgba(212,175,55,.15);

}

/*=========================
        STAR BACKGROUND
=========================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    background-image:

    radial-gradient(circle,#ffffff 1px,transparent 1px),

    radial-gradient(circle,#ffffff 1px,transparent 1px),

    radial-gradient(circle,#ffffff 1px,transparent 1px);

    background-size:

    220px 220px,

    320px 320px,

    450px 450px;

    opacity:.06;

    z-index:-2;

}

/*=========================
        GLOW
=========================*/

body::after{

    content:"";

    position:fixed;

    width:500px;

    height:500px;

    background:rgba(212,175,55,.08);

    border-radius:50%;

    filter:blur(120px);

    top:-200px;

    right:-150px;

    z-index:-1;

}

/*=========================
        UTILITY CLASSES
=========================*/

.text-center{

    text-align:center;

}

.mt-2{

    margin-top:20px;

}

.mt-3{

    margin-top:30px;

}

.mt-5{

    margin-top:50px;

}

.hidden{

    display:none;

}
/*=========================================================
                    HEADER & NAVIGATION
=========================================================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:.4s ease;

}

header.scrolled{

    background:rgba(7,16,28,.92);

    backdrop-filter:blur(18px);

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.navbar{

    max-width:1300px;

    margin:auto;

    padding:18px 30px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:30px;

    font-family:'Cinzel',serif;

    font-weight:700;

    color:var(--primary);

}

.logo i{

    font-size:28px;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-links a{

    position:relative;

    color:var(--white);

    font-size:15px;

    font-weight:500;

    transition:var(--transition);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a:hover::after{

    width:100%;

}

.book-btn{

    padding:14px 28px;

    background:var(--gradient);

    color:#111;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 10px 25px rgba(212,175,55,.25);

}

.book-btn:hover{

    transform:translateY(-4px);

}

.menu-toggle{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

/*=========================================================
                        HERO SECTION
=========================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

    radial-gradient(circle at top right,
    rgba(212,175,55,.12),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(62,102,180,.16),
    transparent 40%),

    linear-gradient(135deg,#07101C,#101C36);

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("images/zodiac.png");

    background-repeat:no-repeat;

    background-position:right center;

    background-size:700px;

    opacity:.07;

    animation:rotateZodiac 90s linear infinite;

}

@keyframes rotateZodiac{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

.hero-container{

    position:relative;

    z-index:5;

    width:100%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

    padding:140px 30px 100px;

}

/*=========================================================
                    HERO CONTENT
=========================================================*/

.hero-content{

    animation:fadeLeft 1s ease;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(212,175,55,.30);

    border-radius:50px;

    color:var(--primary);

    margin-bottom:30px;

}

.hero-content h1{

    font-size:64px;

    margin-bottom:25px;

}

.hero-content h1 span{

    display:block;

    color:var(--primary);

}

.hero-content p{

    max-width:620px;

    font-size:18px;

    color:var(--gray);

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:50px;

}

/*=========================================================
                    HERO FEATURES
=========================================================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.hero-features div{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    padding:20px 25px;

    border-radius:18px;

    min-width:150px;

    transition:.35s;

}

.hero-features div:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

}

.hero-features h2{

    font-size:34px;

    color:var(--primary);

    margin-bottom:5px;

}

.hero-features span{

    color:var(--gray);

    font-size:14px;

}

/*=========================================================
                    HERO IMAGE
=========================================================*/

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.image-card{

    position:relative;

    width:420px;

    border-radius:28px;

    overflow:hidden;

    padding:18px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 60px rgba(0,0,0,.45);

    animation:floatCard 6s ease-in-out infinite;

}

.image-card img{

    width:100%;

    border-radius:18px;

    display:block;

}

.orbit{

    position:absolute;

    width:540px;

    height:540px;

    border:2px dashed rgba(212,175,55,.35);

    border-radius:50%;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    animation:orbitRotate 25s linear infinite;

    pointer-events:none;

}

.hero-image::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    background:rgba(212,175,55,.12);

    border-radius:50%;

    filter:blur(40px);

    top:-30px;

    right:20px;

}

.hero-image::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(66,133,244,.10);

    border-radius:50%;

    filter:blur(50px);

    bottom:-30px;

    left:0;

}

/*=========================================================
                    TRUST STRIP
=========================================================*/

.trust-strip{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    padding:45px 8%;

    background:#0B1628;

    border-top:1px solid rgba(255,255,255,.05);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.trust-box{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    padding:22px;

    text-align:center;

}

.trust-box i{

    color:var(--primary);

    font-size:24px;

}

.trust-box span{

    font-size:15px;

    color:var(--text);

}

/*=========================================================
                        ANIMATIONS
=========================================================*/

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes orbitRotate{

    from{

        transform:translate(-50%,-50%) rotate(0deg);

    }

    to{

        transform:translate(-50%,-50%) rotate(360deg);

    }

}

/*=========================================================
                    ABOUT SECTION
=========================================================*/

.about{

    background:linear-gradient(180deg,#07101C,#0C1628);

}

.about-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    display:flex;

    justify-content:center;

}

.image-frame{

    position:relative;

    width:380px;

    border-radius:24px;

    overflow:hidden;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    padding:18px;

    box-shadow:var(--shadow);

}

.image-frame img{

    width:100%;

    border-radius:18px;

    display:block;

}

.experience-box{

    position:absolute;

    right:-20px;

    bottom:35px;

    background:var(--gradient);

    color:#111;

    padding:18px 24px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 15px 40px rgba(212,175,55,.35);

}

.experience-box h2{

    font-size:34px;

    margin-bottom:4px;

}

.experience-box span{

    font-size:14px;

    font-weight:600;

}

.about-content h3{

    font-size:42px;

    margin-bottom:24px;

}

.about-content p{

    color:var(--gray);

    margin-bottom:22px;

    font-size:16px;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin-top:35px;

}

.about-card{

    padding:28px;

}

.about-card i{

    font-size:34px;

    color:var(--primary);

    margin-bottom:18px;

}

.about-card h4{

    font-size:22px;

    margin-bottom:12px;

}

.about-card p{

    margin:0;

    font-size:15px;

}

/*=========================================================
                WHY KP ASTROLOGY
=========================================================*/

.why-kp{

    background:#0A1425;

}

.why-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    padding:35px 28px;

    text-align:center;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    backdrop-filter:blur(12px);

    transition:.35s ease;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.35);

    box-shadow:0 18px 45px rgba(212,175,55,.12);

}

.why-card i{

    width:80px;

    height:80px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--primary);

    font-size:34px;

    margin-bottom:22px;

}

.why-card h3{

    font-size:24px;

    margin-bottom:16px;

}

.why-card p{

    color:var(--gray);

    font-size:15px;

}

/*=========================================================
                    SERVICES
=========================================================*/

.services{

    background:linear-gradient(180deg,#07101C,#0C1628);

}

.services-grid{

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.service-card{

    padding:35px 28px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    background:rgba(212,175,55,.08);

    border-radius:50%;

    top:-70px;

    right:-70px;

    transition:.4s;

}

.service-card:hover::before{

    transform:scale(1.3);

}

.service-card i{

    width:82px;

    height:82px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--primary);

    font-size:34px;

    margin-bottom:22px;

}

.service-card h3{

    font-size:24px;

    margin-bottom:16px;

}

.service-card p{

    color:var(--gray);

    font-size:15px;

}

/*=========================================================
                CONSULTATION CTA
=========================================================*/

.consultation-cta{

    padding:90px 8%;

    text-align:center;

    background:

    linear-gradient(rgba(7,16,28,.92),
    rgba(7,16,28,.92)),

    url("images/hero-bg.jpg");

    background-size:cover;

    background-position:center;

}

.cta-content{

    max-width:760px;

    margin:auto;

}

.cta-content h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta-content p{

    color:var(--gray);

    font-size:18px;

    margin-bottom:35px;

}

.cta-content .btn-primary{

    min-width:240px;

}

/*=========================================================
                CONSULTATION PROCESS
=========================================================*/

.consultation-process{

    background:#07101C;

}

.timeline{

    max-width:1100px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    position:relative;

}

.timeline::before{

    content:"";

    position:absolute;

    top:40px;

    left:8%;

    width:84%;

    height:2px;

    background:rgba(212,175,55,.25);

}

.timeline-item{

    position:relative;

    text-align:center;

    padding-top:20px;

    z-index:2;

}

.timeline-number{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--gradient);

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    font-weight:700;

    box-shadow:0 12px 30px rgba(212,175,55,.30);

}

.timeline-item h3{

    font-size:22px;

    margin-bottom:12px;

}

.timeline-item p{

    color:var(--gray);

    font-size:15px;

}

/*=========================================================
                    PRICING
=========================================================*/

.pricing{

    background:linear-gradient(180deg,#08111F,#0D1830);

}

.pricing-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.price-card{

    padding:45px 35px;

    text-align:center;

    position:relative;

}

.price-card.featured{

    transform:scale(1.05);

    border:2px solid var(--primary);

}

.popular{

    position:absolute;

    top:20px;

    right:20px;

    background:var(--gradient);

    color:#111;

    padding:8px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

}

.price-card h3{

    font-size:30px;

    margin-bottom:18px;

}

.price{

    font-size:52px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:25px;

}

.price-card ul{

    margin-bottom:35px;

}

.price-card li{

    color:var(--gray);

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.price-card .btn-primary{

    width:100%;

}

/*=========================================================
                    STATS
=========================================================*/

.stats{

    background:#0A1425;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    padding:45px 25px;

}

.stat-box h2{

    color:var(--primary);

    font-size:52px;

    margin-bottom:12px;

}

.stat-box span{

    color:var(--gray);

    font-size:16px;

}

/*=========================================================
                TESTIMONIALS
=========================================================*/

.testimonials{

    background:linear-gradient(180deg,#07101C,#0D1830);

}

.testimonial-slider{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    padding:40px 35px;

}

.testimonial-card i{

    font-size:40px;

    color:var(--primary);

    margin-bottom:20px;

}

.testimonial-card p{

    color:var(--gray);

    margin-bottom:25px;

}

.testimonial-card h4{

    font-size:22px;

    margin-bottom:6px;

}

.testimonial-card span{

    color:var(--primary);

    font-size:14px;

}

/*=========================================================
                    TRUST SECTION
=========================================================*/

.trust-section{

    background:#08111F;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.trust-card{

    padding:40px 20px;

    text-align:center;

}

.trust-card i{

    width:80px;

    height:80px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--primary);

    font-size:34px;

    margin-bottom:20px;

}

.trust-card h3{

    font-size:22px;

}

/*=========================================================
                BOOKING BANNER
=========================================================*/

.booking-banner{

    text-align:center;

    padding:110px 8%;

    background:

    linear-gradient(rgba(6,14,24,.90),
    rgba(6,14,24,.90)),

    url("images/hero-bg.jpg");

    background-size:cover;

    background-position:center;

}

.booking-banner h2{

    font-size:50px;

    max-width:900px;

    margin:auto;

    margin-bottom:25px;

}

.booking-banner p{

    color:var(--gray);

    font-size:18px;

    margin-bottom:35px;

}

.booking-banner .btn-primary{

    min-width:240px;

}

/*=========================================================
                        FAQ SECTION
=========================================================*/

.faq{

    background:#07101C;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:20px;

    border-radius:18px;

    overflow:hidden;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

}

.faq-question{

    width:100%;

    padding:22px 28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:transparent;

    color:#fff;

    font-size:18px;

    font-weight:600;

}

.faq-question i{

    color:var(--primary);

    transition:.3s;

}

.faq-answer{

    padding:0 28px 22px;

}

.faq-answer p{

    color:var(--gray);

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

/*=========================================================
                    CONTACT
=========================================================*/

.contact{

    background:linear-gradient(180deg,#08111F,#0E1930);

}

.contact-wrapper{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:380px 1fr;

    gap:40px;

}

.contact-info{

    padding:40px;

    border-radius:20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

}

.contact-info h3{

    margin-bottom:30px;

    font-size:30px;

}

.info-item{

    display:flex;

    gap:18px;

    margin-bottom:28px;

}

.info-item i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--primary);

    font-size:20px;

}

.info-item strong{

    display:block;

    margin-bottom:6px;

}

.info-item p{

    color:var(--gray);

}

.contact-form{

    padding:40px;

    border-radius:20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

}

.contact-form form{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.contact-form input,
.contact-form select{

    padding:16px 18px;

    border:none;

    border-radius:12px;

    background:#13243D;

    color:#fff;

}

.contact-form textarea{

    grid-column:1/-1;

    padding:18px;

    border:none;

    border-radius:12px;

    background:#13243D;

    color:#fff;

    resize:vertical;

}

.contact-form button{

    grid-column:1/-1;

}

/*=========================================================
                        MAP
=========================================================*/

.map{

    padding:0;

}

.map iframe{

    width:100%;

    height:420px;

    border:none;

    display:block;

}

/*=========================================================
                    NEWSLETTER
=========================================================*/

.newsletter{

    text-align:center;

    background:#08111F;

}

.newsletter h2{

    font-size:42px;

    margin-bottom:18px;

}

.newsletter p{

    color:var(--gray);

    margin-bottom:35px;

}

.newsletter form{

    max-width:700px;

    margin:auto;

    display:flex;

    gap:15px;

}

.newsletter input{

    flex:1;

    padding:18px;

    border:none;

    border-radius:50px;

    background:#13243D;

    color:#fff;

}

/*=========================================================
                        FOOTER
=========================================================*/

footer{

    background:#050B14;

    padding:80px 8% 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    margin-bottom:50px;

}

.footer-grid h3{

    margin-bottom:20px;

    color:var(--primary);

}

.footer-grid p{

    color:var(--gray);

}

.footer-grid a{

    display:block;

    margin-bottom:12px;

    color:var(--gray);

    transition:.3s;

}

.footer-grid a:hover{

    color:var(--primary);

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#13243D;

}

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    color:var(--gray);

}

/*=========================================================
                FLOATING BUTTONS
=========================================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    box-shadow:0 10px 30px rgba(0,0,0,.30);

    z-index:999;

}

#scrollTop{

    position:fixed;

    right:25px;

    bottom:100px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--gradient);

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

#scrollTop.show{

    opacity:1;

    visibility:visible;

}
/*=========================================================
                RESPONSIVE DESIGN
=========================================================*/

/*==============================
        Large Screens
==============================*/

@media (max-width:1200px){

.hero-container,
.about-container,
.contact-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.hero-content p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.image-frame{

margin:auto;

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.timeline{

grid-template-columns:repeat(3,1fr);

}

.pricing-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonial-slider{

grid-template-columns:repeat(2,1fr);

}

.stats{

grid-template-columns:repeat(2,1fr);

}

.trust-section{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*==============================
        Tablet
==============================*/

@media (max-width:992px){

.nav-links{

position:fixed;

top:80px;

right:-100%;

width:300px;

height:calc(100vh - 80px);

background:#08111F;

display:flex;

flex-direction:column;

padding:40px;

gap:30px;

transition:.4s;

}

.nav-links.active{

right:0;

}

.menu-toggle{

display:block;

}

.book-btn{

display:none;

}

.hero{

padding-top:70px;

}

.hero-container{

padding:120px 20px 60px;

}

.hero-content h1{

font-size:48px;

}

.section-header h2{

font-size:38px;

}

.about-content h3{

font-size:34px;

}

.cta-content h2{

font-size:38px;

}

.booking-banner h2{

font-size:40px;

}

.contact-form form{

grid-template-columns:1fr;

}

.newsletter form{

flex-direction:column;

}

}

/*==============================
        Mobile
==============================*/

@media (max-width:768px){

section{

padding:70px 20px;

}

.navbar{

padding:18px 20px;

}

.logo{

font-size:24px;

}

.hero-content h1{

font-size:40px;

}

.hero-content p{

font-size:16px;

}

.hero-features{

flex-direction:column;

}

.hero-features div{

width:100%;

}

.hero-image{

margin-top:40px;

}

.image-card{

width:100%;

max-width:340px;

}

.orbit{

display:none;

}

.about-grid{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.timeline{

grid-template-columns:1fr;

}

.timeline::before{

display:none;

}

.pricing-grid{

grid-template-columns:1fr;

}

.price-card.featured{

transform:none;

}

.testimonial-slider{

grid-template-columns:1fr;

}

.stats{

grid-template-columns:1fr;

}

.trust-strip{

grid-template-columns:1fr;

}

.trust-section{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.social-links{

justify-content:center;

}

.newsletter h2{

font-size:32px;

}

.booking-banner h2{

font-size:32px;

}

.cta-content h2{

font-size:32px;

}

.section-header h2{

font-size:32px;

}

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-info,

.contact-form{

padding:25px;

}

}

/*==============================
        Small Phones
==============================*/

@media (max-width:480px){

.hero-content h1{

font-size:32px;

}

.hero-tag{

font-size:13px;

padding:8px 16px;

}

.btn-primary,

.btn-outline{

width:100%;

padding:15px;

}

.hero-buttons{

flex-direction:column;

}

.section-header h2{

font-size:28px;

}

.about-content h3{

font-size:28px;

}

.price{

font-size:42px;

}

.timeline-number{

width:65px;

height:65px;

font-size:24px;

}

.stat-box h2{

font-size:40px;

}

.whatsapp-float{

width:55px;

height:55px;

font-size:24px;

}

#scrollTop{

width:48px;

height:48px;

}

}

/*==============================
    Smooth Animations
==============================*/

.fade-up{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

/*==============================
    Image Hover Effects
==============================*/

img{

transition:.4s ease;

}

.image-frame:hover img,

.image-card:hover img{

transform:scale(1.05);

}

/*==============================
    Button Hover Animation
==============================*/

.btn-primary:active,

.btn-outline:active{

transform:scale(.96);

}

/*==============================
    Disable Horizontal Scroll
==============================*/

html,

body{

overflow-x:hidden;

}