/*======================================================
  ALHAJI UMAR SADIYA TRAVEL AGENCY
  Main Stylesheet
  Author: Mohammed Yusuf Ghadu
  Version: 1.0
=======================================================*/


/*======================================================
  GOOGLE FONT
=======================================================*/

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


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

:root{

    /* Brand Colors */

    --primary: #003366;
    --primary-light:#0b5ed7;
    --secondary:#f4b400;
    --secondary-dark:#d89d00;

    --white:#ffffff;
    --black:#111111;

    --gray-100:#f8f9fa;
    --gray-200:#ececec;
    --gray-300:#dddddd;
    --gray-400:#bbbbbb;
    --gray-500:#888888;
    --gray-600:#666666;
    --gray-700:#444444;
    --gray-800:#222222;

    --success:#16a34a;
    --danger:#dc2626;
    --warning:#ff9800;

    /* Typography */

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

    --fs-1:60px;
    --fs-2:48px;
    --fs-3:36px;
    --fs-4:28px;
    --fs-5:22px;
    --fs-6:18px;
    --fs-7:16px;
    --fs-8:14px;

    /* Border Radius */

    --radius-sm:8px;
    --radius:12px;
    --radius-lg:18px;
    --radius-xl:30px;

    /* Shadows */

    --shadow-sm:0 3px 10px rgba(0,0,0,.08);

    --shadow:

    0 10px 30px rgba(0,0,0,.12);

    --shadow-lg:

    0 18px 45px rgba(0,0,0,.18);

    /* Transition */

    --transition:.35s ease;

}


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

*{

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

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--font);

    color:var(--gray-700);

    background:var(--white);

    line-height:1.7;

    overflow-x:hidden;

}


/*======================================================
  GLOBAL ELEMENTS
=======================================================*/

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    cursor:pointer;

    font-family:inherit;

    border:none;

}

input,
select,
textarea{

    font-family:inherit;

    outline:none;

}


/*======================================================
  TYPOGRAPHY
=======================================================*/

h1{
    

    line-height:1.1;

    font-weight:700;

}

h2{

    font-size:var(--fs-2);

    color:var(--primary);

    margin-bottom:20px;

}

h3{

    font-size:var(--fs-5);

    color:var(--primary);

}

p{

    font-size:var(--fs-7);

    color:var(--gray-600);

}


/*======================================================
  CONTAINER
=======================================================*/

.container{

    width:min(1200px,92%);

    margin:auto;

}


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

section{

    padding:90px 0;

}

.section-header{

    text-align:center;

    margin-bottom:60px;

}

.section-tag{

    display:inline-block;

    background:#eaf3ff;

    color:var(--primary);

    padding:8px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}


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

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 32px;

    background:var(--secondary);

    color:var(--black);

    border-radius:40px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--secondary-dark);

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 32px;

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

    color:var(--white);

    border-radius:40px;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--white);

    color:var(--primary);

}


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

#preloader{

    position:fixed;

    inset:0;

    background:var(--white);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader{

    display:flex;

    gap:8px;

}

.loader span{

    width:15px;

    height:15px;

    border-radius:50%;

    background:var(--secondary);

    animation:bounce .8s infinite alternate;

}

.loader span:nth-child(2){

    animation-delay:.2s;

}

.loader span:nth-child(3){

    animation-delay:.4s;

}

@keyframes bounce{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-15px);

    }

}

/*======================================================
  HEADER
======================================================*/

#header{

    position:fixed;
background: darkgreen;
    top:0;
    left:0;
    

    width:100%;

    z-index:9999;

    padding:18px 0;

    transition:all .4s ease;

}
#header span{
    font-size: 20px;
    color: darkgoldenrod;
}
header{

    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    

}

#header.scrolled{

    background:#ffffff;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    padding:12px 0;

}


/*======================================================
  NAVIGATION
======================================================*/

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;
    position: relative;

}


/*======================================================
  LOGO
======================================================*/

.logo a{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:55px;

    height:55px;

    object-fit:contain;

}

.logo span{

    font-size:24px;

    font-weight:700;

    color:var(--white);

    transition:.3s;

}

#header.scrolled .logo span{

    color:var(--primary);

}


/*======================================================
  DESKTOP MENU
======================================================*/

./*======================================================
  NAVIGATION
======================================================*/

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:#ffd700;
}


/*======================================================
  HAMBURGER
======================================================*/

#menuToggle{

    display:none;

    background:none;

    border:none;

    color:#fff;

    font-size:25px;

    cursor:pointer;

    z-index:1001;

}


