/* Lak Connect Main Styles */
:root {
    --primary: #0077b6;
    --accent: #00b4d8;
    --dark: #05263b;
    --text: #1f2937;
    --muted: #64748b;
    --surface: #ffffff;
    --radius: 20px;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f9fc;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    margin: 0 auto;
    width: min(90%, 1200px);
}

header {
    background: var(--surface);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo {
    align-items: center;
    color: var(--primary);
    display: flex;
    font-weight: 700;
    gap: 5px;
    text-decoration: none;
}

.logo img {
    height: 38px;
    width: auto;
}

.nav-menu {
    align-items: center;
    display: flex;
}

nav ul {
    align-items: center;
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
    color: var(--primary);
    outline: none;
}
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    justify-content:right;
    align-items:center;
    
}
    .nav-toggle .hamburger {
        font-size: 1.35rem;
        line-height: 1;
        display:flex;
    }
    .nav-toggle:focus:not(:focus-visible) {
        outline: none;
        box-shadow: none;
    }

.hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 80px 0;
}

.hero-content {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: 1.4fr 1fr;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 680px;
}

.btn {
    align-items: center;
    background: white;
    border-radius: 50px;
    color: var(--primary);
    display: inline-flex;
    font-weight: 600;
    justify-content: center;
    margin: 0 10px 10px 0;
    padding: 14px 28px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover,
.btn:focus-visible {
    outline: none;
    transform: translateY(-2px);
}

.focus-visible {
    outline: 3px solid rgba(0, 119, 182, 0.8);
    outline-offset: 3px;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-card,
.card,
.stat-box,
.ship-table,
.section .card,
.service-page .page-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    color: var(--text);
    min-width: 320px;
    padding: 28px;
    width: 100%;
}

.hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.hero-card label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-card input {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    margin-bottom: 14px;
    padding: 14px 16px;
    width: 100%;
}

.hero-card button {
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    padding: 14px;
    width: 100%;
}

.hero-card button:hover,
.hero-card button:focus-visible {
    background: #005f8f;
    outline: none;
}

.tracking-result {
    font-weight: 600;
    margin-top: 14px;
    min-height: 1.5rem;
}

.section {
    padding: 70px 0;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary);
    font-size: clamp(2rem, 3vw, 2.75rem);
}

