/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.sub-header {
    background-color: #06294a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav ul li a {
    color: #e0e6ed;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #f28c28;
    border-bottom: 2px solid #f28c28;
}
.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

.menu-toggle{
    display:none;
    font-size:2rem;
    cursor:pointer;
    color:white;
}


/* MOBILE */
@media(max-width:768px){

    .nav-inner{
        width:100%;
        padding:15px 20px;
        flex-wrap:wrap;
    }

    .menu-toggle{
        display:block;
    }

    .nav ul{
        display:none;
        width:100%;
        flex-direction:column;
        text-align:center;
        margin-top:20px;
        gap:15px;
    }

    .nav ul.active{
        display:flex;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .booking-card{
        padding:40px 25px;
    }

    .coverage h2{
        font-size:2rem;
    }

    .footer-grid{
        text-align:center;
    }
}
/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.about-hero {
    background: linear-gradient(135deg, rgba(6, 41, 74, 0.95), rgba(6, 41, 74, 0.8)), 
                url('images/about-company.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #cbd5e1;
    font-weight: 300;
}

/* ==========================================================================
   4. COMPANY OVERVIEW
   ========================================================================== */
.company-overview {
    padding: 80px 0;
    background-color: #fff;
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.overview-text {
    flex: 1;
}

.overview-text h2 {
    color: #06294a;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
}

.overview-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #f28c28;
    margin-top: 10px;
}

.overview-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1rem;
}

.overview-image {
    flex: 1;
}

.overview-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(6, 41, 74, 0.15);
}

/* ==========================================================================
   5. TEAM & PARTNERS SHARED STRUCTURE
   ========================================================================== */
.team, .partners {
    padding: 80px 0;
    text-align: center;
}

.team { background-color: #f8f9fb; }
.partners { background-color: #fff; }

h2 {
    color: #06294a;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: #666;
    font-size: 1.05rem;
}

/* Grids */
.team-grid, .partners-grid {
    display: grid;
    gap: 30px;
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards styling */
.team-card, .partner-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover, .partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(6, 41, 74, 0.1);
}

/* Team Customizations */
.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    object-fit: cover;
    border: 3px solid #06294a;
}

.team-card h3, .partner-card h3 {
    color: #06294a;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-card .position {
    display: block;
    color: #f28c28;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.team-card p, .partner-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.staff-contact a{
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}

.staff-contact a:hover{
    color: #f28c28;
}

/* Partner Customizations */
.partner-card img {
    height: 60px;
    object-fit: contain;
    margin: 0 auto 20px auto;
}

/* ==========================================================================
   6. FOOTER
   ========================================================================== */
footer {
    background-color: #06294a;
    color: #fff;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

footer h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #f28c28;
    position: relative;
}

footer p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

footer a {
    display: block;
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

footer a:hover {
    color: #f28c28;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ==========================================================================
   7. STICKY WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background-color: #128C7E;
    color: #fff;
}

/* ==========================================================================
   8. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .overview-content {
        flex-direction: column;
        text-align: center;
    }
    .overview-text h2::after {
        margin: 10px auto 0 auto;
    }
    .about-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .about-hero {
        padding: 60px 0;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
}