/*======================================================
  MOBILE
======================================================*/

@media (max-width:768px){

    #menuToggle{

        display:block;

    }

    .nav-links{

        position:absolute;

        top:100%;

        right:10px;

        width:240px;

        background: darkgoldenrod;

        border-radius:10px;

        display:flex;

        flex-direction:column;

        overflow:hidden;

        max-height:0;

        opacity:0;

        transition:.35s ease;

        z-index:1000;

    }

    .nav-links.active{

        max-height:500px;

        opacity:1;

    }

    .nav-links li{

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

    }

    .nav-links li:last-child{

        border-bottom:none;

    }

    .nav-links a{

        display:block;

        padding:16px 20px;

    }

}

/*======================================================
  BOOK NOW BUTTON
======================================================*/

.nav-right .btn-primary{

    padding:12px 28px;

}


/*======================================================
  MOBILE MENU BUTTON
======================================================*/

/* ==========================
   HAMBURGER MENU
========================== */

.menu-btn{
    width:40px;
    height:32px;
    display:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
    z-index:9999;
}

.menu-btn span{
    width:100%;
    height:4px;
    background:#ffffff;
    border-radius:10px;
    transition:0.3s;
}
#menuToggle{

    width:50px;

    height:50px;

    border-radius:10%;

    display:none;

    justify-content:center;

    align-items:center;

    background:var(--secondary);

    color:var(--black);

    font-size:22px;

    transition:.35s;

}
#menuToggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}
@media (max-width:768px){

    #menuToggle{
        display:block;
    }

    .nav-links{
        display:none;
    }

    .nav-links.active{
        display:flex;
        flex-direction:column;
        position:absolute;
        top:80px;
        right:20px;
        width:220px;
        background:#0b5d3b;
        padding:20px;
        border-radius:10px;
    }

}

#menuToggle:hover{

    transform:slide(down);

}
@media (max-width:768px){

    .menu-btn{
        display:flex;
    }

    .nav-menu{
        display:none;
    }

    .nav-menu.active{
        display:flex;
        flex-direction:column;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#0b5d3b;
        padding:20px;
    }

}


/*======================================================
  STICKY HEADER ANIMATION
======================================================*/

#header{

    animation:headerFade .6s ease;

}

@keyframes headerFade{

    from{

        transform:translateY(-80px);

        opacity:0;

    }

    to{

        transform:translateY(0);

        opacity:1;

    }

}

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

#hero{

    position:relative;

    width:100%;

    height:120vh;

    overflow:hidden;

    display:block;

    align-items:center;

    justify-content:center;

    background:var(--primary);

}


/*======================================================
  HERO SLIDER
======================================================*/
/* ===============================
   HERO SLIDER
================================ */

.hero-slider{
    position: relative;
    display: flex;
    width: 95%;
    height: 70%;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active{
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/*======================================================
  HERO OVERLAY
======================================================*/

.slide .overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.45)
    );

    z-index:1;

}


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


.hero-content{

    position:absolute;

    top:50%;

    left:50%;

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

    z-index:2;

    width:min(850px,90%);
    min-height: 270px;

    text-align:center;

    color:var(--white);

}

.hero-content h4{

    font-size:25px;

    color:var(--secondary);

    margin-bottom:25px;
    margin-top: 120px;

    text-transform:uppercase;
    letter-spacing:2px;

}

.hero-content h1{

    color:var(--white);

    margin-bottom:25px;
margin-top: -15px;
    line-height:1.0;
    font-size: 15px;

}

.hero-content p{

    color:#f5f5f5;
margin-top: -30px;
    font-size:15px;

    max-width:700px;

    margin:0 auto 35px;

}


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

.hero-buttons{

    display:flex;
margin-top: -16px;
    justify-content:center;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

}


/*======================================================
  HERO ANIMATION
======================================================*/

.hero-content>*{

    animation:heroFadeUp 1s ease both;

}

.hero-content h4{

    animation-delay:.2s;

}

.hero-content h1{

    animation-delay:.4s;

}

.hero-content p{

    animation-delay:.6s;

}

.hero-buttons{

    animation-delay:.8s;

}

@keyframes heroFadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*======================================================
  SLIDER CONTROLS
======================================================*/

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border-radius:50%;

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

    backdrop-filter:blur(10px);

    color:var(--white);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:var(--transition);

    z-index:5;

}

.prev{

    left:20px;

}

.next{

    right:20px;

}