.cards,
.stats {
    display: grid;
    gap: 25px;
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stats {
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
    padding: 30px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover,
.card:focus-within {
    transform: translateY(-5px);
}

.card-icon {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.card h3 {
    margin-bottom: 14px;
}

.card p {
    color: var(--muted);
}

.card-link {
    color: var(--primary);
    display: inline-block;
    font-weight: 600;
    margin-top: 18px;
    text-decoration: none;
}

.ship-table {
    border-collapse: collapse;
    overflow: hidden;
    width: 100%;
}

.ship-table th,
.ship-table td {
    border-bottom: 1px solid #eff2f7;
    padding: 18px 14px;
    text-align: left;
}

.ship-table th {
    background: var(--primary);
    color: white;
}

    .ship-table tfoot {
        background: var(--primary);
        color: white;
    }

.ship-table-footer {
    align-items: center;
    display: flex;
    gap: 2px;
    justify-content: space-between;
    padding: 5px;
}

.status {
    align-items: center;
    border-radius: 999px;
    color: white;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 8px;
    padding: 8px 14px;
}

.sailing {
    background: #2ecc71;
}

.scheduled {
    background: #3498db;
}

.delayed {
    background: #e74c3c;
}

.stat-box {
    padding: 32px;
    text-align: center;
}

.stat-box h3 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 12px;
}

.stat-box p {
    color: var(--muted);
}

.cta {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 18px;
}

.cta p {
    color: #e0f2fe;
    margin: 0 auto 28px;
    max-width: 720px;
}

footer {
    background: linear-gradient(135deg, #062f35 0%, #0b6f79 55%, #12343b 100%);
    color: #ffffff;
    padding: 55px 0 25px;
    font-family: Arial, sans-serif;
}

footer p {
    color: #cbd5e1;
    margin: 0 auto;
    max-width: 800px;
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.pwa-install-prompt {
    align-items: center;
    background: #ffffff;
    border: 1px solid #cfe8f3;
    border-radius: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    box-shadow: 0 12px 32px rgba(5, 38, 59, 0.2);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    left: 50%;
    max-width: 620px;
    padding: 14px 16px;
    position: fixed;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    z-index: 1100;
}

.pwa-install-prompt[hidden] {
    display: none;
}

.pwa-install-prompt__content,
.pwa-install-prompt__actions {
    align-items: center;
    display: flex;
    gap: 12px;
}

.pwa-install-prompt__content img {
    border-radius: 10px;
    flex: 0 0 48px;
}

.pwa-install-prompt h2 {
    color: var(--dark);
    font-size: 1rem;
    margin: 0 0 2px;
}

.pwa-install-prompt p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.35;
    margin: 0;
}

.pwa-install-prompt button {
    cursor: pointer;
    font: inherit;
    min-height: 44px;
    white-space: nowrap;
}

.pwa-install-prompt__install {
    background: var(--primary);
    border: 0;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    padding: 0 14px;
}

.pwa-install-prompt__dismiss {
    background: transparent;
    border: 0;
    color: var(--muted);
    padding: 0 4px;
}

@media (max-width: 640px) {
    .pwa-install-prompt {
        align-items: stretch;
        flex-direction: column;
    }

    .pwa-install-prompt__actions {
        justify-content: flex-end;
    }

    .pwa-install-prompt__install {
        width: auto;
    }
}

.page-card {
    padding: 28px;
}

.page-hero {
    padding: 70px 0;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 20px;
}

.page-hero p {
    color: #475569;
    max-width: 700px;
}

.service-content {
    display: grid;
    gap: 24px;
}

.service-content ul {
    color: var(--muted);
    list-style: disc inside;
    margin-top: 12px;
}

.service-content .service-link {
    align-items: center;
    color: var(--primary);
    display: inline-flex;
    font-weight: 600;
    gap: 8px;
    margin-top: 18px;
    text-decoration: none;
}

/* site.css - simplified for inspection */

.container.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 20px
}
.logo img{
    height:38px
}
.nav-toggle{
    display:none;
    background:transparent;
    border:0;
    font-size:20px
}
.nav-menu ul{
    list-style:none;
    display:flex;
    gap:18px;
    margin:0;
    padding:0
}
.nav-menu a{
    color:#0b3b6f;
    text-decoration:none
}

/* Mobile styles */
@media (max-width:767px){
  .nav-toggle{
        display:block
  }
  .nav-menu{
        position:absolute;
        top:64px;
        left:0;
        right:0;
        background:#fff;
        display:none;
        padding:12px 16px;
        border-top:1px solid #eee
  }
  .nav-menu.open{
        display:block
  }
  .nav-menu ul{
        flex-direction:column;
        gap:12px
  }
}
/* Ad containers: keep controlled and non-intrusive */
.adsense-container{
    margin: 12px auto;
    max-width: 728px;
    text-align: center;
}
/* hide large ad slots on small screens to avoid clutter and accidental multiple ads */
@media (max-width:600px){
    .adsense-container{display:none !important}
}

/* helper to show ad only on desktop widths */
.adsense-desktop-only{display:block}
@media (max-width:1024px){
  .adsense-desktop-only{display:none !important}
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        background: var(--surface);
        border-top: 1px solid #e2e8f0;
        left: auto;
        position: absolute;
        right: 0;
        top: 100%;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform .2s ease; 
    }

    .nav-menu.active {
        transform: scaleY(1);
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 18px 0;
        
    }

    nav li {
        width: 100%;
        
    }

    nav a {
        display: block;
        padding: 14px 24px;
        
    }
}

@media (max-width: 640px) {
    .hero-card,
    .card {
        padding: 22px;
    }

    .hero-card {
        min-width: 0;
    }

    .hero-card button,
    .btn,
    .nav-toggle {
        width: 100%;
    }
}

/*footer section start*/

.lak-footer {
    background: linear-gradient(135deg, #1C2486 0%, #0b6f79 55%, #12343b 100%);
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 55px 0 25px;
}

.lak-footer__container {
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
}

.lak-footer__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: space-between;
}

.lak-footer__column {
    flex: 1 1 220px;
}

    .lak-footer__column:nth-child(3) {
        flex-basis: 240px;
    }

.lak-footer__title {
    color: #f5c85b;
    font-size: 20px;
    margin: 0 0 18px;
}

.lak-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .lak-footer__list li {
        margin-bottom: 12px;
    }

    .lak-footer__list i {
        color: #f5c85b;
        margin-right: 4px;
    }

    .lak-footer__list a {
        color: #eaf7f8;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
    }

        .lak-footer__list a:hover {
            color: #f5c85b;
            padding-left: 4px;
        }

.lak-footer__text {
    color: #d6eef0;
    line-height: 1.6;
    margin: 0 0 16px;
}

.lak-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lak-footer__social {
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    font-size: 20px;
    height: 40px;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 40px;
}

    .lak-footer__social:hover {
        background: #f5c85b;
        color: #062f35;
        transform: translateY(-3px);
    }

.lak-footer__brand-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    flex: 1 1 260px;
    padding: 24px;
}

    .lak-footer__brand-card h3 {
        color: #ffffff;
        font-size: 26px;
        margin: 0 0 8px;
    }

