/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #10253f;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --navy: #09263f;
    --navy-dark: #061b2d;
    --blue: #0b5278;
    --blue-light: #167ca7;

    --ocean: #0085ad;

    --white: #ffffff;
    --off-white: #f7fafb;

    --cream: #f3eadb;
    --tan: #c9a66b;
    --brown: #735536;

    --text: #173047;
    --muted: #6c7c88;

    --border: #dce6eb;

    --shadow: 0 18px 50px rgba(8, 38, 63, 0.10);

    --radius: 18px;

}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(9, 38, 63, 0.08);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-symbol {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.logo-symbol::before,
.logo-symbol::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--tan);
    transform: rotate(45deg);
    opacity: 0.7;
}

.logo-symbol::before {
    top: 8px;
}

.logo-symbol::after {
    bottom: 8px;
}

.logo-symbol span {
    position: relative;
    z-index: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 15px;
    color: var(--navy);
}

.logo-text small {
    color: var(--blue);
    font-size: 8px;
    letter-spacing: 2px;
    margin-top: 5px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #435565;
    position: relative;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}

.nav-link:not(.nav-contact)::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tan);
    transition: 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact {
    background: var(--navy);
    color: white;
    padding: 11px 18px;
    border-radius: 6px;
}

.nav-contact:hover {
    color: white;
    background: var(--blue);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: var(--navy);
    cursor: pointer;
    padding: 9px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: white;
    margin: 5px 0;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 850px;
    padding-top: 150px;
    padding-bottom: 100px;
    background:
        radial-gradient(circle at 85% 25%, rgba(0, 133, 173, 0.14), transparent 30%),
        linear-gradient(135deg, #f7fafb 0%, #ffffff 55%, #eef6f8 100%);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    opacity: 0.12;
    background-image:
        linear-gradient(45deg, transparent 43%, var(--tan) 44%, var(--tan) 48%, transparent 49%),
        linear-gradient(-45deg, transparent 43%, var(--tan) 44%, var(--tan) 48%, transparent 49%);
    background-size: 45px 45px;
    mask-image: linear-gradient(to left, black, transparent);
}

.hero-container {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: white;
    border: 1px solid var(--border);
    padding: 8px 13px;
    border-radius: 30px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ocean);
    box-shadow: 0 0 0 5px rgba(0, 133, 173, 0.10);
}

.hero h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3px;
    color: var(--navy);
    max-width: 720px;
}

.hero h1 span {
    color: var(--blue);
    position: relative;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    left: 2px;
    bottom: -5px;
    width: 95%;
    height: 5px;
    background: var(--tan);
    transform: skewX(-20deg);
}

.hero-description {
    max-width: 620px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 52px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 5px;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--navy);
    color: white;
    box-shadow: 0 12px 25px rgba(9, 38, 63, 0.18);
}

.btn-primary:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid #b9cbd4;
    color: var(--navy);
    background: white;
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 55px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 17px;
    color: var(--navy);
}

.trust-item span {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-line {
    height: 35px;
    width: 1px;
    background: var(--border);
}


/* HERO VISUAL */

.hero-visual {
    min-height: 560px;
    position: relative;
    display: grid;
    place-items: center;
}

.island-circle {
    width: 410px;
    height: 410px;
    border-radius: 50%;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(201, 166, 107, 0.12) 0,
            rgba(201, 166, 107, 0.12) 3px,
            transparent 3px,
            transparent 15px
        ),
        var(--navy);
    box-shadow:
        0 35px 70px rgba(9, 38, 63, 0.25),
        inset 0 0 0 14px rgba(255, 255, 255, 0.04);
    display: grid;
    place-items: center;
    position: relative;
}

.island-circle::before {
    content: "";
    position: absolute;
    width: 455px;
    height: 455px;
    border: 1px solid rgba(201, 166, 107, 0.45);
    border-radius: 50%;
}

.island-circle::after {
    content: "";
    position: absolute;
    width: 485px;
    height: 485px;
    border: 1px dashed rgba(11, 82, 120, 0.35);
    border-radius: 50%;
}

