* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Afacad', sans-serif;
    touch-action: pan-y;
}

/* Prevent horizontal overflow on non-hero elements */
img, video, iframe, embed, object {
    max-width: 100%;
}

input,
textarea,
select {
    max-width: 100%;
    box-sizing: border-box;
}

.hero {
    width: 100%;
    min-height: 850px;
    height: auto;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-img.png');
    background-size: cover;
    background-position: center top;
    filter: grayscale(100%);
    z-index: 0;
}

.navbar {
    position: absolute;
    top: 0;
    left: 67px;
    right: 67px;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Afacad', sans-serif;
    z-index: 10;
}

.nav-logo img {
    width: 275px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
}

.nav-links a:hover {
    font-weight: 700;
    opacity: 1;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    cursor: pointer;
}

.nav-cta span {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.nav-cta-circle {
    width: 59px;
    height: 59px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: visible;
    flex-shrink: 0;
    background: transparent;
}

.nav-cta-circle svg {
    width: 70px;
    height: auto;
    transform: translateX(-25%);
    cursor: pointer;
}

.nav-cta:hover span {
    font-weight: 700;
}

.nav-cta:hover .nav-cta-circle {
    border-color: #FFFFFF;
    border-width: 2px;
}

.nav-cta:hover .nav-cta-circle svg path {
    stroke-width: 2;
}

.hero-divider {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 3;
}

.hero-divider-right {
    position: absolute;
    top: 0;
    right: 50px;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 3;
}

.hero-blue-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 773px;
    height: 490px;
    background-color: #004882;
    opacity: 0.8;
    z-index: 2;
    pointer-events: none;
}

.hero-brand-name {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #FFFFFF;
    margin-bottom: 6px;
    opacity: 1;
}

.hero-brand-slogan {
    font-family: 'Afacad', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 1;
}

.hero-content {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.hero-title {
    position: absolute;
    width: 773px;
    left: 0;
    top: 490px;
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    color: #FFFFFF;
    text-align: center;
}

.hero-slogan {
    position: absolute;
    width: 773px;
    left: 0;
    top: 548px;
    font-family: 'Afacad', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.hero-tagline {
    position: absolute;
    width: 640px;
    left: 67px;
    top: 610px;
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    color: #FFFFFF;
    text-align: left;
}

.hero-cta {
    position: absolute;
    left: 455px;
    top: 800px;
    display: flex;
    align-items: center;
    gap: 40px;
    cursor: pointer;
    white-space: nowrap;
    pointer-events: all;
}

.hero-cta span {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.hero-cta-circle {
    width: 59px;
    height: 59px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: visible;
    flex-shrink: 0;
    background: transparent;
}

.hero-cta-circle svg {
    width: 70px;
    height: auto;
    transform: translateX(-25%);
}

.hero-cta:hover span {
    font-weight: 700;
}

.hero-cta:hover .hero-cta-circle {
    border-width: 2px;
}

.hero-cta:hover .hero-cta-circle svg path {
    stroke-width: 2;
}

.hero-form {
    position: relative;
    margin-left: auto;
    margin-top: 140px;
    margin-right: 52px;
    margin-bottom: 30px;
    width: 495px;
    flex-shrink: 0;
    height: auto;
    min-height: 675px;
    background-color: rgba(0, 0, 0, 0.55);
    padding: 36px 30px 28px 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: all;
    box-sizing: border-box;
    overflow: visible;
}

.form-title {
    font-family: 'Afacad', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
}

.form-subtitle {
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 6px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.form-group.full {
    width: 100%;
}

.form-group label {
    font-family: 'Afacad', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
}

.form-group input,
.form-group textarea {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    padding: 10px 14px;
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #FFFFFF;
}

.form-group textarea {
    height: 88px;
    resize: none;
}

.form-btn {
    width: 100%;
    padding: 14px;
    background-color: #004882;
    color: #FFFFFF;
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 6px;
    flex-shrink: 0;
}

.form-btn:hover {
    background-color: #003a6e;
}

/* Mission Statement Section */
.mission-section {
    width: 100%;
    background-color: #f8f9fb;
    border-top: 4px solid #004882;
    padding: 72px 0;
}

.mission-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 67px;
}

.mission-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.mission-line {
    width: 30px;
    height: 2px;
    background-color: #004882;
    display: block;
}

.mission-label span:last-child {
    font-family: 'Afacad', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #004882;
    font-weight: 600;
}

.mission-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 36px;
}

.mission-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mission-lead {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #004882;
    border-left: 4px solid #004882;
    padding-left: 20px;
}

.mission-text {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    color: #444444;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 72, 130, 0.15);
}

.mission-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mission-value-dot {
    width: 12px;
    height: 12px;
    background-color: #004882;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.mission-value strong {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #111111;
    display: block;
    margin-bottom: 2px;
}

.mission-value p {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: #666666;
    margin: 0;
}

/* Mission Two-Column Layout */
.mission-two-col {
    display: flex;
    gap: 0;
    align-items: flex-start;
    max-width: 1300px;
}

.mission-col-left {
    flex: 1;
    padding-right: 60px;
}

.mission-col-divider {
    width: 1px;
    background-color: rgba(0, 72, 130, 0.2);
    align-self: stretch;
    flex-shrink: 0;
}

.mission-col-right {
    flex: 1;
    padding-left: 60px;
}

@media (max-width: 1023px) {
    .mission-two-col { flex-direction: column; gap: 48px; }
    .mission-col-left { padding-right: 0; }
    .mission-col-right { padding-left: 0; }
    .mission-col-divider { width: 100%; height: 1px; align-self: auto; }
}

@media (max-width: 767px) {
    .mission-two-col { gap: 36px; }
    .mission-divider { width: 100%; height: 1px; align-self: auto; }
}

@media (max-width: 767px) {
    .mission-split { gap: 36px; }
}


@media (max-width: 1023px) {
    .mission-inner { padding: 0 40px; }
    .mission-title { font-size: 34px; }
    .mission-lead { font-size: 20px; }
}

@media (max-width: 767px) {
    .mission-section { padding: 52px 0; }
    .mission-inner { padding: 0 24px; }
    .mission-title { font-size: 28px; }
    .mission-lead { font-size: 18px; }
    .mission-text { font-size: 17px; }
}

@media (max-width: 479px) {
    .mission-section { padding: 40px 0; }
    .mission-inner { padding: 0 16px; }
    .mission-title { font-size: 24px; }
    .mission-lead { font-size: 17px; padding-left: 14px; }
    .mission-text { font-size: 16px; }
    .mission-value strong { font-size: 17px; }
    .mission-value p { font-size: 15px; }
}

/* Services Strip */
.services-strip {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 67px;
    flex-wrap: nowrap;
    gap: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.services-strip a {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #004882;
    text-decoration: underline;
    white-space: nowrap;
}

.services-strip a:hover {
    opacity: 0.8;
}

/* What You Get */
.what-you-get {
    width: 100%;
    max-width: 1440px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto 0 auto;
    padding: 0 67px;
}

.wyg-content {
    width: 479px;
    flex-shrink: 0;
}

.wyg-image {
    width: 650px;
    height: 380px;
    flex-shrink: 0;
}

.wyg-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    color: #000000;
    margin-bottom: 10px;
}

.wyg-subtitle {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 30px;
}

.wyg-item {
    margin-bottom: 18px;
}

.wyg-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wyg-item-header strong {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
}

.wyg-dot {
    width: 18px;
    height: 18px;
    background-color: #004882;
    border-radius: 50%;
    flex-shrink: 0;
}

.wyg-item-desc {
    display: none;
    font-family: 'Afacad', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #868585;
    margin-top: 6px;
    width: 402px;
}

.wyg-item-desc.visible {
    display: block;
}

.wyg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    filter: grayscale(100%);
}

.wyg-toggle {
    width: 22px;
    height: 22px;
    background-color: #004882;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.wyg-toggle svg {
    transform: rotate(180deg);
}

.wyg-toggle.open svg {
    transform: rotate(0deg);
}

/* Complete Safety Section */
.complete-safety {
    width: 100%;
    height: 720px;
    margin: 40px 0 0 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.complete-safety::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/complete-safety.png');
    background-size: cover;
    background-position: 50% 30%;
    z-index: 0;
    filter: brightness(0.3);
}

.cs-left {
    position: absolute;
    left: 71px;
    top: 198px;
    width: 527px;
    z-index: 1;
}

.cs-right {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 1;
    height: 626px;
    align-items: flex-end;
    background-color: #141414;
}

.cs-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.cs-line {
    width: 30px;
    height: 1px;
    background-color: #FFFFFF;
    display: block;
}

.cs-label span:last-child {
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
}

.cs-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    color: #FFFFFF;
    margin-bottom: 30px;
    width: 499px;
}

