:root {
    --primary: #0a2a43;
    --secondary: #4a4a4a;
    --light: #f5f5f5;
    --white: #ffffff;
}

/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--light);
    color: var(--secondary);
}

/* STICKY HEADER */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.header-left h1 {
    margin: 0;
    color: white;
    font-size: 26px;
    font-weight: bold;
}

.header-left h2 {
    margin: 3px 0 0;
    color: white;
    font-size: 14px;
    font-weight: normal;
}

.header-right img {
    max-width: 140px;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(10,42,67,0.75), rgba(10,42,67,0.75)),
                url('hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 25px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.2s ease;
}

.hero-btn:hover {
    background: #0d3557;
}

.hero-btn.whatsapp {
    background: #25d366;
}

.hero-btn.whatsapp:hover {
    background: #1ebc59;
}

/* EXTRA CONTENT INTRO */
.content-intro {
    background: var(--white);
    padding: 30px 20px;
}

.content-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.content-inner h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.content-inner p {
    font-size: 16px;
}

/* SECTION DIVIDER */
.section-divider {
    text-align: center;
    margin: 50px 0 20px;
}

.section-divider h2 {
    color: var(--primary);
    font-size: 28px;
    margin-top: 10px;
}

.section-logo {
    max-width: 120px;
    opacity: 0.85;
}

/* SERVICES */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.services {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.services-row-1 {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
}

.services-row-2,
.services-row-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-box {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.service-box.large {
    padding: 30px;
}

.service-box h3 {
    margin-top: 0;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 20px;
    align-items: start;
}

.contact-box {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* DISCLAIMER PAGE SUPPORT */
.disclaimer-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px 40px;
}

.disclaimer-box {
    background: var(--white);
    padding: 25px 25px 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.disclaimer-box h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 26px;
}

.disclaimer-box h3 {
    margin-top: 20px;
    color: var(--primary);
    font-size: 20px;
}

.disclaimer-box p {
    margin-bottom: 12px;
    font-size: 15px;
}

/* FOOTER */
footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}

.tsa-credit {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
}