.lak-footer__tagline {
    color: #f5c85b;
    font-weight: bold;
    margin: 0 0 14px;
}

.lak-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: #d6eef0;
    font-size: 14px;
    margin-top: 35px;
    padding-top: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .lak-footer {
        padding-top: 40px;
    }

    .lak-footer__grid {
        gap: 28px;
    }
}
/*footer section end*/

/*login section start*/
.login-page {
    align-items: center;
    background: linear-gradient(135deg, #e8f7fb 0%, #f7fbfd 52%, #ffffff 100%);
    display: flex;
    min-height: calc(100vh - 96px);
    padding: 70px 20px;
}

.login-panel {
    background: #ffffff;
    border: 1px solid #d9edf3;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(5, 38, 59, 0.12);
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    margin: 0 auto;
    max-width: 980px;
    padding: 36px;
    width: 100%;
}

.login-panel__intro {
    align-self: center;
}

.login-panel__eyebrow {
    color: #0077b6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.login-panel h1 {
    color: #05263b;
    font-size: clamp(2.25rem, 4vw, 3.6rem);
    line-height: 1;
    margin-bottom: 16px;
}

.login-panel__intro p:last-child {
    color: #64748b;
    max-width: 360px;
}

.login-form {
    background: #f8fcfd;
    border: 1px solid #e5f1f5;
    border-radius: 12px;
    padding: 28px;
}

.login-form__group {
    margin-bottom: 18px;
}

.login-form label {
    color: #1f2937;
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-form input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: #1f2937;
    font: inherit;
    padding: 13px 14px;
    width: 100%;
}

.login-form input:focus {
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.16);
    outline: none;
}

.login-form span,
.login-form__summary {
    color: #c2410c;
    display: block;
    font-size: 0.9rem;
    margin-top: 6px;
}

.login-form__success {
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 10px;
    color: #166534;
    font-weight: 600;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.login-form__button {
    background: #0077b6;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 14px 18px;
    width: 100%;
}

.login-form__button:hover,
.login-form__button:focus {
    background: #005f8f;
    outline: none;
}

@media (max-width: 760px) {
    .login-panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .login-form {
        padding: 22px;
    }
}
/*login section end*/

/* aboutSection responsive layout */
.aboutSection {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin: 1.5rem 0;
}

    /* image column */
    .aboutSection > div:first-child {
        width: 40%;
        flex-shrink: 0;
    }

    .aboutSection .aboutImg {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 6px;
    }

/* content column */
.aboutMission {
    width: 60%;
    box-sizing: border-box;
    padding: 0.25rem 0;
}

/* Responsive breakpoint: stack vertically on small screens */
@media (max-width: 768px) {
    .aboutSection {
        flex-direction: column;
        gap: 1rem;
    }

        .aboutSection > div:first-child,
        .aboutMission {
            width: 100%;
        }

    .aboutMission {
        padding-top: 0.5rem;
    }
}

/* Tweak spacing for very small screens */
@media (max-width: 480px) {
    .aboutMission h3 {
        font-size: 1.05rem;
        margin-top: 0.6rem;
    }

    .aboutMission p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* aboutSection responsive layout end */