.cs-subtitle {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    color: #FFFFFF;
    width: 527px;
}

.cs-dark-panel {
    width: 362px;
    height: 626px;
    background-color: #141414;
    padding: 60px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-menu {
    display: flex;
    flex-direction: column;
}

.cs-menu-item {
    font-family: 'Afacad', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #FFFFFF;
    padding: 14px 0;
    cursor: pointer;
    opacity: 0.49;
    transition: opacity 0.2s;
}

.cs-menu-item.active {
    opacity: 1;
    font-weight: 700;
}

.cs-menu-item:hover {
    opacity: 1;
}

.cs-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.cs-blue-panel {
    width: 446px;
    height: 476px;
    background-color: #004882;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: flex-end;
    margin-top: 150px;
    position: relative;
    overflow: visible;
}

.cs-semicircle {
    position: absolute;
    bottom: -60px;
    right: -80px;
    width: 232px;
    height: 232px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.15);
    background: transparent;
}

.cs-panel-text {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.cs-read-more {
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
}

.cs-read-more span {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.cs-circle {
    width: 59px;
    height: 59px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: visible;
    flex-shrink: 0;
}

.cs-circle svg {
    width: 70px;
    height: auto;
}

.cs-read-more:hover span {
    font-weight: 700;
}

.cs-read-more:hover .cs-circle {
    border-width: 2px;
}

.cs-read-more:hover .cs-circle svg path {
    stroke-width: 2;
}

/* Steps Section */
.steps-section {
    width: 100%;
    max-width: 1440px;
    margin: 80px auto 0 auto;
    padding: 0 102px;
}

.steps-header {
    text-align: center;
    margin-bottom: 40px;
}

.steps-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 53px;
    color: #111111;
    margin-bottom: 8px;
}

.steps-subtitle {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    color: #666666;
}

.steps-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 180px;
}

.steps-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #004882;
    background: white;
    flex-shrink: 0;
    position: relative;
}

.steps-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #004882;
    border-radius: 50%;
}

.steps-line {
    flex: 1;
    border-top: 1.5px dashed #004882;
}

.steps-cards {
    display: flex;
    gap: 24px;
}

.step-card {
    flex: 1;
    background-color: #2C2C2C;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 397px;
}

.step-card-blue {
    background-color: #004882;
}

.step-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step-number {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.step-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.step-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.step-desc {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #FFFFFF;
    flex: 1;
}

.step-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    cursor: pointer;
}

.step-cta span {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.step-circle {
    width: 45px;
    height: 45px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.step-circle svg {
    width: 55px;
    height: auto;
    pointer-events: none;
}

.step-cta:hover span {
    opacity: 0.8;
}

.step-cta:hover .step-circle,
.step-circle:hover {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px #FFFFFF;
}

/* ── Portfolio Section ───────────────────────────────────── */
.portfolio-section {
    width: 100%;
    margin-top: 80px;
    padding: 80px 102px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border: none;
    border-top: none !important;
}

.portfolio-inner {
    max-width: 1236px;
    margin: 0 auto;
    position: relative;
}

/* Decorative hollow circle — top right corner */
.portfolio-deco-circle { display: none; }

/* Decorative vertical line — left side */
.portfolio-deco-line-v { display: none; }

.portfolio-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.portfolio-header-left {
    flex: 1;
}

.portfolio-header-right {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
    border-left: 3px solid #004882;
    padding-left: 28px;
}

.portfolio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.portfolio-line {
    width: 30px;
    height: 2px;
    background-color: #004882;
    display: block;
}

.portfolio-label span:last-child {
    font-family: 'Afacad', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #004882;
    font-weight: 600;
}

.portfolio-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 48px;
    color: #111111;
    margin-bottom: 16px;
}

.portfolio-subtitle {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #666666;
    max-width: 600px;
}

.portfolio-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.portfolio-stat-number {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: #004882;
}

.portfolio-stat-label {
    font-family: 'Afacad', sans-serif;
    font-size: 19px;
    line-height: 26px;
    color: #666666;
}

.portfolio-stat-divider {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.1);
}

.portfolio-video {
    width: 100%;
    max-width: 75%;
    margin: 0 auto 24px auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.portfolio-video video {
    width: 100%;
    display: block;
    border-radius: 8px;
    max-height: 320px;
    object-fit: cover;
    background: #000;
}

.portfolio-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    padding: 24px 28px;
    border-radius: 0 0 8px 8px;
}

.portfolio-video-tag {
    display: inline-block;
    font-family: 'Afacad', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background-color: #004882;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.portfolio-video-desc {
    font-family: 'Afacad', sans-serif;
    font-size: 17px;
    line-height: 24px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Slideshow */
.portfolio-slideshow {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.portfolio-slide-track-wrap {
    overflow: hidden;
    flex: 1;
}

.portfolio-slide-track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.portfolio-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.portfolio-slide-dot.active {
    background: #004882;
    transform: scale(1.3);
}


.portfolio-item {
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
    cursor: pointer;
    flex-shrink: 0;
    height: 360px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%) brightness(0.85);
    transition: transform 0.6s ease, filter 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(1);
}

.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    transition: background 0.4s ease;
    pointer-events: none;
}

