:root {
    --bg: #0a0a0a;
    --bg-card: #1a1a1a;
    --accent: #D4AF37;
    --title: #ffffff;
    --text: #cccccc;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px
}

/* Full site stylesheet (merged for consistency) */

/* Header */
.site-header {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 50
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    height: 46px
}

.site-nav {
    display: flex;
    gap: 18px;
    align-items: center
}

.site-nav a {
    color: var(--title);
    text-decoration: none;
    padding: 8px 6px;
    border-radius: 4px
}

.site-nav a:hover {
    color: var(--bg);
    background: var(--accent)
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    padding: 8px 10px;
    border-radius: 6px
}

/* Hero */
.hero {
    padding: 84px 0 56px;
    color: var(--title)
}

.hero-inner h1 {
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
    margin: 0 0 12px
}

.subtitle {
    color: var(--text);
    margin: 0 0 12px
}

.intro {
    color: var(--text);
    max-width: 70%;
    line-height: 1.6
}

.hero-cta {
    margin-top: 18px
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600
}

.btn.primary {
    background: var(--accent);
    color: #000;
    border: 2px solid var(--accent)
}

.btn.outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent)
}

.btn.small {
    padding: 8px 12px
}

/* Sections */
section {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03)
}

h2 {
    color: var(--title);
    margin: 0 0 14px
}

p {
    color: var(--text);
    margin: 0 0 12px
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px
}

.card {
    background: var(--bg-card);
    padding: 18px;
    border-radius: 10px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start
}

.card .icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 10px
}

.card h3 {
    color: var(--title);
    margin: 0;
    font-size: 1.05rem
}

/* Footer */
.site-footer {
    background: #000000;
    color: var(--text);
    padding: 28px 0;
    margin-top: 30px
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.contact-block a {
    color: var(--accent);
    text-decoration: none
}

/* Responsive */
@media (max-width:800px) {
    .intro {
        max-width: 100%
    }

    .site-nav {
        position: fixed;
        top: 64px;
        right: 16px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.96);
        padding: 12px;
        border-radius: 8px;
        display: none
    }

    .site-nav.open {
        display: flex
    }

    .nav-toggle {
        display: inline-block
    }
}

/* --- Additional merged styles from index.php to ensure consistent header/footer/logo styling across pages --- */
:root {
    --gold: #D4AF37;
    /* Metallic Gold */
    --gold-hover: #bfa13f;
    /* Slightly muted gold for hover */
    --bg-dark: #0a0a0a;
    /* Deep Charcoal/Black */
    --bg-card: #141414;
    /* Lighter Black for Cards */
    --text-white: #ffffff;
    /* Main Headings */
    --text-gray: #cccccc;
    /* Body Text */
    --border-color: #333333;
    /* Subtle borders */
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--gold);
}

.btn-primary {
    background-color: var(--gold);
    border: 1px solid var(--gold);
    color: #000000;
}

.btn-primary:hover {
    background-color: #bfa13f;
    border-color: #bfa13f;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: #000000;
}

/* TITLES */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
    position: relative;
    display: inline-block;
    font-weight: 300;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

/* HEADER & NAVBAR */
header {
    background-color: transparent;
    border-bottom: none;
    position: absolute; /* not sticky: overlay hero and scroll away */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
}

header .container {
    max-width: 1100px;
    padding: 0 24px; /* align with main container on both sides for stable layout */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px; /* slightly taller header to fit bigger logo */
    margin-top: 12px; /* space from very top of page */
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    text-decoration: none;
}

.logo img {
    display: block;
    height: auto;
    max-height: 92px;  /* a little bigger logo */
    width: auto;
    margin-top: 4px;   /* balanced spacing in taller header */
    margin-bottom: 4px;
}

.nav-menu { display: flex; gap: 30px; align-items: center }

