/* assets/css/style.css */
/* Vivid Travels By Adrianne - Vibrant Azure Color Palette */
/*
   Cobalt Blue (#0B4F6C): Confident, classic travel tone for major design blocks and navigation.
   Vivid Coral (#FF6B6B): Energetic CTA button color that immediately draws the eye to quote forms.
   Lagoon Turquoise (#01BAEF): Subtle accents, line breaks, hover states, and iconography.
   Pure Cloud (#FBFBFF): Bright, breezy background space that makes travel photos stand out.
   Midnight Ink (#1A202C): High-contrast body text.
*/

:root {
    /* Core Palette Tokens */
    --cobalt: #0B4F6C;
    --cobalt-dark: #07384d;
    --vivid-coral: #FF6B6B;
    --vivid-coral-hover: #fa5252;
    --lagoon: #01BAEF;
    --lagoon-light: #e6f8fd;
    --pure-cloud: #FBFBFF;
    --midnight-ink: #1A202C;
    --text-muted: #5a6a85;
    --white: #ffffff;
    --border: #e2e8f0;
    --border-accent: #b9edfb;

    /* Theme Mappings */
    --primary: var(--cobalt);
    --primary-dark: var(--cobalt-dark);
    --primary-light: var(--lagoon-light);
    --accent: var(--vivid-coral);
    --accent-hover: var(--vivid-coral-hover);
    --text-main: var(--midnight-ink);
    --bg-light: var(--pure-cloud);

    /* Radii & Shadows */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 4px rgba(11, 79, 108, 0.06);
    --shadow-md: 0 6px 20px -2px rgba(11, 79, 108, 0.09), 0 2px 8px -2px rgba(11, 79, 108, 0.05);
    --shadow-lg: 0 20px 30px -5px rgba(11, 79, 108, 0.14), 0 10px 12px -5px rgba(11, 79, 108, 0.07);

    /* Typography Tokens */
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

body,
input,
button,
select,
textarea {
    font-family: var(--font-sans);
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
.brand-title,
.hero-title,
.section-title,
.page-hero h1,
.cta-banner h2,
.specialty-title,
.form-section-title span:last-child {
    font-family: var(--font-serif);
    letter-spacing: -0.01em;
}

a {
    color: var(--cobalt);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--lagoon);
}

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

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.site-header {
    background: #ffffff;
    border-bottom: 2px solid #edf2f7;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(11, 79, 108, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 104px;
    position: relative;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 6px 0;
}

.site-logo-img {
    height: 92px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-logo:hover .site-logo-img {
    transform: scale(1.03);
    opacity: 0.95;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--cobalt), var(--lagoon));
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(1, 186, 239, 0.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--cobalt);
}

.brand-subtitle {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lagoon);
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cobalt);
    padding: 8px 4px;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--lagoon);
}

.nav-link.active {
    color: var(--cobalt);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lagoon);
    border-radius: 2px;
}

.btn-nav-quote {
    background: var(--vivid-coral);
    color: #ffffff !important;
    padding: 11px 22px;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 4px 14px rgba(255, 107, 107, 0.4);
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.btn-nav-quote:hover {
    background: var(--vivid-coral-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.55);
}

/* Hero Section (Travel Themed Background) */
.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background: url('../images/ocean.jpeg') center center / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 44px 40px;
    margin: 50px 0;
    background: rgba(15, 23, 42, 0.76);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
    color: #ffffff;
}

.hero-title {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(11, 79, 108, 0.4);
    text-wrap: balance;
}

.hero-description {
    font-size: 1.15rem;
    color: #f1f5f9;
    margin-bottom: 32px;
    line-height: 1.65;
    text-shadow: 0 1px 6px rgba(11, 79, 108, 0.3);
    text-align: justify;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    background: var(--vivid-coral);
    color: #ffffff;
    font-weight: 800;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--vivid-coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.6);
    color: #ffffff;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    color: #ffffff;
}

/* Features & Services Grid */
.section {
    padding: 72px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 52px auto;
}

.section-subtitle {
    color: var(--lagoon);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--cobalt);
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    padding: 34px 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-accent);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--lagoon-light);
    color: var(--cobalt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border: 1px solid var(--border-accent);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--cobalt);
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Banner CTA */
.cta-banner {
    background: linear-gradient(135deg, var(--cobalt) 0%, #0e6386 60%, var(--lagoon) 120%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    margin: 40px 0 60px;
}

.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: #e6f8fd;
    max-width: 600px;
    margin: 0 auto 28px;
}

/* Page Header for subpages */
.page-hero {
    background: linear-gradient(135deg, var(--cobalt) 0%, #0a3d54 50%, var(--midnight-ink) 100%);
    color: #ffffff;
    padding: 64px 0;
    text-align: center;
    border-bottom: 4px solid var(--lagoon);
}

.page-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.05rem;
    color: #e2e8f0;
    max-width: 620px;
    margin: 0 auto;
}

/* Full Balcony View Page Wrapper for Quote Page */
.quote-page-wrapper {
    position: relative;
    background: url('../images/balcony-view.jpg') center bottom / cover no-repeat fixed;
    min-height: 100vh;
    padding: 68px 0 90px;
    overflow: hidden;
}

.quote-page-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.40) 0%, rgba(15, 23, 42, 0.65) 100%);
    pointer-events: none;
}

.quote-page-wrapper .container {
    position: relative;
    z-index: 2;
}

.quote-hero-header {
    text-align: center;
    margin-bottom: 38px;
}

.quote-hero-header h1 {
    font-size: 2.85rem;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.quote-hero-header p {
    font-size: 1.15rem;
    color: #f8fafc;
    font-weight: 500;
    max-width: 680px;
    margin: 0 auto;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.quote-page-wrapper .form-container {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.45);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .quote-page-wrapper {
        background-attachment: scroll;
        padding: 44px 0 60px;
    }
    .quote-hero-header h1 {
        font-size: 2.1rem;
    }
}

/* Forms & Input Controls */
.form-container {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 42px;
    margin: -40px auto 60px;
    max-width: 820px;
    position: relative;
    z-index: 10;
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--cobalt);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title span.step-number {
    width: 30px;
    height: 30px;
    background: var(--lagoon-light);
    color: var(--cobalt);
    border: 1.5px solid var(--border-accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 800;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cobalt);
}

.req {
    color: var(--vivid-coral);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--midnight-ink);
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--lagoon);
    box-shadow: 0 0 0 3px rgba(1, 186, 239, 0.2);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox group styling for multiple contact methods */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cobalt);
    cursor: pointer;
    background: #ffffff;
    border: 1.5px solid var(--border);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    border-color: var(--lagoon);
    background: var(--lagoon-light);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--cobalt);
    cursor: pointer;
}

.helper-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Alert Boxes */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* Footer */
.site-footer {
    background: var(--midnight-ink);
    color: #cbd5e1;
    margin-top: auto;
    padding: 56px 0 28px;
    border-top: 4px solid var(--cobalt);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 360px;
}

.footer-col h4 {
    color: var(--lagoon);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--lagoon);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #718096;
}

.admin-link {
    color: #718096;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.admin-link:hover {
    color: var(--lagoon);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .brand-logo {
        margin-bottom: 0;
    }

    .site-logo-img {
        height: 80px;
    }

    .nav-wrapper {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 16px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .desktop-only {
        display: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 24px 18px;
        margin-top: -24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}