.portfolio-item-label {
    padding: 24px;
    transform: translateY(12px);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-item-label {
    transform: translateY(0);
}

.portfolio-item-tag {
    display: inline-block;
    font-family: 'Afacad', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background-color: #004882;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.portfolio-item-desc {
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.portfolio-item:hover .portfolio-item-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive: Portfolio */
@media (max-width: 1440px) {
    .portfolio-section { padding: 80px 60px; }
    .portfolio-item { height: 300px; }
}

@media (max-width: 1023px) {
    .portfolio-section { padding: 60px 24px; margin-top: 60px; }
    .portfolio-header { flex-direction: column; gap: 32px; }
    .portfolio-header-right { width: 100%; flex-direction: row; gap: 32px; align-items: flex-start; }
    .portfolio-stat-divider { width: 1px; height: auto; align-self: stretch; }
    .portfolio-item { height: 260px; }
}

@media (max-width: 767px) {
    .portfolio-section { padding: 50px 20px; margin-top: 60px; }
    .portfolio-title { font-size: 28px; line-height: 36px; }
    .portfolio-subtitle { font-size: 17px; }
    .portfolio-header-right { flex-direction: column; gap: 20px; }
    .portfolio-stat-divider { width: 100%; height: 1px; }
    .portfolio-stat-number { font-size: 34px; }
    .portfolio-item { height: 220px; }
    .portfolio-video { max-width: 100%; }
    .portfolio-video video { max-height: 480px; }
    .portfolio-video-overlay { display: none; }
}

@media (max-width: 479px) {
    .portfolio-section { padding: 40px 16px; margin-top: 50px; }
    .portfolio-title { font-size: 24px; }
    .portfolio-subtitle { font-size: 16px; }
    .portfolio-item { height: 180px; }
    .portfolio-video { max-width: 100%; }
    .portfolio-video video { max-height: 420px; }
    .portfolio-video-overlay { display: none; }
}

/* ── Portfolio Lightbox ──────────────────────────────────── */
.portfolio-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.portfolio-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.portfolio-lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.portfolio-lightbox.open .portfolio-lightbox-img {
    transform: scale(1);
}

.portfolio-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
}

.portfolio-lightbox-close:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

.portfolio-lightbox-prev { left: 20px; }
.portfolio-lightbox-next { right: 20px; }

.portfolio-lightbox-prev:hover,
.portfolio-lightbox-next:hover {
    background: rgba(0, 72, 130, 0.7);
    border-color: #004882;
}

.portfolio-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

/* Reviews Section */
.reviews-section {
    width: 100%;
    min-height: 678px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 60px 0 80px 0;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/what-contractors-say.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
    z-index: 1;
}

.reviews-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 53px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.reviews-subtitle {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    color: #FFFFFF;
    text-align: center;
}

.reviews-slider-wrap {
    width: 100%;
    max-width: 1162px;
    overflow: hidden;
    z-index: 1;
}

.reviews-cards {
    display: flex;
    gap: 0;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.review-slide {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}

.review-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 32px 32px 28px 32px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
    min-height: 320px;
}

.review-card:hover {
    background: rgba(255, 255, 255, 1);
}

.review-card .review-text {
    flex: 1;
    min-height: 160px;
    padding-bottom: 8px;
}

.review-card .review-author {
    margin-top: auto;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.review-card--loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-stars {
    display: flex;
    gap: 5px;
    align-items: center;
}

.review-time {
    font-family: 'Afacad', sans-serif;
    font-size: 14px;
    color: #888;
    margin-top: 6px;
}

.review-text {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #1E1E1E;
    margin: 16px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 59px;
    height: 59px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-avatar--initials {
    width: 59px;
    height: 59px;
    border-radius: 50%;
    background: #004882;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}

.review-name {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #0B508B;
}

.review-role {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #0B508B;
}

.reviews-dots {
    display: flex;
    gap: 8px;
    margin-top: 30px;
    z-index: 1;
    position: relative;
    justify-content: center;
}

.reviews-dot {
    width: 23px;
    height: 6px;
    background-color: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
    border: none;
    padding: 0;
}

.reviews-dot.active {
    background-color: #ffffff;
    width: 36px;
}

/* Contact Section */
.contact-section {
    width: 100%;
    max-width: 1440px;
    margin: 80px auto 0 auto;
    padding: 0 102px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 53px;
    color: #1E1E1E;
    margin-bottom: 8px;
}

.contact-subtitle {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    color: #000000;
    text-align: center;
}

.contact-body {
    display: flex;
    gap: 120px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-left {
    width: 485px;
    flex-shrink: 0;
}

.contact-left-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 37px;
    color: #000000;
    margin-bottom: 16px;
}

.contact-map {
    width: 485px;
    height: 277px;
    object-fit: cover;
    display: block;
    margin-bottom: 24px;
}

.contact-details-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 37px;
    color: #000000;
    margin-bottom: 12px;
}

.contact-details-text {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}

.contact-email-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: -8px;
}

.contact-socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-socials svg {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.contact-right {
    flex: 1;
}

.contact-right-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 37px;
    color: #000000;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.contact-form-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.contact-field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
    width: 100%;
}

.contact-label {
    font-family: 'Afacad', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
}

.contact-input {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    padding: 0 16px;
    height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    outline: none;
    background: white;
    box-sizing: border-box;
    width: 100%;
}

.contact-input.half {
    width: 100%;
}

.contact-input.full {
    width: 100%;
}

.contact-textarea {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    padding: 16px;
    height: 187px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    outline: none;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-respond {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
}

.contact-submit {
    background-color: #004882;
    color: #FFFFFF;
    font-family: 'Afacad', sans-serif;
    font-size: 17px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    height: 55px;
}

.contact-submit:hover {
    background-color: #003a6b;
}

/* Book Section */
.book-section {
    width: 100%;
    background-color: #004882;
    min-height: 436px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 240px;
    padding: 60px 102px;
    margin-top: 80px;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
}

.book-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.04) 80px,
            rgba(255, 255, 255, 0.04) 81px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.04) 80px,
            rgba(255, 255, 255, 0.04) 81px
        );
    z-index: 0;
    pointer-events: none;
}

.book-left {
    max-width: 480px;
    z-index: 1;
    align-self: center;
}