.prev:hover,
.next:hover{

    background:var(--secondary);

    color:var(--black);

}


/*======================================================
  SLIDER DOTS
======================================================*/

.slider-dots{

    position:absolute;

    bottom:20px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    z-index:5;

}

.slider-dots span{

    width:14px;

    height:14px;

    border-radius:50%;

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

    cursor:pointer;

    transition:var(--transition);

}

.slider-dots span.active{

    background:var(--secondary);

    transform:scale(1.2);

}

/*======================================================
  BOOKING SEARCH CARD
======================================================*/

.booking-card{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    width:min(1100px,92%);

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

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border-radius:20px;

    padding:30px;

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

    z-index:20;

}

.booking-card h2{

    text-align:center;

    color:var(--primary);

    margin-bottom:25px;

    font-size:30px;

}


/*======================================================
  BOOKING FORM
======================================================*/

.booking-card form{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

}


/*======================================================
  INPUTS & SELECT
======================================================*/

.booking-card input,
.booking-card select{

    width:100%;

    height:60px;

    padding:0 18px;

    border:1px solid var(--gray-300);

    border-radius:12px;

    background:#ffffff;

    font-size:16px;

    color:var(--gray-700);

    transition:var(--transition);

}

.booking-card input:focus,
.booking-card select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(0,51,102,.10);

}


/*======================================================
  PLACEHOLDER
======================================================*/

.booking-card input::placeholder{

    color:var(--gray-500);

}


/*======================================================
  SEARCH BUTTON
======================================================*/

.booking-card button{

    height:60px;

    border:none;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--secondary-dark)
    );

    color:var(--black);

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

}

.booking-card button:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}


/*======================================================
  BOOKING CARD ANIMATION
======================================================*/

.booking-card{

    animation:bookingFade .9s ease;

}

@keyframes bookingFade{

    from{

        opacity:0;

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

    }

    to{

        opacity:1;

        transform:translate(-50%,0);

    }

}


/*======================================================
  SMALL TABLETS
======================================================*/

@media (max-width:992px){

    .booking-card{

        position:relative;

        left:auto;

        bottom:auto;

        transform:none;

        margin:40px auto 0;

    }

}


/*======================================================
  MOBILE PHONES
======================================================*/

@media (max-width:768px){

    .booking-card{

        padding:20px;

        border-radius:16px;

    }

    .booking-card h2{

        font-size:24px;

    }

    .booking-card form{

        grid-template-columns:1fr;

    }

    .booking-card input,
    .booking-card select,
    .booking-card button{

        height:55px;

    }

}

/*======================================================
    FEATURED SERVICES SECTION
======================================================*/

#services-preview{

    background:var(--gray-100);

    position:relative;

}

#services-preview .section-header{

    max-width:750px;

    margin:0 auto 70px;

}

#services-preview .section-header h2{

    font-size:42px;

    margin-bottom:20px;

}

#services-preview .section-header p{

    font-size:18px;

    color:var(--gray-600);

}


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

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}


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

.service-card{

    background:var(--white);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.45s;

    position:relative;

    overflow:hidden;

    border:1px solid transparent;

}


/*======================================================
    TOP BORDER EFFECT
======================================================*/

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--secondary);

    transform:scaleX(0);

    transition:.45s;

}


/*======================================================
    ICON
======================================================*/

.service-card i{

    width:90px;

    height:90px;

    line-height:90px;

    border-radius:50%;

    background:#eef5ff;

    color:var(--primary);

    font-size:38px;

    margin-bottom:25px;

    transition:.45s;

}


/*======================================================
    TITLE
======================================================*/

.service-card h3{

    margin-bottom:18px;

}


/*======================================================
    DESCRIPTION
======================================================*/

.service-card p{

    margin-bottom:28px;

}


/*======================================================
    READ MORE LINK
======================================================*/

.service-card a{

    color:var(--primary);

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:8px;

    transition:.35s;

}

.service-card a::after{

    content:"→";

    transition:.35s;

}

.service-card:hover a::after{

    transform:translateX(6px);

}


/*======================================================
    HOVER EFFECT
======================================================*/

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

    border-color:rgba(0,51,102,.08);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover i{

    background:var(--primary);

    color:var(--white);

    transform:rotateY(180deg);

}


/*======================================================
    RESPONSIVE
======================================================*/

@media(max-width:768px){

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        padding:35px 25px;

    }

}

/*======================================================
  WHY CHOOSE US
======================================================*/

#why-us{

    background:var(--white);

    position:relative;

    overflow:hidden;

}

#why-us .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}


