/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #d6e0f5;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* SCROLL REVEAL BASE STATE */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* WHEN ACTIVE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* NAVBAR */
.navbar {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* DESKTOP NAV */
.desktop-nav {
    list-style: none;
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: 0.3s;
}

.desktop-nav a:hover {
    color: #0077cc;
}

/* MOBILE NAV (hidden by default) */
.mobile-nav {
    position: fixed;      /* sticks to viewport */
    top: 70px;            /* sits under navbar */
    right: 0;
    width: 250px;
    background: white;
    padding: 20px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: none;
    flex-direction: column;
    box-shadow: -2px 4px 10px rgba(0,0,0,0.1);
    z-index: 9998;
}



.mobile-nav a {
    text-decoration: none;
    color: black;
    padding: 10px 0;
    font-weight: bold;
}

/* NAV LOGO */
.nav-logo {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    transform: scale(2.25);
    transform-origin: left center;
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #003a63;
    border-radius: 3px;
    transition: 0.3s;
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE BREAKPOINT */
@media (max-width: 768px) {

    /* Hide desktop menu */
    .desktop-nav {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Mobile menu stays hidden until JS toggles it */
    .mobile-nav {
        display: none;
    }
}


/* ============================
   HERO SECTION 
   ============================ */

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    object-fit: cover;
}


/* ============================
   HERO WAVE — RESTORE COLOUR
   ============================ */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 1;              /* restore full colour */
    z-index: 1;
}

.hero-wave svg {
    width: 200%;
    height: auto;
    animation: waveMove 18s ease-in-out infinite;
}

.hero-wave svg path {
    fill: #0077cc;           /* your original wave colour */
}


/* ============================
   REMOVE HERO LOGO COMPLETELY
   ============================ */
.hero-logo {
    display: none !important;
}


/* ============================
   BACKGROUND SLIDES
   ============================ */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fade 18s infinite ease-in-out;
    filter: brightness(0.6);
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

@keyframes fade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    40%  { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 0; }
}


/* ============================
   HERO CONTENT
   ============================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #003f73;
    color: #003f73;
    overflow: hidden;
    padding: 0 20px;
}

.hero-heading {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.hero-divider {
    width: 400px;
    height: 3px;
    margin: 0 auto;
    border-radius: 3px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0),
        rgba(255,255,255,0.9),
        rgba(255,255,255,0)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    opacity: 0;
    transform: translateY(40px);
    animation: heroIn 1.2s ease forwards;
    animation-delay: 0.3s;
}

@keyframes heroIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================
   HERO TEXT
   ============================ */
.hero h1 {
    font-size: 2.4rem;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.15;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 28px;
    color: white;
}

.cta-btn {
    background: white;
    color: #003f73;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background: black;
    color: grey;
}

.hero-rating {
    margin-top: 14px;
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
    font-weight: 500;
}
.hero-rating span {
    font-weight: 500;
}


/* ============================
   WAVE ANIMATION
   ============================ */
@keyframes waveMove {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}


/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 600px) {

    .hero {
        min-height: 75vh;
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 22px;
    }

    .cta-btn {
        padding: 12px 22px;
        font-size: 1rem;
    }
}

/* ============================
   BUTTON
   ============================ */
.btn-primary {
    display: inline-block;
    background: #0077cc;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #005fa3;
}

/* WHY CHOOSE US */
.why {
    padding: 80px 0;
    background: #d6e0f5;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.why-icon {
    font-size: 40px;
    color: #0077cc;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 16px;
    color: #555;
}


/* WHAT WE DO */
.services {
    padding: 80px 0;
    background: #ffffff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #d6e0f5;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 40px;
    color: #0077cc;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    color: #555;
}

/* MINI GALLERY */
.mini-gallery {
    padding: 80px 0;
    background: #ffffff;
}

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mini-gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.mini-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.mini-gallery-item:hover img {
    transform: scale(1.08);
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transition: 0.3s ease;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 40px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s ease;
}