.book-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.book-desc {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.book-list {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.book-list li {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

.book-card {
    background: #004882;
    box-shadow: 0px 0px 35px rgba(10, 133, 255, 0.15);
    border-radius: 14px;
    width: 380px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    flex-shrink: 0;
    margin-top: auto;
    margin-right: 0;
    align-self: flex-end;
}

.book-card-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #F1F5F9;
    text-align: center;
    margin-bottom: 8px;
}

.book-card-subtitle {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #94A3B8;
    text-align: center;
    margin-bottom: 20px;
}

.book-card-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.book-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.book-meta-item span {
    font-family: 'Afacad', sans-serif;
    font-size: 14px;
    color: #94A3B8;
}

.book-phone-number {
    display: block;
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.book-phone-number:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.book-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #0A85FF 0%, #0DA2E7 100%);
    color: #FFFFFF;
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 16px;
}

.book-btn:hover {
    opacity: 0.9;
}

.book-direct {
    font-family: 'Afacad', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
}

.book-direct a {
    font-size: 22px;
    font-weight: 700;
    display: block;
    margin-top: 6px;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 1px;
}

.book-direct a:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* Footer */
.footer {
    background-color: #1E1E1E;
    padding: 60px 102px 30px 102px;
    margin-top: 0;
}

.footer-body {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-left {
    max-width: 420px;
}

.footer-logo {
    width: 250px;
    height: auto;
    margin-bottom: 24px;
    display: block;
}

.footer-desc {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.footer-serving {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    margin-right: 100px;
}

.footer-links-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 37px;
    color: #FFFFFF;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-contact-row {
    display: flex;
    gap: 24px;
}

.footer-contact-row a {
    font-family: 'Afacad', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-contact-row a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Clickable phone/email link styles */
.contact-details-text a {
    color: #000000;
    text-decoration: none;
}

.contact-details-text a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.book-direct a {
    color: #FFFFFF;
    text-decoration: none;
}

.book-direct a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-left {
    display: flex;
    gap: 32px;
}

.footer-bottom-left a {
    font-family: 'Afacad', sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-bottom-left a:hover {
    opacity: 0.7;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-follow {
    font-family: 'Afacad', sans-serif;
    font-size: 28px;
    color: #FFFFFF;
}

.footer-bottom-right a {
    display: flex;
    align-items: center;
}

.footer-bottom-right a:hover svg {
    opacity: 0.7;
}

.footer-bottom-right svg {
    cursor: pointer;
}

.footer-bottom-right svg:hover {
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 20px;
}

.footer-copyright p {
    font-family: 'Afacad', sans-serif;
    font-size: 22px;
    color: #FFFFFF;
}

/* ============================================
   BURGER MENU STYLES
   ============================================ */

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    gap: 0;
    z-index: 2000;
    flex-shrink: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

.burger-menu span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    margin: 4px 0;
    flex-shrink: 0;
}

.burger-menu.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-menu.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
}

.mobile-menu a {
    font-family: 'Afacad', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 2px;
}

.mobile-menu a:hover {
    color: #004882;
}

.mobile-menu .mobile-menu-cta {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 28px;
    cursor: pointer;
}

.mobile-menu .mobile-menu-cta span {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
}

/* hero-top: title + slogan block — hidden on desktop, shown on mobile */
.hero-top {
    display: none;
}

/* Mobile-only title/slogan inside hero-top */
.hero-title-mobile {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 10px;
}

.hero-slogan-mobile {
    font-family: 'Afacad', sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 0;
}

/* Larger form labels on mobile */
@media (max-width: 1440px) {
    .form-group label { font-size: 16px; }
}

/* ============================================
   INTERMEDIATE DESKTOP: 1025px – 1440px
   CSS grid: navbar full-width top row,
   content (left, blue bg) + form (right) bottom row.
   ============================================ */
@media (min-width: 1025px) and (max-width: 1440px) {

    /* Grid: row 1 = navbar, row 2 = content + gap + form */
    .hero {
        display: grid !important;
        grid-template-rows: auto 1fr;
        grid-template-columns: 1fr clamp(340px, 36vw, 495px);
        column-gap: 40px;
        min-height: 100vh;
        height: auto;
        overflow: visible;
        position: relative;
        align-items: unset;
        flex-direction: unset;
        padding-bottom: 0;
    }

    /* bg image covers everything */
    .hero::before { background-position: center top; }

    /* Light tint over photo */
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.2);
        z-index: 1;
        pointer-events: none;
    }

    /* Hide absolute-only desktop overlays */
    .hero-blue-overlay  { display: none; }
    .hero-divider       { display: none; }
    .hero-divider-right { display: none; }
    .hero-top           { display: none !important; }

    /* Keep desktop nav */
    .nav-links   { display: flex; }
    .nav-cta     { display: flex; }
    .burger-menu { display: none; }

    /* ── Row 1: Navbar spans both columns ── */
    .navbar {
        position: relative !important;
        top: auto; left: auto; right: auto;
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
        padding: 0 24px;
        min-height: 75px;
        z-index: 10;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .nav-logo img {
        width: clamp(140px, 14vw, 275px);
    }

    .nav-links {
        gap: clamp(10px, 1.6vw, 40px);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-links a {
        font-size: clamp(11px, 1.1vw, 18px);
        white-space: nowrap;
    }

    .nav-cta { gap: clamp(8px, 1vw, 24px); }

    .nav-cta span {
        font-size: clamp(10px, 1vw, 18px);
        white-space: nowrap;
    }

    .nav-cta-circle {
        width: clamp(32px, 3.2vw, 59px);
        height: clamp(32px, 3.2vw, 59px);
        flex-shrink: 0;
    }

    /* ── Row 2 left: content pinned to bottom with blue bg ── */
    .hero-content {
        position: relative !important;
        top: auto !important; left: auto !important; right: auto !important;
        grid-column: 1;
        grid-row: 2;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0;
        box-sizing: border-box;
        pointer-events: all;
        min-width: 0;
        background: transparent;
    }

    /* Transparent spacer — fix max-height to control how much transparent space sits above the blue box */
    .hero-content::before {
        content: '';
        display: block;
        flex-shrink: 0;
        height: 200px;
    }

    .hero-content::after { display: none; }

    /* Title — no margin-top, spacer above handles positioning */
    .hero-title { margin-top: 0 !important; }

    /* Title */
    .hero-title {
        position: relative !important;
        top: auto !important; left: auto !important;
        width: 100% !important;
        font-size: clamp(26px, 3vw, 48px);
        line-height: 1.1;
        text-align: center;
        margin-bottom: 0;
        display: block !important;
        padding: 32px 48px 0 48px;
        box-sizing: border-box;
        background-color: rgba(0, 72, 130, 0.82);
    }

    /* Slogan */
    .hero-slogan {
        position: relative !important;
        top: auto !important; left: auto !important;
        width: 100% !important;
        font-size: clamp(11px, 1.1vw, 16px);
        text-align: center;
        margin: 0;
        display: block !important;
        padding: 8px 48px 0 48px;
        box-sizing: border-box;
        background-color: rgba(0, 72, 130, 0.82);
    }

    /* Tagline */
    .hero-tagline {
        position: relative !important;
        top: auto !important; left: auto !important;
        width: 100% !important;
        font-size: clamp(15px, 1.5vw, 22px);
        line-height: 1.5;
        text-align: left;
        margin: 0;
        padding: 20px 48px 0 48px;
        box-sizing: border-box;
        background-color: rgba(0, 72, 130, 0.82);
    }

    /* CTA — arrow on the RIGHT like desktop */
    .hero-cta {
        position: relative !important;
        top: auto !important; left: auto !important;
        margin: 0;
        justify-content: flex-end;
        gap: clamp(16px, 2vw, 40px);
        pointer-events: all;
        display: flex;
        align-items: center;
        white-space: nowrap;
        padding: 24px 48px 44px 48px;
        box-sizing: border-box;
        background-color: rgba(0, 72, 130, 0.82);
        width: 100%;
    }

    .hero-cta span { font-size: clamp(13px, 1.3vw, 18px); }
    .hero-cta-circle {
        width: clamp(44px, 4.5vw, 59px);
        height: clamp(44px, 4.5vw, 59px);
    }

    /* ── Row 2 right: form ── */
    .hero-form {
        position: relative !important;
        top: auto !important; left: auto !important; right: auto !important;
        grid-column: 2;
        grid-row: 2;
        width: 100% !important;
        min-height: unset !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 36px 28px 28px 28px;
        background-color: rgba(0, 0, 0, 0.55);
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 8px;
        box-sizing: border-box;
        pointer-events: all;
        justify-content: center;
        flex-shrink: 0;
        overflow: visible;
    }

    .form-title    { font-size: clamp(20px, 2.2vw, 34px); }
    .form-subtitle { font-size: clamp(12px, 1.2vw, 16px); }
    .form-btn      { font-size: clamp(13px, 1.4vw, 18px); }
    .form-group label { font-size: clamp(11px, 1.1vw, 14px); }
    .form-group input,
    .form-group textarea {
        font-size: clamp(13px, 1.3vw, 16px);
        padding: 8px 12px;
    }
    .form-row { flex-direction: row; gap: 12px; }

    /* ── Services strip: wrap at intermediate widths ── */
    .services-strip {
        flex-wrap: wrap;
        gap: 10px 24px;
        padding: 14px 40px;
        justify-content: center;
    }
    .services-strip a { font-size: clamp(13px, 1.3vw, 18px); white-space: nowrap; }

    /* ── Complete Safety: stack panels vertically ── */
    .complete-safety {
        height: auto;
        flex-direction: column;
        padding-bottom: 0;
    }
    .cs-left {
        position: relative;
        left: auto;
        top: auto;
        width: calc(100% - 80px);
        margin: 40px auto;
    }
    .cs-title  { font-size: clamp(24px, 2.8vw, 40px); width: 100%; line-height: 1.2; }
    .cs-subtitle { font-size: clamp(16px, 1.6vw, 22px); width: 100%; }
    .cs-right {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: stretch;
    }
    .cs-dark-panel { width: 100%; height: auto; padding: 40px 40px; }
    .cs-blue-panel { width: 100%; height: auto; padding: 40px 40px; margin-top: 0; align-self: auto; }
    .cs-menu-item  { font-size: clamp(16px, 1.6vw, 22px); }
}

/* ─── 1023px and below (Tablet Portrait) ─── */
@media (max-width: 1024px) {
    .navbar { position: relative; top: auto; left: auto; right: auto; width: 100%; padding: 16px 40px; box-sizing: border-box; display: flex; align-items: flex-start; justify-content: space-between; order: 0; z-index: 10; }
    .burger-menu { margin-top: 8px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .burger-menu { display: flex; }
    .mobile-menu { display: flex; }
    .hero { height: auto; min-height: 100vh; display: flex; flex-direction: column; padding-bottom: 60px; position: relative; }
    .hero::before { background-position: center top; filter: grayscale(100%); }
    .hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(40,45,52,0.72) 0%, rgba(35,40,50,0.7) 25%, rgba(20,35,65,0.78) 55%, rgba(0,60,120,0.88) 75%, rgba(0,72,130,0.95) 100%); z-index: 1; pointer-events: none; }
    .hero-blue-overlay { display: none; }
    .hero-divider { display: none; }
    .hero-divider-right { display: none; }
    .hero-top { display: block; order: 1; z-index: 2; padding: 48px 40px 48px 40px; width: 100%; box-sizing: border-box; text-align: center; }
    .hero-content .hero-title { display: none; }
    .hero-content .hero-slogan { display: none; }
    .hero-title-mobile { font-size: 48px; line-height: 52px; margin-bottom: 10px; }
    .hero-slogan-mobile { font-size: 18px; display: block; }
    .hero-content { position: relative !important; top: auto !important; left: auto !important; right: auto !important; z-index: 2; padding: 40px 40px; width: 100% !important; box-sizing: border-box; pointer-events: all; margin-top: auto; order: 3; }
    .hero-title { position: relative !important; top: auto !important; left: auto !important; width: 100% !important; font-size: 42px; line-height: 46px; margin-bottom: 10px; text-align: center; }
    .hero-slogan { position: relative !important; top: auto !important; left: auto !important; width: 100% !important; font-size: 16px; margin-bottom: 14px; text-align: center; }
    .hero-tagline { position: relative !important; top: auto !important; left: auto !important; width: 100% !important; font-size: 22px; margin-bottom: 0; text-align: left; }
    .hero-subtitle { position: relative; top: auto !important; left: auto !important; width: 100%; font-size: 22px; margin-bottom: 24px; }
    .hero-cta { position: relative; top: auto !important; left: auto !important; pointer-events: all; margin-top: 28px; }
    .hero-form { position: relative !important; left: auto !important; right: auto !important; top: auto !important; width: 100% !important; min-height: unset !important; margin: 0 !important; margin-left: 0 !important; margin-right: 0 !important; margin-top: 0 !important; height: auto !important; z-index: 2; padding: 40px 40px; pointer-events: all; order: 2; flex-shrink: 1; }
    .what-you-get { height: auto; padding: 40px 40px; }
    .wyg-content { width: 400px; }
    .wyg-image { width: 450px; }
    .complete-safety { height: auto; }
    .cs-left { width: 400px; }
    .cs-title { font-size: 30px; width: 380px; }
    .cs-subtitle { width: 380px; font-size: 18px; }
    .cs-dark-panel { width: 280px; }
    .cs-blue-panel { width: 360px; }
    .steps-section { padding: 0 40px; }
    .steps-timeline { padding: 0 80px; }
    .reviews-slider-wrap { max-width: 95%; }
    .contact-section { padding: 0 40px; }
    .contact-body { gap: 60px; }
    .contact-map { width: 100%; }
    .contact-left { width: 380px; }
    .book-section { gap: 60px; padding: 60px 60px; }
    .book-card { width: 320px; }
    .footer { padding: 60px 60px 30px 60px; }
}

/* ─── 1023px and below (Tablet Portrait) ─── */
@media (max-width: 1023px) {
    .navbar { position: relative; top: auto; left: auto; right: auto; width: 100%; padding: 16px 24px; box-sizing: border-box; display: flex; align-items: flex-start; justify-content: space-between; order: 0; z-index: 10; }
    .hero { height: auto; min-height: 100vh; display: flex; flex-direction: column; padding-bottom: 60px; position: relative; }
    .hero::before { background-size: cover; background-position: center 10%; filter: grayscale(100%); }
    .hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(40,45,52,0.72) 0%, rgba(35,40,50,0.7) 25%, rgba(20,35,65,0.78) 55%, rgba(0,60,120,0.88) 75%, rgba(0,72,130,0.95) 100%); z-index: 1; pointer-events: none; }
    .hero-blue-overlay { display: none; }
    .hero-divider { display: none; }
    .hero-divider-right { display: none; }
    .hero-top { display: block; order: 1; z-index: 2; padding: 40px 24px 40px 24px; width: 100%; box-sizing: border-box; text-align: center; }
    .hero-content .hero-title { display: none; }
    .hero-content .hero-slogan { display: none; }
    .hero-title-mobile { font-size: 46px; line-height: 50px; margin-bottom: 10px; }
    .hero-slogan-mobile { font-size: 17px; display: block; }
    .hero-top .hero-title { position: relative; top: auto; left: auto; width: 100%; font-size: 40px; line-height: 44px; margin-bottom: 8px; text-align: center; }
    .hero-top .hero-slogan { position: relative; top: auto; left: auto; width: 100%; font-size: 15px; text-align: center; }
    .hero-content { position: relative !important; top: auto !important; left: auto !important; right: auto !important; z-index: 2; padding: 36px 24px; width: 100% !important; box-sizing: border-box; pointer-events: all; margin-top: auto; order: 3; }
    .hero-title { position: relative !important; top: auto !important; left: auto !important; width: 100% !important; font-size: 40px; line-height: 44px; margin-bottom: 10px; text-align: center; }
    .hero-slogan { position: relative !important; top: auto !important; left: auto !important; width: 100% !important; font-size: 15px; margin-bottom: 12px; text-align: center; }
    .hero-tagline { position: relative !important; top: auto !important; left: auto !important; width: 100% !important; font-size: 20px; margin-bottom: 0; text-align: left; }
    .hero-subtitle { position: relative; top: auto; left: auto; width: 100%; font-size: 20px; margin-bottom: 24px; }
    .hero-cta { position: relative; top: auto; left: auto; pointer-events: all; margin-top: 28px; }
    .hero-form { position: relative !important; left: auto !important; right: auto !important; top: auto !important; width: 100% !important; min-height: unset !important; margin: 0 !important; margin-left: 0 !important; margin-right: 0 !important; margin-top: 0 !important; height: auto !important; z-index: 2; padding: 36px 24px; gap: 10px; pointer-events: all; order: 2; flex-shrink: 1; }
    .form-row { flex-direction: column; gap: 10px; }
    .form-group { width: 100%; }
    .form-group input, .form-group textarea { width: 100%; box-sizing: border-box; }
    .form-group.full { width: 100%; }
    .services-strip { width: 95%; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .what-you-get { flex-direction: column; height: auto; padding: 40px 24px; gap: 30px; }
    .wyg-content { width: 100%; }
    .wyg-image { width: 100%; height: 300px; }
    .wyg-item-desc { width: 100%; }
    .complete-safety { height: auto; flex-direction: column; padding-bottom: 0; }
    .complete-safety::before { background-position: 50% 20%; background-size: cover; }
    .cs-left { position: relative; left: auto; top: auto; width: 90%; margin: 40px auto; }
    .cs-right { position: relative; right: auto; bottom: auto; width: 100%; height: auto; flex-direction: column; align-items: stretch; }
    .cs-dark-panel { width: 100%; height: auto; padding: 40px 24px; }
    .cs-blue-panel { width: 100%; height: auto; padding: 40px 24px; margin-top: 0; align-self: auto; }
    .cs-title { width: 100%; font-size: 28px; line-height: 34px; }
    .cs-subtitle { width: 100%; font-size: 18px; }
    .steps-section { padding: 0 24px; }
    .steps-timeline { padding: 0 40px; }
    .steps-cards { flex-direction: column; gap: 16px; }
    .step-card { min-height: auto; }
    .reviews-section { height: auto; padding: 60px 24px; }
    .reviews-slider-wrap { max-width: 100%; }
    .contact-section { padding: 0 24px; }
    .contact-body { flex-direction: column; gap: 40px; }
    .contact-left { width: 100%; }
    .contact-map { width: 100%; }
    .contact-right { width: 100%; }
    .contact-form-row { flex-direction: column; gap: 0; }
    .contact-field-group { width: 100%; margin-bottom: 14px; }
    .contact-input, .contact-input.half, .contact-input.full { width: 100%; box-sizing: border-box; }
    .contact-textarea { width: 100%; box-sizing: border-box; }
    .contact-form-footer { flex-direction: column; gap: 20px; align-items: flex-start; }
    .contact-submit { width: 100%; }
    .book-section { flex-direction: column; gap: 40px; padding: 60px 24px; align-items: flex-start; }
    .book-left { max-width: 100%; align-self: auto; }
    .book-card { width: 100%; margin-right: 0; margin-top: 0; align-self: auto; }
    .footer { padding: 40px 24px 24px 24px; }
    .footer-body { flex-direction: column; gap: 40px; }
    .footer-right { margin-top: 0; margin-right: 0; }
    .footer-nav { flex-wrap: wrap; gap: 16px; }
    .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* ─── 767px and below (Mobile Large) ─── */
@media (max-width: 767px) {
    .reviews-dots { display: none; }
    .navbar { position: relative; top: auto; left: auto; right: auto; width: 100%; padding: 12px 16px; box-sizing: border-box; display: flex; align-items: flex-start; justify-content: space-between; order: 0; z-index: 10; }
    .nav-logo img { width: 180px; height: auto; }
    .burger-menu { align-self: flex-start; margin-top: 8px; }
    .hero { height: auto; min-height: 100vh; display: flex; flex-direction: column; padding-bottom: 40px; position: relative; }
    .hero::before { background-size: cover; background-position: top center; filter: grayscale(100%); }
    .hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(40,45,52,0.72) 0%, rgba(35,40,50,0.7) 25%, rgba(20,35,65,0.78) 55%, rgba(0,60,120,0.88) 75%, rgba(0,72,130,0.95) 100%); z-index: 1; pointer-events: none; }
    .hero-blue-overlay { display: none; }
    .hero-top { display: block; order: 1; z-index: 2; padding: 36px 20px 36px 20px; width: 100%; box-sizing: border-box; text-align: center; }
    .hero-content .hero-title { display: none; }
    .hero-content .hero-slogan { display: none; }
    .hero-title-mobile { font-size: 42px; line-height: 46px; margin-bottom: 10px; }
    .hero-slogan-mobile { font-size: 16px; display: block; }
    .hero-top .hero-title { position: relative; top: auto; left: auto; width: 100%; font-size: 36px; line-height: 40px; margin-bottom: 6px; text-align: center; }
    .hero-top .hero-slogan { position: relative; top: auto; left: auto; width: 100%; font-size: 14px; text-align: center; }
    .hero-content { position: relative !important; top: auto !important; left: auto !important; right: auto !important; z-index: 2; padding: 32px 20px; width: 100% !important; box-sizing: border-box; pointer-events: all; margin-top: auto; order: 3; }
    .hero-title { position: relative !important; top: auto !important; left: auto !important; width: 100% !important; font-size: 36px; line-height: 40px; margin-bottom: 8px; text-align: center; }
    .hero-slogan { position: relative !important; top: auto !important; left: auto !important; width: 100% !important; font-size: 15px; margin-bottom: 10px; text-align: center; }
    .hero-tagline { position: relative !important; top: auto !important; left: auto !important; width: 100% !important; font-size: 19px; line-height: 26px; margin-bottom: 0; text-align: left; }
    .hero-subtitle { position: relative; top: auto; left: auto; width: 100%; font-size: 19px; line-height: 26px; margin-bottom: 20px; }
    .hero-cta { position: relative; top: auto; left: auto; gap: 16px; margin-top: 24px; }
    .hero-cta span { font-size: 20px; }
    .hero-cta-circle { width: 52px; height: 52px; }
    .hero-form { position: relative !important; left: auto !important; right: auto !important; top: auto !important; width: 100% !important; min-height: unset !important; margin: 0 !important; margin-left: 0 !important; margin-right: 0 !important; margin-top: 0 !important; height: auto !important; z-index: 3; padding: 32px 20px; gap: 10px; order: 2; flex-shrink: 1; }
    .form-row { flex-direction: column; gap: 10px; }
    .form-group { width: 100%; }
    .form-group input, .form-group textarea { width: 100%; box-sizing: border-box; font-size: 18px; }
    .form-group.full { width: 100%; }
    .form-title { font-size: 32px; }
    .form-subtitle { font-size: 18px; }
    .form-btn { font-size: 20px; padding: 16px; }
    .services-strip { flex-direction: column; align-items: center; gap: 10px; padding: 12px 0; }
    .services-strip a { font-size: 18px; }
    .what-you-get { padding: 32px 20px; gap: 24px; }
    .wyg-title { font-size: 30px; }
    .wyg-subtitle { font-size: 18px; }
    .wyg-image { height: 220px; }
    .wyg-item-desc { width: 100%; font-size: 15px; }
    .complete-safety { height: auto; min-height: unset; padding: 0; }
    .complete-safety::before { background-position: 50% 0%; background-size: cover; }
    .cs-left { width: calc(100% - 40px); margin: 32px auto; }
    .cs-title { font-size: 26px; line-height: 32px; width: 100%; }
    .cs-subtitle { font-size: 16px; width: 100%; }
    .steps-section { padding: 0 20px; margin-top: 60px; }
    .steps-title { font-size: 28px; }
    .steps-subtitle { font-size: 16px; }
    .steps-timeline { display: none; }
    .steps-cards { flex-direction: column; gap: 16px; }
    .step-card { padding: 24px 20px; }
    .step-title { font-size: 22px; }
    .reviews-section { height: auto; padding: 50px 20px; }
    .reviews-title { font-size: 28px; }
    .reviews-subtitle { font-size: 16px; }
    .reviews-slider-wrap { max-width: 100%; }
    .review-card { padding: 24px 20px; }
    .review-text { font-size: 17px; }
    .contact-section { padding: 0 20px; margin-top: 60px; }
    .contact-title { font-size: 30px; }
    .contact-subtitle { font-size: 17px; }
    .contact-details-text { font-size: 17px; line-height: 26px; }
    .contact-email-row { flex-direction: row; align-items: center; justify-content: space-between; }
    .contact-form-row { flex-direction: column; gap: 0; }
    .contact-field-group { width: 100%; margin-bottom: 14px; }
    .contact-input, .contact-input.half, .contact-input.full { width: 100%; box-sizing: border-box; }
    .contact-textarea { width: 100%; box-sizing: border-box; }
    .contact-form-footer { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 8px; }
    .contact-submit { width: 100%; padding: 16px; }
    .book-section { flex-direction: column; gap: 36px; padding: 50px 20px; align-items: flex-start; margin-top: 60px; }
    .book-left { max-width: 100%; align-self: auto; }
    .book-title { font-size: 28px; }
    .book-desc { font-size: 17px; }
    .book-card { width: 100%; margin-right: 0; margin-top: 0; padding: 24px 20px; align-self: auto; }
    .footer { padding: 36px 20px 20px 20px; }
    .footer-body { flex-direction: column; gap: 36px; }
    .footer-right { margin-top: 0; margin-right: 0; }
    .footer-links-title { font-size: 22px; }
    .footer-nav { flex-wrap: wrap; gap: 12px; }
    .footer-contact-row { flex-direction: column; gap: 8px; }
    .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
    .footer-bottom-left { flex-direction: column; gap: 10px; }
    .footer-follow { font-size: 20px; }
    .footer-copyright p { font-size: 16px; }
}

/* ─── 479px and below (Small Mobile) ─── */
@media (max-width: 479px) {
    .navbar { position: relative; top: auto; left: auto; right: auto; width: 100%; padding: 10px 14px; box-sizing: border-box; display: flex; align-items: flex-start; justify-content: space-between; order: 0; z-index: 10; }
    .nav-logo img { width: 150px; height: auto; }
    .burger-menu { align-self: flex-start; margin-top: 8px; }
    .nav-cta-circle { width: 40px; height: 40px; }
    .hero { height: auto; min-height: 100vh; display: flex; flex-direction: column; padding-bottom: 32px; }
    .hero::before { background-size: cover; background-position: top center; }
    .hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(40,45,52,0.72) 0%, rgba(35,40,50,0.7) 25%, rgba(20,35,65,0.78) 55%, rgba(0,60,120,0.88) 75%, rgba(0,72,130,0.95) 100%); z-index: 1; pointer-events: none; }
    .hero-top { display: block; order: 1; z-index: 2; padding: 28px 16px 28px 16px; width: 100%; box-sizing: border-box; text-align: center; }
    .hero-content .hero-title { display: none; }
    .hero-content .hero-slogan { display: none; }
    .hero-title-mobile { font-size: 38px; line-height: 42px; margin-bottom: 10px; }
    .hero-slogan-mobile { font-size: 15px; letter-spacing: 2px; display: block; }
    .hero-top .hero-title { position: relative; top: auto; left: auto; width: 100%; font-size: 32px; line-height: 36px; margin-bottom: 6px; text-align: center; }
    .hero-top .hero-slogan { position: relative; top: auto; left: auto; width: 100%; font-size: 13px; letter-spacing: 2px; text-align: center; }
    .hero-content { position: relative !important; top: auto !important; left: auto !important; right: auto !important; width: 100% !important; padding: 28px 16px; margin-top: auto; order: 3; }
    .hero-title { font-size: 32px; line-height: 36px; text-align: center; }
    .hero-slogan { font-size: 13px; letter-spacing: 2px; text-align: center; }
    .hero-tagline { font-size: 18px; line-height: 24px; text-align: left; }
    .hero-subtitle { font-size: 18px; line-height: 24px; }
    .hero-cta span { font-size: 18px; }
    .hero-cta-circle { width: 46px; height: 46px; }
    .hero-form { position: relative !important; left: auto !important; right: auto !important; top: auto !important; width: 100% !important; min-height: unset !important; margin: 0 !important; margin-left: 0 !important; margin-right: 0 !important; margin-top: 0 !important; height: auto !important; padding: 28px 16px; order: 2; flex-shrink: 1; }
    .form-title { font-size: 28px; }
    .form-subtitle { font-size: 17px; }
    .form-row { flex-direction: column; gap: 10px; }
    .form-group input, .form-group textarea { font-size: 18px; }
    .form-btn { font-size: 19px; }
    .services-strip a { font-size: 16px; }
    .wyg-title { font-size: 26px; }
    .wyg-subtitle { font-size: 16px; }
    .wyg-item-header strong { font-size: 17px; }
    .wyg-image { height: 200px; }
    .cs-left { width: calc(100% - 28px); margin: 28px auto; }
    .cs-title { font-size: 22px; line-height: 28px; }
    .cs-subtitle { font-size: 15px; }
    .cs-menu-item { font-size: 18px; }
    .cs-panel-text { font-size: 17px; }
    .steps-section { margin-top: 50px; padding: 0 16px; }
    .steps-header { margin-bottom: 28px; }
    .steps-title { font-size: 24px; line-height: 30px; }
    .steps-subtitle { font-size: 15px; }
    .step-card { padding: 20px 16px; }
    .step-title { font-size: 20px; line-height: 26px; }
    .step-desc { font-size: 15px; }
    .step-number { font-size: 24px; }
    .reviews-section { padding: 44px 16px; }
    .reviews-title { font-size: 24px; }
    .reviews-subtitle { font-size: 15px; }
    .reviews-slider-wrap { max-width: 100%; }
    .reviews-dots { display: none; }
    .review-card { padding: 20px 16px; }
    .review-text { font-size: 16px; line-height: 22px; }
    .review-name { font-size: 18px; }
    .review-role { font-size: 15px; }
    .contact-section { padding: 0 16px; margin-top: 50px; }
    .contact-header { margin-bottom: 36px; }
    .contact-title { font-size: 26px; }
    .contact-subtitle { font-size: 15px; }
    .contact-left-title, .contact-details-title, .contact-right-title { font-size: 22px; }
    .contact-details-text { font-size: 16px; }
    .contact-input { font-size: 16px; height: 48px; }
    .contact-textarea { font-size: 16px; height: 160px; }
    .contact-respond { font-size: 16px; }
    .contact-submit { font-size: 15px; }
    .contact-socials { gap: 14px; }
    .book-section { padding: 40px 16px; gap: 30px; margin-top: 50px; align-items: flex-start; }
    .book-title { font-size: 24px; }
    .book-desc { font-size: 16px; }
    .book-list li { font-size: 16px; }
    .book-card { padding: 20px 16px; border-radius: 10px; align-self: auto; }
    .book-card-title { font-size: 18px; }
    .book-btn { font-size: 16px; padding: 12px; }
    .book-direct { font-size: 11px; }
    .footer { padding: 28px 16px 16px 16px; }
    .footer-desc { font-size: 16px; }
    .footer-serving { font-size: 15px; }
    .footer-links-title { font-size: 20px; }
    .footer-nav a { font-size: 16px; }
    .footer-contact-row a { font-size: 18px; }
    .footer-bottom-left a { font-size: 16px; }
    .footer-copyright p { font-size: 13px; }
    .footer-follow { font-size: 18px; }
}