/*======================================================
  LEFT IMAGE
======================================================*/

.why-left{

    position:relative;

}

.why-left img{

    width:100%;

    border-radius:20px;

    object-fit:cover;

    box-shadow:var(--shadow-lg);

}


/* Decorative background */

.why-left::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(244,180,0,.12);

    border-radius:50%;

    top:-40px;

    left:-40px;

    z-index:-1;

}

.why-left::after{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:rgba(0,51,102,.08);

    border-radius:50%;

    right:-30px;

    bottom:-30px;

    z-index:-1;

}


/*======================================================
  RIGHT CONTENT
======================================================*/

.why-right .section-tag{

    margin-bottom:18px;

}

.why-right h2{

    margin-bottom:22px;

}

.why-right p{

    margin-bottom:30px;

    font-size:17px;

}


/*======================================================
  FEATURE LIST
======================================================*/

.why-list{

    display:grid;

    gap:18px;

    margin-bottom:35px;

}

.why-list li{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:16px;

    color:var(--gray-700);

    font-weight:500;

}

.why-list i{

    width:34px;

    height:34px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(22,163,74,.12);

    color:var(--success);

    font-size:15px;

    flex-shrink:0;

}


/*======================================================
  BUTTON
======================================================*/

.why-right .btn-primary{

    margin-top:10px;

}


/*======================================================
  ANIMATION
======================================================*/

.why-left,
.why-right{

    transition:all .45s ease;

}

.why-left:hover{

    transform:translateY(-8px);

}

.why-right:hover{

    transform:translateY(-3px);

}


/*======================================================
  RESPONSIVE
======================================================*/

@media(max-width:992px){

    #why-us .container{

        grid-template-columns:1fr;

        gap:45px;

    }

    .why-left{

        order:1;

    }

    .why-right{

        order:2;

        text-align:center;

    }

    .why-list{

        text-align:left;

        max-width:520px;

        margin:0 auto 35px;

    }

}

@media(max-width:768px){

    .why-right h2{

        font-size:34px;

    }

    .why-right p{

        font-size:16px;

    }

    .why-left::before,

    .why-left::after{

        display:none;

    }

}

/*======================================================
  POPULAR DESTINATIONS
======================================================*/

#destinations{

    background:var(--gray-100);

    position:relative;

}

.destination-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.destination-card{
    border-radius: 10px;

    position:relative;

    overflow:hidden;

    border-radius:18px;

    box-shadow:var(--shadow);

    cursor:pointer;

    transition:all .4s ease;

}

.destination-card img{

    width:100%;

    height:380px;

    object-fit:cover;

    transition:transform .6s ease;

}

.destination-card:hover img{

    transform:scale(1.12);

}

.destination-content{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:25px;

    color:var(--white);

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );

}

.destination-content h3{

    color:var(--white);

    margin-bottom:8px;

    font-size:24px;

}

.destination-content p{

    color:#f1f1f1;

    margin:0;

}

.destination-card:hover{

    transform:translateY(-8px);

}


/*======================================================
  STATISTICS
======================================================*/

#statistics{

    background:linear-gradient(
        135deg,
        var(--primary),
        #0d4f8b
    );

    color:var(--white);

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-box{

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

    backdrop-filter:blur(10px);

    border-radius:18px;

    padding:35px 20px;

    text-align:center;

    transition:.4s;

}

.stat-box:hover{

    transform:translateY(-8px);

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

}

.stat-box h2{

    color:var(--secondary);

    font-size:48px;

    margin-bottom:10px;

}

.stat-box p{

    color:var(--white);

    font-size:17px;

    margin:0;

    letter-spacing:.5px;

}


/*======================================================
  RESPONSIVE
======================================================*/

@media(max-width:768px){

    .destination-grid{

        grid-template-columns:1fr;

    }

    .destination-card img{

        height:300px;

    }

    .stat-box h2{

        font-size:38px;

    }

}

/* ==============================
   HAJJ & UMRAH SECTION
================================ */

.hajj-section {
    padding: 80px 8%;
    background: #f8f9f5;
}

.hajj-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hajj-content {
    flex: 1;
}

.hajj-content h2 {
    font-size: 42px;
    color: #0b5d3b;
    margin-bottom: 20px;
}

.hajj-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.hajj-list {
    margin-bottom: 30px;
}

.hajj-list li {
    list-style: none;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.hajj-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c89b3c;
    font-weight: bold;
}

.hajj-btn {
    display: inline-block;
    background: #0b5d3b;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.hajj-btn:hover {
    background: #c89b3c;
}