.circle-inner {
    width: 255px;
    height: 255px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(0, 133, 173, 0.35), transparent 70%),
        var(--blue);
    border: 2px solid rgba(255,255,255,0.15);
    display: grid;
    place-items: center;
    align-content: center;
    color: white;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.18);
}

.tech-icon {
    font-size: 65px;
    font-weight: 900;
    letter-spacing: -8px;
}

.circle-text {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 6px;
    font-weight: 800;
    padding-left: 6px;
    color: var(--cream);
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.96);
    padding: 13px 17px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 180px;
    border-left: 4px solid var(--tan);
}

.floating-card strong {
    display: block;
    font-size: 13px;
    color: var(--navy);
}

.floating-card small {
    display: block;
    color: var(--muted);
    font-size: 10px;
}

.floating-icon {
    width: 37px;
    height: 37px;
    border-radius: 8px;
    background: #edf6f8;
    display: grid;
    place-items: center;
    font-size: 17px;
}

.card-one {
    top: 85px;
    left: 0;
    animation: float 5s ease-in-out infinite;
}

.card-two {
    right: 0;
    top: 205px;
    animation: float 5s ease-in-out infinite 1s;
}

.card-three {
    bottom: 60px;
    left: 40px;
    animation: float 5s ease-in-out infinite 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

.hero-bottom-pattern {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 45px;
    background:
        linear-gradient(
            135deg,
            transparent 25%,
            var(--tan) 25%,
            var(--tan) 31%,
            transparent 31%,
            transparent 69%,
            var(--tan) 69%,
            var(--tan) 75%,
            transparent 75%
        );
    background-size: 70px 45px;
    opacity: 0.5;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 105px 0;
}

.section-heading {
    max-width: 680px;
    text-align: center;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.section-heading h2,
.why-content h2,
.about-content h2,
.contact-info h2 {
    color: var(--navy);
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-heading p {
    color: var(--muted);
    margin-top: 16px;
    font-size: 15px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: var(--radius);
    background: white;
    transition: 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--tan);
    transform: rotate(45deg);
    opacity: 0.15;
}

.service-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    background: #edf6f8;
    color: var(--blue);
    border-radius: 10px;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 25px;
}

.service-number {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 11px;
    font-weight: 900;
    color: #a9bbc4;
}

.service-card h3 {
    color: var(--navy);
    font-size: 20px;
}

.service-card > p {
    color: var(--muted);
    font-size: 13px;
    margin: 12px 0 18px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 22px;
}

.service-card li {
    color: #526774;
    font-size: 12px;
    margin: 7px 0;
}

.service-card li::before {
    content: "✓";
    color: var(--ocean);
    font-weight: bold;
    margin-right: 8px;
}

.service-link {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--blue);
    letter-spacing: 0.5px;
}

.featured-service {
    background: var(--navy);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(9, 38, 63, 0.2);
}

.featured-service:hover {
    transform: translateY(-15px);
}

.featured-service h3 {
    color: white;
}

.featured-service > p,
.featured-service li {
    color: #bdcbd3;
}

.featured-service .service-icon {
    background: rgba(255,255,255,0.1);
    color: var(--cream);
}

.featured-service .service-number {
    color: rgba(255,255,255,0.3);
}

.featured-service .service-link {
    color: var(--cream);
}


/* =========================================================
   SAMOAN CULTURE BANNER
========================================================= */