/* ─── 360px and below (Very Small Mobile) ─── */
@media (max-width: 360px) {
    .hero-title { font-size: 20px; line-height: 26px; }
    .hero-slogan { font-size: 10px; letter-spacing: 1px; }
    .hero-tagline { font-size: 14px; }
    .hero-subtitle { font-size: 14px; }
    .hero-form { left: auto; right: auto; width: 100%; margin: 20px auto 0 auto; padding: 18px 12px; }
    .form-title { font-size: 22px; }
    .navbar { left: 12px; right: 12px; }
    .steps-title { font-size: 22px; }
    .contact-title { font-size: 22px; }
    .book-title { font-size: 22px; }
    .book-section { padding: 36px 12px; }
    .footer { padding: 24px 12px 14px 12px; }
}

/* ============================================
   SERVICE MODAL
   ============================================ */

.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.service-modal-overlay.open {
    visibility: visible;
    opacity: 1;
}

.service-modal {
    background: #141414;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.service-modal-overlay.open .service-modal {
    transform: translateY(0);
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.service-modal-close:hover {
    background: rgba(255,255,255,0.1);
    border-color: #FFFFFF;
}

.service-modal-inner {
    display: flex;
    min-height: 480px;
}

.service-modal-left {
    flex: 1;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-modal-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.service-modal-line {
    width: 30px;
    height: 1px;
    background: #FFFFFF;
    display: block;
}

.service-modal-label span:last-child {
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-modal-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.service-modal-desc {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
}

.service-modal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-modal-list li {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    padding-left: 20px;
    position: relative;
}

.service-modal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 2px;
    background: #004882;
}

.service-modal-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    width: fit-content;
}

.service-modal-cta span {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.service-modal-circle {
    width: 59px;
    height: 59px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    flex-shrink: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.service-modal-cta:hover span {
    font-weight: 700;
}

.service-modal-cta:hover .service-modal-circle {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 2px #FFFFFF;
}

.service-modal-right {
    width: 280px;
    flex-shrink: 0;
    background: #004882;
    padding: 60px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    position: relative;
    overflow: visible;
}

.service-modal-right::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 35px solid rgba(255,255,255,0.1);
}

.service-modal-icon {
    font-size: 56px;
    line-height: 1;
}

.service-modal-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-modal-tag {
    font-family: 'Afacad', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255,255,255,0.12);
    padding: 8px 14px;
    border-left: 3px solid rgba(255,255,255,0.4);
}

@media (max-width: 767px) {
    .service-modal-inner { flex-direction: column; }
    .service-modal-right { width: 100%; padding: 32px 24px; flex-direction: row; flex-wrap: wrap; gap: 16px; }
    .service-modal-left { padding: 40px 24px; }
    .service-modal-title { font-size: 28px; }
}

/* ============================================
   MODAL OVERLAY
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay::-webkit-scrollbar { display: none; }

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal {
    background: #141414;
    width: 100%;
    max-width: 900px;
    overflow: visible;
    position: relative;
    transform: translateY(24px);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin: auto;
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal::-webkit-scrollbar { display: none; }

.modal-close {
    position: fixed;
    top: calc(50vh - 44vh);
    right: calc(50% - 450px + 12px);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    background: #141414;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
    pointer-events: all;
}

.modal-close:hover {
    background: rgba(255,255,255,0.15);
    border-color: #FFFFFF;
}

@media (max-width: 960px) {
    .modal-close { right: 12px; top: calc(6vh + 8px); }
}

.modal-hero {
    width: 100%;
    height: 140px;
    background-color: #004882;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    padding: 24px 40px;
}

.modal-hero::before { display: none; }
.modal-hero::after { display: none; }

.modal-hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    top: 32px;
    left: 48px;
}

.modal-hero-label span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
}

.modal-hero-line {
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.4);
}

.modal-hero h2 {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1;
    color: #FFFFFF;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.modal-body {
    padding: 32px 40px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.modal-body-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal-body-right {
    width: 280px;
    flex-shrink: 0;
}

.modal-intro {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: rgba(255,255,255,0.75);
    border-left: 3px solid #004882;
    padding-left: 16px;
}

.modal-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(20%);
    display: block;
}

.modal-section-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-section-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #004882;
    border-radius: 50%;
    flex-shrink: 0;
}

.modal-text {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: rgba(255,255,255,0.65);
}

.modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-feature-item {
    background: #2C2C2C;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 3px solid #004882;
}

.modal-feature-item strong {
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #FFFFFF;
}

.modal-feature-item p {
    font-family: 'Afacad', sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: rgba(255,255,255,0.55);
}

.modal-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 20px;
    flex-wrap: wrap;
}

.modal-cta-text {
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

.modal-cta-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-decoration: none;
}

.modal-cta-btn span {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.modal-cta-circle {
    width: 50px;
    height: 50px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    flex-shrink: 0;
    transition: background 0.2s, box-shadow 0.2s;
}

.modal-cta-btn:hover .modal-cta-circle {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 2px #FFFFFF;
}

@media (max-width: 767px) {
    .modal-hero { height: 120px; padding: 20px 24px; }
    .modal-hero h2 { font-size: 22px; }
    .modal-hero-label { top: 20px; left: 24px; }
    .modal-body { flex-direction: column; padding: 24px 20px; gap: 20px; }
    .modal-body-right { width: 100%; order: 1; }
    .modal-image { height: 180px; }
}

/* ============================================
   FORM VALIDATION & FEEDBACK
   ============================================ */

.req {
    color: #ff6b6b;
    margin-left: 2px;
}

.field-error {
    display: block;
    font-family: 'Afacad', sans-serif;
    font-size: 13px;
    color: #ff6b6b;
    margin-top: 4px;
    height: 18px;
    line-height: 18px;
    overflow: hidden;
}

.form-message {
    padding: 10px 16px;
    font-family: 'Afacad', sans-serif;
    font-size: 15px;
    border-left: 3px solid;
    margin: 0 0 8px 0;
    box-sizing: border-box;
}

.form-message--full {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    border-left: none;
    border: 2px solid #00c864;
    font-size: 16px;
    flex: 1;
}

.form-message--success {
    background: rgba(0, 200, 100, 0.12);
    border-color: #00c864;
    color: #00c864;
}

.form-message--error {
    background: rgba(255, 107, 107, 0.12);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff6b6b;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: #004882;
    outline: none;
}

.contact-input.error,
.contact-textarea.error {
    border-color: #ff6b6b;
}

.contact-form-summary {
    font-family: 'Afacad', sans-serif;
    font-size: 15px;
    padding: 10px 14px;
    border-left: 3px solid;
    margin-top: 4px;
}

.contact-form-summary--error {
    background: rgba(255, 107, 107, 0.08);
    border-color: #ff6b6b;
    color: #cc3333;
}

.contact-form-summary--success {
    background: rgba(0, 200, 100, 0.08);
    border-color: #00c864;
    color: #007a3d;
}

/* Reviews footer */
.reviews-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 0 48px 0;
    background: #004882;
}

