/* ---------------------------------------------------
   RESET & BASE STYLES
--------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    line-height: 1.6;
    background: #F6F6F6;
    color: #18293c;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px;
    min-height: 100vh;
    position: relative;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}
a {
    color: #133A5E;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #DFB467;
    outline: none;
}
ul, ol {
    margin-left: 1.2em;
}

/* ---------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #133A5E;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}
h4 {
    font-size: 1.15rem;
}
.section h1, .section h2, .section h3 {
    color: #133A5E;
}
.hero-subheadline {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #DFB467;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}
p, li {
    font-size: 1rem;
    color: #18293c;
}
strong, b {
    font-weight: 700;
}

/* ---------------------------------------------------
   CONTAINER & LAYOUT
--------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper {
    width: 100%;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(19,58,94,0.06);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 8px;
}

.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 14px;
}

.feature-grid > div {
    background: #F6F6F6;
    border-radius: 15px;
    box-shadow: 0 2px 10px 0 rgba(19,58,94,0.05);
    padding: 28px 22px;
    flex: 1 1 245px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 200px;
    transition: box-shadow 0.2s, transform 0.17s;
    border: 1px solid #e8e6df;
    margin-bottom: 20px;
}
.feature-grid > div:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 8px 22px 0 rgba(19,58,94,0.12);
    border-color: #DFB467;
}
.feature-grid img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}
ul li::before {
    content: '';
    width: 6px; height: 6px;
    background: #DFB467;
    border-radius: 3px;
    left: 0; top: 9px; position: absolute;
    display: inline-block;
}

/* Cards (misc, testimonial, content, etc) */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 30px 0 rgba(19,58,94,0.10);
    padding: 30px 22px;
    margin-bottom: 20px;
    position: relative;
    transition: box-shadow 0.22s, border 0.19s;
    border: 1px solid #ededed;
}
.card:hover {
    box-shadow: 0 12px 38px 0 rgba(223,180,103,0.11);
    border-color: #DFB467;
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Feature item utility */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

/* Testimonial Cards */
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: #F6F6F6;
    border-left: 5px solid #DFB467;
    padding: 20px 26px;
    margin-bottom: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 8px 0 rgba(223,180,103,0.05);
}
.testimonial-card p {
    font-size: 1.12rem;
    color: #133A5E;
}
.testimonial-card span {
    font-size: 0.98rem;
    color: #6a6e76;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ---------------------------------------------------
   HEADER, NAVIGATION, MOBILE MENU
--------------------------------------------------- */
header {
    background: #fff;
    box-shadow: 0 2px 10px 0 rgba(19,58,94,0.04);
    border-bottom: 2px solid #DFB46708;
    z-index: 99;
    position: relative;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 28px;
    padding-top: 12px;
    padding-bottom: 12px;
}
header img {
    height: 44px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}
.main-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #133A5E;
    margin: 0 2px;
    padding: 8px 8px;
    border-radius: 8px;
    transition: color 0.18s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
    color: #DFB467;
    background: #f7fdff;
}
.btn-primary {
    background: #DFB467;
    color: #133A5E !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    border: none;
    padding: 13px 26px;
    border-radius: 22px;
    font-size: 1.03rem;
    box-shadow: 0 1px 8px rgba(223,180,103,0.10);
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.19s, color 0.19s, box-shadow 0.19s, transform 0.15s;
    outline: none;
    letter-spacing: 0.01em;
    position: relative;
}
.btn-primary:hover, .btn-primary:focus {
    background: #fff6e2;
    color: #B29359 !important;
    box-shadow: 0 4px 16px rgba(223,180,103,0.22);
    transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
    background: #133A5E;
    color: #DFB467 !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    border: none;
    padding: 13px 26px;
    border-radius: 22px;
    font-size: 1.01rem;
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.15s;
    outline: none;
    letter-spacing: 0.01em;
    box-shadow: 0 1px 8px rgba(19,58,94,0.10);
    position: relative;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: #DFB467;
    color: #133A5E !important;
    box-shadow: 0 6px 18px rgba(19,58,94,0.08);
    transform: translateY(-1px) scale(1.03);
}