.lb-prev:hover,
.lb-next:hover {
    background: rgba(255,255,255,0.35);
}

.lb-prev {
    left: 40px;
}

.lb-next {
    right: 40px;
}


/* CTA SECTION */
.cta {
    padding: 80px 0;
    background: #f0f6ff;
    text-align: center;
}

.cta-subtext {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.1rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #003f73;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card i {
    font-size: 24px;
    color: #1E88E5;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}


.trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px auto 40px;
    font-size: 1rem;
    color: #003f73;
    font-weight: 600;
}

.trust-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-bar i {
    color: #1E88E5;
    font-size: 18px;
}

/* FAQ SECTION */
.faq {
    padding: 80px 0;
    background: #f7f9fc;
}

.faq .section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* FAQ ITEM */
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Hide checkbox */
.faq-item input {
    display: none;
}

/* Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #003f73;
    position: relative;
}

/* Icon */
.faq-question::after {
    content: "\f067"; /* plus icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: #1E88E5;
    transition: transform 0.3s ease;
}

/* Rotate icon when open */
.faq-item input:checked + .faq-question::after {
    transform: rotate(45deg);
}

/* Answer box */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.35s ease;
}

/* Expand when checked */
.faq-item input:checked ~ .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}


/* ===== FOOTER ===== */

.footer {
  background: #020617;
  color: rgba(148, 163, 184, 0.9);
  padding: 1.8rem 0;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(148, 163, 184, 0.9);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* MINI LOGO IN WHITE BOX */
.footer-logo-box {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #000000;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px; 
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ===== FOOTER BRAND ROW ===== */

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Mini logo box */
.footer-logo-box {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #000000;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Signature text next to logo */
.footer-signature-inline {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148,163,184,0.9);
}

.footer-signature-inline strong {
  color: #ffffff;
}

/* Footer layout */
.footer {
  background: #020617;
  color: rgba(148,163,184,0.9);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(55,65,81,0.9);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
}

.footer-links a {
  color: rgba(148,163,184,0.9);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Floating Areas We Cover */
.floating-areas {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    font-family: inherit;
}

.areas-toggle {
    background: #0077cc;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.areas-toggle:hover {
    background: #005fa3;
}

.areas-panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    display: none;
    animation: fadeIn 0.3s ease;
}

.areas-panel h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.areas-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.areas-panel ul li {
    padding: 6px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.areas-panel ul li:last-child {
    border-bottom: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.areas {
    padding: 80px 0;
    background: #f7f9fc;
}

.areas-intro,
.areas-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #555;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.area-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-card i {
    font-size: 28px;
    color: #1E88E5;
    margin-bottom: 10px;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}


/* ============================
   RESPONSIVE DESIGN
   ============================ */

/* Tablet and below */
@media (max-width: 768px) {

    /* NAV FIXES */
    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
        z-index: 99999;
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        z-index: 9999;
    }

    .nav-links.show {
        display: flex;
    }

    /* HERO MOBILE */
    .hero {
        min-height: 65vh;
        padding: 40px 20px;
    }

    .hero-slide {
        background-position: center top;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .why-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .why,
    .services,
    .testimonials,
    .contact {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

    .brand-logo {
        font-size: 22px;
        padding: 8px 14px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-tagline {
        font-size: 13px;
    }

    .hero {
        min-height: 70vh;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .why-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 992px) {
    .mini-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */
@media (max-width: 768px) {

    .hero {
        min-height: 65vh;
        padding: 40px 20px;
    }

    .hero-slide {
        background-position: center top;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .why-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .why,
    .services,
    .testimonials,
    .contact {
        padding: 50px 0;
    }
}



@media (max-width: 400px) {
    .mini-gallery-grid {
        grid-template-columns: 1fr;
    }

    .lb-prev,
    .lb-next {
        font-size: 28px;
        padding: 8px 14px;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-image img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 20px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
}