.nav-link {
    font-weight: 400;
    color: var(--text-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-btn {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.nav-btn:hover {
    background-color: var(--gold);
    color: black;
}

.hamburger {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background-color: var(--gold);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Animate hamburger into an X when active */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Simple scroll reveal animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Slight stagger helpers */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* HERO */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../assets/hero.jpeg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    color: var(--text-white);
}


.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #dddddd;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ABOUT */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Slightly tighter vertical padding on desktop */
.navbar { padding-top: 6px; padding-bottom: 6px; }

.investors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 900px) {
    .navbar { padding-top: 4px; padding-bottom: 4px; }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .investors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.mission-list li {
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
    color: #ddd;
}

.mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    background: var(--gold);
    transform: rotate(45deg);
    border-radius: 2px;
}

.mission-box {
    background-color: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--gold);
    border-radius: 6px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../assets/about.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.mission-box h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.mission-box .mission-list {
    margin: 0;
    padding: 0;
}

.mission-box .mission-list li {
    margin-bottom: 15px;
    color: #eeeeee;
    line-height: 1.6;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.value-tag {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .85rem;
    text-transform: uppercase
}

/* SERVICES */
.services {
    background-color: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}

.service-card {
    background: var(--bg-card);
    padding: 26px;
    border-radius: 6px;
    border: 1px solid #222
}

.service-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center
}

.partner-item {
    background: var(--bg-card);
    padding: 18px 26px;
    border: 1px solid #222;
    color: var(--text-white)
}

/* INVESTORS */
.investors {
    background: linear-gradient(to right, #0a0a0a, #1a1a1a);
}

.invest-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: var(--text-white)
}

.invest-list li span {
    background: var(--gold);
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    margin-right: 20px
}

.invest-cta-box {
    border: 1px solid var(--gold);
    padding: 50px;
    text-align: center;
    background: rgba(212, 175, 55, 0.05)
}

/* FOOTER */
footer {
    background-color: #000000;
    border-top: 3px solid var(--gold);
    padding-top: 40px;
}

.site-footer {
    padding-bottom: 30px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-logo img {
    display: block;
    height: auto;
    max-height: 96px;
    width: auto;
}

.footer-logo-text {
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
}

.footer-logo-text span {
    color: var(--gold);
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
    margin-top: 20px;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 14px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-col p,
.footer-col a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.footer-form input,
.footer-form textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 12px;
    color: #eee;
    border-radius: 6px;
    font-size: 0.85rem;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #9b9b9b;
}

.footer-form textarea {
    resize: vertical;
    min-height: 100px;
}

.footer-form .btn {
    align-self: flex-start;
    border: none;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 30px;
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bottom-inner p {
    margin: 0;
    font-size: 0.8rem;
    color: #777;
}

.footer-form input,
.footer-form textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 12px;
    color: #eee;
    border-radius: 6px;
    font-size: 0.85rem;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #9b9b9b;
}

.footer-form textarea {
    resize: vertical;
    min-height: 100px;
}

.footer-form .btn {
    align-self: flex-start;
    border: none;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 30px;
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bottom-inner p {
    margin: 0;
    font-size: 0.8rem;
    color: #777;
}

.contact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 28px;
    border-radius: 10px
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 8px
}

.contact-info p {
    color: var(--text-gray);
    line-height: 1.6
}

.contact-form h3 {
    color: #fff;
    margin-bottom: 8px
}

.contact-form .form-errors {
    margin-bottom: 12px
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 14px;
    color: #eee;
    border-radius: 6px;
    outline: none
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9b9b9b
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical
}

.contact-form .row {
    display: flex;
    gap: 12px
}

.contact-form .col {
    flex: 1
}

.contact-form .btn {
    background: var(--gold);
    color: #000;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700
}

.contact-form .btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed
}

.msg.success {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 12px;
    border-radius: 6px
}

.msg.error {
    background: rgba(255, 80, 80, 0.06);
    color: #ff9b9b;
    border: 1px solid rgba(255, 80, 80, 0.08);
    padding: 12px;
    border-radius: 6px
}

@media (max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .footer-col {
        text-align: center;
    }
}

/* Mobile drawer styles for nav */
@media (max-width: 900px) {
    .hamburger {
        display:flex;
        z-index:1400;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        top: 0; /* start at very top since header is absolute */
        right: 0;
        left: 0;
        height: 100%; /* full height drawer */
        background-color: rgba(10,10,10,0.98);
        padding-top: 12px;
        flex-direction: column;
        gap: 0;
        transform: translateX(100%);
        transition: none; /* no animation on breakpoint change */
        align-items: stretch;
        z-index: 1300;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
        transition: transform 260ms ease-in-out; /* animate only when toggling active */
    }

    .nav-menu li { border-bottom:1px solid rgba(255,255,255,0.03) }
    .nav-menu .nav-link { display:block; padding:16px 20px; text-align:left }
    .nav-menu .nav-btn { margin:12px 20px }

    .navbar {
        position: relative;
        justify-content: center;
        padding:6px 0;
    }

    .logo {
        margin: 0 auto;
    }
}

@media (min-width: 901px) {
    .nav-menu { position:static; transform:none; height:auto }
}

/* MARIS GLOBAL SECTION */
.maris-global-section {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../assets/beach.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.maris-global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.maris-global-text h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.maris-global-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 14px;
}

.maris-global-address {
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Bubble Button Styles */
.bubble-btn {
    position: relative;
    background: linear-gradient(135deg, #1e90ff, #4169e1);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.bubble-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.bubble-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bubble-btn:active::before {
    width: 300px;
    height: 300px;
}

.bubble-btn-bubble {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatBubble linear infinite;
}

.bubble-btn-bubble:nth-child(1) {
    width: 8px;
    height: 8px;
    bottom: 15%;
    left: 10%;
    animation-duration: 3s;
}

.bubble-btn-bubble:nth-child(2) {
    width: 12px;
    height: 12px;
    bottom: 20%;
    left: 70%;
    animation-duration: 4s;
    animation-delay: 0.5s;
}

.bubble-btn-bubble:nth-child(3) {
    width: 6px;
    height: 6px;
    bottom: 30%;
    right: 15%;
    animation-duration: 3.5s;
    animation-delay: 1s;
}

.bubble-btn-bubble:nth-child(4) {
    width: 10px;
    height: 10px;
    bottom: 25%;
    left: 50%;
    animation-duration: 4.5s;
    animation-delay: 1.5s;
}

.bubble-btn-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes floatBubble {
    0% {
        bottom: -10px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .maris-global-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}