button {
    font-family: inherit;
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
    display: none;
    background: #DFB467;
    color: #133A5E;
    font-size: 2rem;
    border: none;
    border-radius: 9px;
    padding: 5px 15px 7px 15px;
    cursor: pointer;
    transition: box-shadow 0.16s, background 0.14s, color 0.19s;
    box-shadow: 0 2px 10px rgba(223,180,103,0.09);
    margin-left: 16px;
}
.mobile-menu-toggle:focus {
    outline: 2px solid #133A5E;
}
.mobile-menu-toggle:hover {
    background: #fff6e2;
    color: #B29359;
}

/* Responsive Nav */
@media (max-width: 1024px) {
    .main-nav {
        gap: 13px;
        font-size: 0.97rem;
    }
    header .container {
        gap: 16px;
    }
}
@media (max-width: 860px) {
    .main-nav {
        gap: 6px;
    }
}
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
        z-index: 1203;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.77,0,.18,1.0);
    box-shadow: 0 0 0 0 rgba(19,58,94,0);
    pointer-events: none;
    opacity: 0;
}
.mobile-menu.open {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
    box-shadow: 0 10px 48px 0 rgba(19,58,94,0.16);
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #133A5E;
    align-self: flex-end;
    margin: 22px 22px 0 0;
    cursor: pointer;
    transition: color 0.14s;
    z-index: 1205;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
    color: #DFB467;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
    align-items: center;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.11rem;
    color: #133A5E;
    padding: 15px 28px;
    width: 90%;
    border-radius: 13px;
    text-align: center;
    transition: background 0.17s, color 0.14s;
    margin: 0 auto;
    display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #F6F6F6;
    color: #DFB467;
}