.hajj-image {
    flex: 1;
}

.hajj-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


/* Responsive */

@media(max-width: 900px){

    .hajj-container {
        flex-direction: column;
    }

    .hajj-content h2 {
        font-size: 32px;
    }

}

/* ==============================
   FEATURED PACKAGES SECTION
================================ */

.packages-section {
    padding: 80px 8%;
    background: #ffffff;
}

.packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.packages-header h2 {
    font-size: 42px;
    color: #0b5d3b;
    margin-bottom: 15px;
}

.packages-header p {
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}


.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.package-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}


.package-card:hover {
    transform: translateY(-10px);
}


.package-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}


.package-content {
    padding: 25px;
}


.package-content h3 {
    color: #0b5d3b;
    font-size: 24px;
    margin-bottom: 12px;
}


.package-content p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}


.package-price {
    font-size: 22px;
    color: #c89b3c;
    font-weight: bold;
    margin-bottom: 20px;
}


.package-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #0b5d3b;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s ease;
}


.package-btn:hover {
    background: #c89b3c;
}


/* Responsive Design */

@media(max-width: 1000px){

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width: 650px){

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .packages-header h2 {
        font-size: 20px;
    }

}

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

.contact-section {
    padding: 80px 8%;
    background: #f8f9f5;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 25px;
    color: #0b5d3b;
    margin-bottom: 20px;
}

.contact-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 25px;
}

.contact-details div {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}


.contact-form {
    flex: 1;
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    background: #0b5d3b;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s ease;
}

.contact-form button:hover {
    background: #c89b3c;
}



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

.footer {
    background: #063d28;
    color: white;
    padding: 50px 8% 20px;
    
    align-items: center;
}

.footer-container {
    display: grid;
    
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

.footer h3 {
    margin-bottom: 20px;
    color: #c89b3c;
    
}

.footer p,
.footer a {
    color: #ddd;
    text-decoration: none;
    line-height: 1.8;
}

.footer-links a {
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.2);
}



/* ==============================
   SCROLL ANIMATION
================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}



/* ==============================
   MOBILE RESPONSIVE
================================ */

@media(max-width:900px){

    .contact-container {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    align-content: center;
    }

}



@media(max-width:600px){

    .contact-info h2 {
        font-size: 30px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer {
        text-align: center;
        align-items: center;
    align-content: center;
    }

}

/*======================================================
  ABOUT PAGE HERO
======================================================*/

.page-hero{

    position:flex;

    height:55vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.page-hero img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.page-hero .overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.page-hero-content{

    position:relative;

    z-index:2;

    color:#fff;

    text-align:center;

    max-width:800px;

    padding:20px;

}
.page-hero-content h4{
    margin-top:170px;
}

.page-hero-content h1{

    font-size:3rem;
    color:gold;

    margin:15px 0;

}
h4{
    color: white;
}

.page-hero-content p{

    font-size:1.1rem;

    line-height:1.8;
    color:white;

}

/*======================================================
  ABOUT GRID
======================================================*/

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

    padding:80px 0;

}

.about-image img{

    width:100%;

    border-radius:20px;

}

.about-content p{

    margin:20px 0;

    line-height:1.9;

}
.about-content h2{
    font-size: 22px;
    color: darkgreen;
}

/*======================================================
  MISSION / VISION
======================================================*/

.mission-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    padding:60px 0;

}

.mission-card{

    background:#fff;

    padding:35px;

    border-radius:15px;

    text-align:center;

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

}

.mission-card i{

    font-size:45px;

    color:var(--secondary);

    margin-bottom:20px;

}

.values-list{

    list-style:none;

    padding:0;

}

.values-list li{

    padding:8px 0;

}

/*======================================================
  TEAM
======================================================*/

.team-image{

    width:140px;

    height:140px;

    border-radius:50%;

    object-fit:cover;

    margin:0 auto 20px;

    display:block;

}

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

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    margin-bottom:20px;

    padding:25px;

    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.faq-item h3{

    margin-bottom:12px;

}

.faq-item i{

    color:var(--secondary);

    margin-right:10px;

}

/*======================================================
  ABOUT CTA
======================================================*/

#about-cta{

    padding:80px 0;

}

/*======================================================
  RESPONSIVE
======================================================*/

@media(max-width:768px){

    .about-grid{

        grid-template-columns:1fr;

    }

    .page-hero{

        height:45vh;

    }

    .page-hero-content h1{

        font-size:2.2rem;

    }

}