.reviews-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    font-family: 'Afacad', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.reviews-footer-btn--outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.reviews-footer-btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.reviews-footer-btn--solid {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #004882;
}

.reviews-footer-btn--solid:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ── Legal Pages (Terms & Privacy) ───────────────────────── */

.legal-hero {
    background-color: #004882;
    padding-bottom: 60px;
}

.legal-hero .navbar {
    position: relative;
    top: auto; left: auto; right: auto;
    width: 100%;
    padding: 24px 102px;
    box-sizing: border-box;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.legal-hero .nav-logo a {
    display: block;
    line-height: 0;
}

.legal-hero-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 102px 0 102px;
}

.legal-eyebrow {
    font-family: 'Afacad', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.legal-title {
    font-family: 'Afacad', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.legal-meta {
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.55);
}

.legal-body {
    background-color: #f8f9fb;
    padding: 80px 0 100px 0;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 102px;
}

.legal-intro {
    font-family: 'Afacad', sans-serif;
    font-size: 19px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 52px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e2e6ea;
}

.legal-section {
    margin-bottom: 44px;
}

.legal-section h2 {
    font-family: 'Afacad', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #004882;
    margin-bottom: 12px;
}

.legal-section p {
    font-family: 'Afacad', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-contact-block {
    margin-top: 16px;
    padding: 24px 28px;
    background: #ffffff;
    border-left: 4px solid #004882;
    border-radius: 4px;
}

.legal-contact-block p {
    margin-bottom: 6px;
    font-size: 17px;
    color: #333333;
}

.legal-contact-block a {
    color: #004882;
    text-decoration: none;
}

.legal-contact-block a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .legal-hero .navbar    { padding: 20px 60px; }
    .legal-hero-content    { padding: 48px 60px 0 60px; }
    .legal-container       { padding: 0 60px; }
    .legal-title           { font-size: 42px; }
}

@media (max-width: 768px) {
    .legal-hero .navbar    { padding: 16px 24px; }
    .legal-hero-content    { padding: 40px 24px 0 24px; }
    .legal-container       { padding: 0 24px; }
    .legal-body            { padding: 56px 0 72px 0; }
    .legal-title           { font-size: 34px; }
    .legal-intro           { font-size: 17px; }
    .legal-section h2      { font-size: 20px; }
    .legal-section p       { font-size: 16px; }
}

@media (max-width: 480px) {
    .legal-hero .navbar    { padding: 12px 16px; }
    .legal-hero-content    { padding: 32px 16px 0 16px; }
    .legal-container       { padding: 0 16px; }
    .legal-body            { padding: 40px 0 60px 0; }
    .legal-title           { font-size: 28px; }
}