/* Modal overlay for mobile menu (prevent body scroll if open) */
body.mobile-menu-open {
    overflow: hidden;
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
footer {
    background: #133A5E;
    color: #fff;
    padding: 36px 0 14px 0;
    border-top: 4px solid #DFB46733;
    font-size: 1rem;
}
footer .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
footer .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
footer img {
    height: 38px;
    width: auto;
    margin-bottom: 6px;
}
.footer-nav {
    color: #DFB467;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 0.97rem;
    margin-bottom: 8px;
}
.footer-nav a {
    color: #DFB467;
    margin: 0 5px;
    transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: #fff;
    text-decoration: underline;
}
.brand-tagline {
    color: #DFB467;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.social-links {
    display: flex;
    flex-direction: row;
    gap: 18px;
}
.social-links img {
    height: 26px;
    width: 26px;
    filter: grayscale(0.2)
            drop-shadow(0 2px 8px #DFB46744);
    opacity: 0.84;
    transition: opacity 0.13s, filter 0.18s;
    border-radius: 9px;
    padding: 3px;
}
.social-links img:hover {
    opacity: 1;
    filter: brightness(1.12) drop-shadow(0 4px 12px #DFB46777);
    background: #DFB46719;
}
.legal-info {
    color: #B8C2D1;
    font-size: 0.93rem;
    margin-top: 5px;
}

/* ---------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------------- */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1300;
    background: #133A5E;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 -4px 32px rgba(19,58,94,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    min-height: 80px;
    border-top: 3px solid #DFB467;
    transition: transform 0.33s cubic-bezier(.73,0,.18,1.0), opacity 0.18s;
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner.hide {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner-message {
    flex: 1 1 auto;
    margin-right: 18px;
}
.cookie-banner-btns {
    display: flex;
    gap: 15px;
}
.btn-cookie {
    padding: 11px 22px;
    border-radius: 19px;
    border: none;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.13s, color 0.13s;
    font-weight: 600;
    margin-left: 4px;
}
.btn-cookie-accept {
    background: #DFB467;
    color: #133A5E;
}
.btn-cookie-accept:hover, .btn-cookie-accept:focus {
    background: #fff6e2;
    color: #B29359;
}
.btn-cookie-reject {
    background: #fff;
    color: #133A5E;
    border: 1px solid #DFB467;
}
.btn-cookie-reject:hover, .btn-cookie-reject:focus {
    background: #133A5E;
    color: #DFB467;
}
.btn-cookie-settings {
    background: #133A5E;
    color: #DFB467;
    border: 1px solid #DFB467;
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
    background: #DFB467;
    color: #133A5E;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,41,60,0.33);
    z-index: 1310;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
    opacity: 0;
    pointer-events: none;
}
.cookie-modal {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(19,58,94,0.19);
    padding: 38px 28px 28px 28px;
    min-width: 320px;
    max-width: 96vw;
    color: #133A5E;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    animation: modalPopIn 0.42s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes modalPopIn {
    0% { transform: scale(0.8) translateY(30px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-title {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.32rem;
    font-weight: 700;
    color: #133A5E;
    margin-bottom: 10px;
}
.cookie-modal-close {
    position: absolute;
    right: 18px; top: 18px;
    background: none;
    border: none;
    color: #133A5E;
    font-size: 1.75rem;
    cursor: pointer;
    transition: color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    color: #DFB467;
}
.cookie-toggle-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 14px;
}
.cookie-toggle-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.cookie-toggle-label {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #133A5E;
    font-size: 1.04rem;
    flex: 1 1 auto;
}
/* Custom switch (toggle) */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
}
.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #e3e2e1;
    -webkit-transition: .2s;
    transition: .2s;
    border-radius: 14px;
}
.cookie-switch input:checked + .cookie-slider {
    background-color: #DFB467;
}
.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    -webkit-transition: .2s;
    transition: .2s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(19,58,94,0.13);
}
.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(20px);
    background-color: #133A5E;
}
.cookie-toggle-row.essential .cookie-switch {
    opacity: 0.42;
    pointer-events: none;
}
.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

/* ---------------------------------------------------
   RESPONSIVE LAYOUTS
--------------------------------------------------- */
@media (max-width: 1000px) {
    .section {
        padding: 30px 12px;
    }
    .feature-grid > div {
        padding: 18px 12px;
    }
}
@media (max-width: 768px) {
    .section {
        padding: 22px 5px;
        margin-bottom: 36px;
    }
    .container {
        padding: 0 7px;
    }
    .text-image-section {
        flex-direction: column;
        gap: 22px;
        align-items: flex-start;
    }
    .content-grid {
        flex-direction: column;
        gap: 16px;
    }
    .feature-grid {
        flex-direction: column;
        gap: 18px;
    }
    header .container {
        flex-direction: row;
        min-height: 67px;
    }
    h1 {
        font-size: 2.02rem;
    }
    h2 {
        font-size: 1.47rem;
    }
    .footer-nav, .brand-tagline {
        font-size: 0.96rem;
        text-align: center;
    }
}
@media (max-width: 520px) {
    .section {
        padding: 12px 0;
        margin-bottom: 28px;
    }
    h1 {
        font-size: 1.43rem;
        margin-bottom: 12px;
    }
    h2 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    .testimonial-card {
        padding: 11px 8px;
    }
}

/* ---------------------------------------------------
   MISC & REFINED DETAILS FOR LUXURY
--------------------------------------------------- */
/* Subtle gold border for luxury highlight */
.section {
    border: 1px solid #e5d5b0;
}

/* Buttons shadow effect */
.btn-primary, .btn-secondary {
    box-shadow: 0 3px 10px 0 rgba(223,180,103,0.08);
}
.btn-primary:after, .btn-secondary:after {
    content: '';
    display: block;
    border-radius: 22px;
    /* gold highlight underline effect */
    margin-top: 4px;
    width: 30%;
    height: 3px;
    background: #DFB467;
    opacity: 0.16;
    transition: width 0.23s;
}
.btn-primary:hover:after, .btn-secondary:hover:after {
    width: 70%;
    opacity: 0.22;
}

/* Decorative underline for visual hierarchy */
h2, .brand-tagline {
    position: relative;
    display: inline-block;
}
h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: #DFB467;
    border-radius: 2px;
    margin-top: 8px;
    position: relative;
    opacity: 0.25;
}

/* Hide on print */
@media print {
    header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
        display: none !important;
    }
    .section {
        background: #fff !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
}

/* End of CSS */