.culture-banner {
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.culture-content {
    min-height: 250px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.culture-symbol {
    width: 85px;
    height: 85px;
    min-width: 85px;
    display: grid;
    place-items: center;
    border: 1px solid var(--tan);
    color: var(--tan);
    font-size: 35px;
    transform: rotate(45deg);
}

.culture-symbol::first-letter {
    transform: rotate(-45deg);
}

.culture-content span {
    color: var(--tan);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
}

.culture-content h2 {
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.1;
    margin: 8px 0;
}

.culture-content p {
    color: #bccbd3;
    max-width: 700px;
    font-size: 14px;
}

.samoan-pattern {
    height: 30px;
    width: 100%;
    background:
        linear-gradient(
            135deg,
            transparent 25%,
            var(--tan) 25%,
            var(--tan) 32%,
            transparent 32%,
            transparent 68%,
            var(--tan) 68%,
            var(--tan) 75%,
            transparent 75%
        );
    background-size: 50px 30px;
    opacity: 0.45;
}


/* =========================================================
   PACKAGES
========================================================= */

.websites-section {
    background: var(--off-white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.package-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
    position: relative;
    transition: 0.3s ease;
}

.package-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.package-popular {
    border: 2px solid var(--blue);
}

.popular-tag {
    position: absolute;
    top: -13px;
    right: 25px;
    background: var(--blue);
    color: white;
    padding: 5px 12px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.package-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-label {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 900;
    color: var(--blue);
}

.package-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: white;
    font-size: 10px;
    font-weight: 900;
}

.package-card h3 {
    font-size: 25px;
    color: var(--navy);
    margin-top: 25px;
}

.package-card > p {
    font-size: 13px;
    color: var(--muted);
    min-height: 65px;
    margin-top: 8px;
}

.package-divider {
    height: 1px;
    background: var(--border);
    margin: 25px 0;
}

.package-card ul {
    list-style: none;
    min-height: 190px;
}

.package-card li {
    font-size: 12px;
    color: #4e6472;
    margin: 10px 0;
}

.package-card li::before {
    content: "✓";
    color: var(--ocean);
    font-weight: bold;
    margin-right: 9px;
}

.package-button {
    display: block;
    text-align: center;
    border: 1px solid var(--navy);
    padding: 12px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    transition: 0.25s ease;
}

.package-button:hover {
    background: var(--navy);
    color: white;
}


/* =========================================================
   WHY
========================================================= */

.why-section {
    background: white;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.why-content > p {
    max-width: 550px;
    color: var(--muted);
    margin-top: 20px;
    font-size: 14px;
}

.check-list {
    margin-top: 35px;
}

.check-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.check-item > span {
    width: 27px;
    height: 27px;
    min-width: 27px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e8f5f8;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.check-item strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.check-item p {
    font-size: 12px;
    color: var(--muted);
}

.why-visual {
    display: grid;
    place-items: center;
}

.tech-board {
    width: 100%;
    max-width: 510px;
    background: var(--navy-dark);
    border-radius: 15px;
    padding: 18px;
    box-shadow: 0 30px 60px rgba(9,38,63,0.20);
    transform: rotate(2deg);
}

.board-header {
    height: 35px;
    color: #a9bec9;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #50c878;
}

.board-status {
    margin-left: auto;
    color: #66c995;
}

.board-screen {
    background: #071724;
    min-height: 320px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.code-line {
    height: 5px;
    background: rgba(116, 190, 211, 0.25);
    margin-bottom: 12px;
    border-radius: 5px;
}

.width-90 {
    width: 90%;
}

.width-80 {
    width: 80%;
}

.width-75 {
    width: 75%;
}

.width-65 {
    width: 65%;
}

.width-45 {
    width: 45%;
}

.code-window {
    margin-top: 40px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    padding: 25px;
    border: 1px solid rgba(201,166,107,0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #8ec4d2;
    font-family: monospace;
    font-size: 12px;
}

.code-window strong {
    color: white;
    font-size: 21px;
}

.code-window span:last-child {
    color: var(--tan);
}

.board-footer {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #66808f;
    font-size: 8px;
    letter-spacing: 1px;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-section {
    background: var(--off-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.portfolio-image {
    height: 270px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--navy);
    position: relative;
}

.portfolio-one {
    background: linear-gradient(135deg, #dceef3, #a9d0dc);
}

.browser-window {
    width: 75%;
    background: white;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.browser-top {
    height: 22px;
    background: #e6eef0;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 8px;
}

.browser-top span {
    width: 5px;
    height: 5px;
    background: #9aabb1;
    border-radius: 50%;
}

.browser-content {
    height: 180px;
    padding: 25px;
}

.mock-logo {
    width: 30px;
    height: 30px;
    background: var(--navy);
    margin-bottom: 25px;
}

.mock-line {
    height: 7px;
    width: 60%;
    background: #dce5e8;
    margin-bottom: 8px;
}

.mock-line.large {
    width: 80%;
    background: var(--navy);
}

.mock-button {
    width: 70px;
    height: 22px;
    background: var(--blue);
    margin-top: 18px;
}

.portfolio-two {
    background: linear-gradient(135deg, #0a2e49, #116b8e);
}

.dashboard-mockup {
    width: 78%;
    height: 185px;
    background: #f7fafb;
    display: flex;
    box-shadow: 0 20px 40px rgba(0,0,0,0.22);
}

.dash-sidebar {
    width: 25%;
    background: var(--navy);
}

.dash-content {
    flex: 1;
    padding: 13px;
}

.dash-header {
    height: 12px;
    width: 60%;
    background: #c9d9df;
    margin-bottom: 15px;
}

.dash-cards {
    display: flex;
    gap: 7px;
}

.dash-cards span {
    flex: 1;
    height: 38px;
    background: #dceef3;
}

.dash-chart {
    height: 70px;
    margin-top: 15px;
    background:
        linear-gradient(160deg, transparent 40%, var(--blue) 41%, var(--blue) 43%, transparent 44%),
        #e9f0f2;
}

.portfolio-three {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(201,166,107,0.08) 0,
            rgba(201,166,107,0.08) 2px,
            transparent 2px,
            transparent 12px
        ),
        var(--navy);
}

.network-visual {
    width: 80%;
    height: 200px;
    position: relative;
}

.network-node {
    position: absolute;
    width: 70px;
    height: 40px;
    border: 1px solid var(--tan);
    display: grid;
    place-items: center;
    color: white;
    font-size: 8px;
    font-weight: 900;
}

.node-main {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
}

.node-one {
    left: 5%;
    top: 15%;
}

.node-two {
    right: 5%;
    top: 15%;
}

.node-three {
    right: 5%;
    bottom: 10%;
}

.network-visual::before,
.network-visual::after {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--tan);
    width: 35%;
    top: 45%;
}

.network-visual::before {
    left: 15%;
    transform: rotate(25deg);
}

.network-visual::after {
    right: 15%;
    transform: rotate(-25deg);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.portfolio-info h3 {
    color: var(--navy);
    margin-top: 7px;
    font-size: 19px;
}

.portfolio-info p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 8px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: white;
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.about-pattern {
    height: 450px;
    background:
        linear-gradient(
            45deg,
            transparent 47%,
            rgba(201,166,107,0.35) 48%,
            rgba(201,166,107,0.35) 52%,
            transparent 53%
        ),
        var(--navy);
    background-size: 45px 45px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.about-circle {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: var(--blue);
    border: 10px solid rgba(255,255,255,0.08);
    display: grid;
    place-items: center;
    color: white;
    font-size: 50px;
    font-weight: 900;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.about-pattern-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(201,166,107,0.3);
    transform: rotate(45deg) scale(0.75);
}

.about-content > p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 20px;
    max-width: 600px;
}

.about-values {
    display: flex;
    gap: 45px;
    margin-top: 35px;
}

.about-values div {
    display: flex;
    flex-direction: column;
}

.about-values strong {
    font-size: 22px;
    color: var(--tan);
}

.about-values span {
    font-size: 11px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    background: var(--blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201,166,107,0.35);
    transform: rotate(45deg);
}

.cta-pattern::before,
.cta-pattern::after {
    content: "";
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(201,166,107,0.25);
}

.cta-container {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.cta-container > div > span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 900;
    color: var(--cream);
}

.cta-container h2 {
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1.05;
    max-width: 650px;
    margin: 10px 0;
}

.cta-container p {
    color: #d1e2e8;
    font-size: 14px;
}

.btn-light {
    background: white;
    color: var(--navy);
    white-space: nowrap;
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-3px);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--off-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
}

.contact-info > p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 20px;
    max-width: 500px;
}

.contact-details {
    margin-top: 35px;
}

.contact-detail {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: white;
    border: 1px solid var(--border);
    color: var(--blue);
}

.contact-detail small {
    display: block;
    font-size: 8px;
    letter-spacing: 1.5px;
    color: var(--muted);
    font-weight: 900;
}

.contact-detail strong {
    display: block;
    color: var(--navy);
    font-size: 13px;
}

.contact-form-container {
    background: white;
    border: 1px solid var(--border);
    padding: 38px;
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(9,38,63,0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 10px;
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 7px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #fbfcfd;
    padding: 13px 14px;
    color: var(--text);
    outline: none;
    border-radius: 4px;
    transition: 0.25s ease;
}

.form-group input,
.form-group select {
    height: 47px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11,82,120,0.07);
    background: white;
}

.form-button {
    width: 100%;
    min-height: 52px;
    border: none;
    background: var(--navy);
    color: white;
    cursor: pointer;
    font-weight: 900;
    font-size: 12px;
    transition: 0.3s ease;
}

.form-button:hover {
    background: var(--blue);
}

.form-button span {
    margin-left: 10px;
}

.form-message {
    margin-top: 15px;
    font-size: 12px;
    text-align: center;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--navy-dark);
    color: white;
    position: relative;
}

.footer-pattern {
    height: 18px;
    background:
        linear-gradient(
            135deg,
            transparent 25%,
            var(--tan) 25%,
            var(--tan) 33%,
            transparent 33%,
            transparent 67%,
            var(--tan) 67%,
            var(--tan) 75%,
            transparent 75%
        );
    background-size: 45px 18px;
    opacity: 0.45;
}

.footer-main {
    padding: 65px 0 45px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo .logo-symbol {
    background: var(--blue);
}

.footer-logo .logo-text strong {
    color: white;
}

.footer-logo .logo-text small {
    color: var(--tan);
}

.footer-brand > p {
    max-width: 300px;
    color: #94aab7;
    font-size: 12px;
    margin-top: 20px;
}

.footer-phrase {
    margin-top: 20px;
    color: var(--tan);
    font-size: 11px;
    font-weight: 800;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    color: white;
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column a {
    color: #91a8b4;
    font-size: 11px;
    transition: 0.2s ease;
}

.footer-column a:hover {
    color: var(--tan);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #78909c;
    font-size: 10px;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .navbar {
        gap: 18px;
    }

    .hero-container {
        gap: 25px;
    }

    .island-circle {
        width: 340px;
        height: 340px;
    }

    .island-circle::before {
        width: 380px;
        height: 380px;
    }

    .island-circle::after {
        width: 405px;
        height: 405px;
    }

    .circle-inner {
        width: 210px;
        height: 210px;
    }

    .hero-visual {
        transform: scale(0.9);
    }

}


@media (max-width: 850px) {

    .navbar {
        position: fixed;
        top: 78px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 78px);
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 35px;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.08);
        transition: 0.3s ease;
    }

    .navbar.open {
        right: 0;
    }

    .nav-link {
        padding: 8px 0;
    }

    .nav-contact {
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 450px;
    }

    .services-grid,
    .packages-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-service {
        transform: none;
    }

    .featured-service:hover {
        transform: translateY(-7px);
    }

    .why-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-pattern {
        max-width: 550px;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .section {
        padding: 75px 0;
    }

    .nav-container {
        min-height: 70px;
    }

    .navbar {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .hero {
        min-height: auto;
        padding-top: 115px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-item strong {
        font-size: 14px;
    }

    .trust-item span {
        font-size: 8px;
    }

    .hero-visual {
        min-height: 400px;
        transform: scale(0.82);
        margin-top: -20px;
        margin-bottom: -30px;
    }

    .card-one {
        left: -10px;
    }

    .card-two {
        right: -10px;
    }

    .card-three {
        left: 10px;
    }

    .services-grid,
    .packages-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .culture-content {
        padding: 55px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .culture-symbol {
        width: 65px;
        height: 65px;
        min-width: 65px;
        font-size: 25px;
    }

    .package-card ul {
        min-height: auto;
        margin-bottom: 25px;
    }

    .why-container,
    .about-container,
    .contact-container {
        gap: 35px;
    }

    .about-pattern {
        height: 350px;
    }

    .about-circle {
        width: 180px;
        height: 180px;
        font-size: 38px;
    }

    .cta-container {
        padding: 65px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-container {
        padding: 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 400px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero-visual {
        transform: scale(0.70);
        margin-left: -35px;
        margin-right: -35px;
    }

    .hero-trust {
        gap: 8px;
    }

    .trust-line {
        height: 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}