/* ========== RESET & NORMALIZE ========== */
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,
b, 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 {
    scroll-behavior: smooth;
    box-sizing: border-box;
    background-color: #101926;
}
body {
    min-height: 100vh;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: #101926;
    color: #F4F5F7;
    -webkit-font-smoothing: antialiased;
    position: relative;
    word-break: break-word;
}
img { max-width: 100%; display: block; border: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background: none;
    border: none;
    color: inherit;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    color: #F7C948;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.01em;
}
h1 { font-size: 2rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.125rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; }
p { margin-bottom: 16px; max-width: 900px; }
strong, b { font-weight: bold; }
small { opacity: 0.85; }

@media (min-width: 600px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.25rem; }
}
@media (min-width: 900px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
}

/* ========== LAYOUT HELPERS ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}
.content-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: transparent;
    border-radius: 22px;
}

@media (min-width: 900px) {
    .content-wrapper {
        gap: 32px;
    }
}

/* ========== HEADER ========== */
header {
    width: 100%;
    background: #131B2A;
    box-shadow: 0 4px 24px rgba(26,54,93, 0.13);
    z-index: 50;
    position: relative;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 18px;
}
.logo-link img { height: 48px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 500;
}
.main-nav a {
    padding: 4px 14px;
    border-radius: 8px;
    color: #F4F5F7;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
    background: #223B60;
    color: #F7C948;
    box-shadow: 0 2px 8px rgba(247,201,72,0.08);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.07rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    outline: none;
    box-shadow: 0 5px 20px 0 rgba(29, 54, 93, 0.10);
    border: none;
    min-width: 150px;
    transition: background 0.15s, box-shadow 0.15s, color 0.15s;
    margin-left: 15px;
    background: #F7C948;
    color: #131B2A;
    text-shadow: 0px 2px 14px rgba(255,246,160,0.15);
    position: relative;
    z-index: 1;
}
.btn-primary::after {
    /* Neon effect */
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 34px;
    pointer-events: none;
    box-shadow: 0 0 18px 2px #F7C948, 0 0 8px 0 #fff5b5 inset;
    opacity: 0.19;
    z-index: -1;
}
.btn-primary:hover, .btn-primary:focus {
    background: #FFD060;
    color: #223B60;
    box-shadow: 0 2px 16px 0 #F7C948, 0 2px 40px 0 #F7C94833;
}
.btn-secondary {
    background: #223B60;
    color: #F7C948;
    border: 2px solid #F7C948;
    box-shadow: 0 2px 12px 0 #1A365D40;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: #355587;
    color: #FFD060;
}

/* Mobile menu button */
.mobile-menu-toggle {
    background: #223B60;
    color: #F7C948;
    border: none;
    font-size: 2rem;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.18s;
    margin-left: 10px;
    z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #FFD060;
    color: #1A365D;
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 8px;
    }
    .btn-primary {
        min-width: 120px;
        padding: 10px 22px;
        font-size: 0.95rem;
        margin-left: 5px;
    }
}
@media (max-width: 900px) {
    .header-container { flex-wrap: wrap; }
}

/* --- Responsive: Hide main nav on mobile, show burger --- */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .btn-primary { display: none; }
    .mobile-menu-toggle { display: flex; }
}
@media (min-width: 769px) {
    .mobile-menu-toggle { display: none; }
}

/* ========== MOBILE MENU STYLES ========== */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(16,25,38,0.95);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu-close {
    margin: 30px 24px 0 0;
    background: #F7C948;
    color: #223B60;
    font-size: 2.1rem;
    border-radius: 100%;
    padding: 10px 19px 10px 17px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 14px #F7C94844;
    transition: background 0.18s;
    z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #FFD060;
}
.mobile-nav {
    width: 100%;
    margin: 34px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.mobile-nav a {
    color: #F7C948;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    padding: 14px 0;
    width: 80%;
    text-align: center;
    border-radius: 18px;
    transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #223B60;
    color: #FFD060;
}

@media (min-width: 769px) {
    .mobile-menu { display: none !important; }
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(113deg, #223B60 0%, #1A365D 85%);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 10px 40px rgba(8,16,32,0.18);
    color: #F4F5F7;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
}
.hero-section h1 {
    color: #F7C948;
    text-shadow: 0 3px 18px #FFD06088;
    font-size: 2.1rem;
    margin-bottom: 14px;
}
.hero-section p {
    color: #F4F5F7;
    font-size: 1.18rem;
    margin-bottom: 32px;
}
@media (min-width: 700px) { .hero-section h1 {font-size: 2.9rem;} }
.container > .content-wrapper {
    align-items: flex-start;
}

/* ========== FEATURE GRID & CARDS ========== */
.feature_grid, .value_grid, .service-grid, .feature_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 18px;
}
.feature_item, .value_item, .service-block {
    background: #162138;
    border-radius: 18px;
    padding: 30px 22px 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex: 1 1 210px;
    min-width: 220px;
    box-shadow: 0 2px 20px 0 #1A365D22, 0 0px 0 #F7C94855;
    border: 1.5px solid #223B60;
    margin-bottom: 20px;
    transition: transform 0.14s, box-shadow 0.14s;
    position: relative;
}
.feature_item img, .value_item img, .service-block img {
    height: 40px; width: 40px; 
    filter: drop-shadow(0 0 8px #F7C94888);
}
.feature_item:hover, .value_item:hover, .service-block:hover {
    box-shadow: 0 4px 36px 0 #F7C94844, 0 0px 0 #F7C94899;
    transform: translateY(-4px) scale(1.03);
    z-index: 2;
    border-color: #F7C948; 
}
.service-block h2, .feature_item h3, .value_item h3 { color: #F7C948; }
.service-block p, .feature_item p, .value_item p {
    color: #F4F5F7;
}

@media (max-width: 960px) {
    .feature_grid, .service-grid, .value_grid { flex-direction: column; }
    .feature_item, .value_item, .service-block { min-width: 0; width: 100%; }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: #F4F5F7;
    color: #1A365D;
    border-radius: 26px;
    margin-bottom: 60px;
    padding: 40px 20px;
    box-shadow: 0 2px 24px 0 #1A365D20;
}
.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
    justify-content: flex-start;
}
.testimonial-card {
    background: #fff;
    color: #222A3C;
    border-radius: 20px;
    padding: 28px 22px 18px 22px;
    min-width: 260px;
    max-width: 370px;
    flex: 1 1 270px;
    box-shadow: 0 0px 12px 0 #1A365D22, 0 2px 24px #F7C94833;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    border: 1.5px solid #E9DA9A;
    position: relative;
    transition: box-shadow 0.14s, border-color 0.14s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 38px 0 #F7C94855, 0 1px 0 #F7C94855;
    border-color: #F7C948;
}
.testimonial-card p {
    font-size: 1.09rem;
    color: #1A365D;
    font-style: italic;
}
.testimonial-details {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #223B60;
    font-size: 1rem;
}
.rating {
    color: #F7C948;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}

@media (max-width: 900px) {
    .testimonial-slider { flex-direction: column; }
    .testimonial-card { min-width: 0; width: 100%; }
}

/* ========== SERVICE PACKAGES, PRICE TABLE ========== */
.service-packages {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 38px 0 24px 0;
}
.package-card {
    background: #162138;
    color: #F7C948;
    border: 1.5px solid #F7C94899;
    border-radius: 18px;
    box-shadow: 0 2px 20px 0 #F7C9481A;
    padding: 30px 22px 28px 22px;
    flex: 1 1 220px;
    min-width: 190px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.14s, border-color 0.14s, transform 0.14s;
}
.package-card:hover {
    border-color: #FFD060;
    box-shadow: 0 6px 40px #F7C94840;
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 900px) {
    .service-packages { flex-direction: column; }
    .package-card { min-width: 0; width: 100%; }
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #162138;
    margin: 16px 0;
    border-radius: 14px;
    overflow: hidden;
    color: #F7C948;
    box-shadow: 0 5px 18px #1A365D22;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1rem;
}
.price-table thead th {
    background: #223B60;
    padding: 16px 13px;
    color: #F7C948;
    font-size: 1.10rem;
    font-weight: 700;
    border-bottom: 2px solid #334C77;
    text-align: left;
}
.price-table tbody td {
    padding: 13px 13px;
    color: #F4F5F7;
    border-bottom: 1px solid #24395F;
}
.price-table tbody tr:last-child td {
    border-bottom: none;
}
@media (max-width: 760px) {
    .price-table thead { display: none; }
    .price-table, .price-table tbody, .price-table tr { display: block; width: 100%; }
    .price-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 11px 12px;
        border-bottom: 1px solid #24395F;
        font-size: 1em;
    }
}

/* ========== SECTION VARIANTS ========== */
.features-section, .express-benefits-section, .delivery-benefits-section {
    background: #162138;
    border-radius: 26px;
    box-shadow: 0 1px 20px 0 #1A365D25;
}
.values-section {
    background: #1A365D;
    border-radius: 26px;
    box-shadow: 0 1px 22px 0 #F7C94822;
}
.service-overview-section, .service-included-section {
    background: #F4F5F7;
    color: #1A365D;
    border-radius: 22px;
}
.city-delivery-section {
    background: #162138;
    border-radius: 28px;
    box-shadow: 0 1px 20px #223B6035;
}
.cookie-policy-section, .privacy-policy-section, .gdpr-info-section, .terms-section, .thank-you-section {
    border-radius: 24px;
}

/* ========== LISTS, ICONS, DETAILS ========== */
ul.service-list, ul.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 26px 0;
    color: #F4F5F7;
    font-weight: 500;
}
ul.advantage-list li img, ul.service-list li img, .contact-details-list ul li img, .contact-info-short ul li img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    vertical-align: -5px;
    filter: drop-shadow(0 0 7px #F7C94899);
}
.contact-info-short ul, .contact-details-list ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 20px;
}

.quick-contact-cta, .contact-cta { margin-top: 24px; }

/* ========== MAP/DIRECTIONS, TEXT SECTION ========== */
.directions {
    background: #223B60;
    color: #F7C948;
    padding: 26px 18px;
    border-radius: 16px;
    margin-top: 24px;
    box-shadow: 0 2px 20px #1A365D18;
    font-size: 1.1rem;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.text-section {
    margin-bottom: 24px;
    color: #F4F5F7;
}

/* ========== FOOTER ========== */
footer {
    background: #131B2A;
    color: #F4F5F7;
    width: 100%;
    padding: 44px 0 26px 0;
    margin-top: 80px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 18px;
}
.footer-container a img { height: 40px; }
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.footer-nav a {
    color: #F7C948;
    font-weight: 500;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    padding: 2px 12px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
    background: #223B60;
    color: #FFD060;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #D7E0EA;
    font-size: 15px;
    align-items: center;
}
@media (min-width: 750px) {
    .footer-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    .footer-nav { justify-content: flex-start; }
    .footer-contact { align-items: flex-end; }
}

/* ========== MODAL/CARD STYLES (GENERIC) ========== */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #162138;
    border-radius: 18px;
    box-shadow: 0 2px 20px 0 #1A365D22;
    padding: 24px;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .text-image-section { flex-direction: column; align-items: flex-start; }
    .content-grid { flex-direction: column; }
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
.feature-item, .feature_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* ========== COOKIE BANNER & MODAL ========== */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    background: #223B60;
    color: #F7C948;
    box-shadow: 0 -4px 32px #1A365D55;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 26px 18px 18px 18px;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    transition: transform 0.25s;
    border-radius: 14px 14px 0 0;
}
.cookie-banner .btn-group{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
    margin: 0;
    min-width: 110px;
    padding: 9px 16px;
    font-size: 0.97rem;
}

.cookie-modal-overlay {
    position: fixed;
    left: 0;top: 0;right: 0;bottom: 0;
    background: rgba(14,17,27,0.78);
    z-index: 4010;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s;
}
.cookie-modal-overlay.active { opacity: 1; pointer-events: auto; }
.cookie-modal {
    background: #162138;
    color: #F7C948;
    border-radius: 20px;
    padding: 36px 20px 26px 20px;
    min-width: 330px;
    min-height: 220px;
    box-shadow: 0 2px 28px #1A365D80;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}
.cookie-modal h3 { color: #F7C948; margin-bottom: 10px; font-size: 1.3em; }
.cookie-modal .cookie-category {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
}
.cookie-modal label {
    color: #fffada;
    font-size: 1em;
    cursor: pointer;
}
.cookie-modal .btn-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.cookie-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #F7C948;
    color: #223B60;
    border: none;
    border-radius: 100%;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 8px 13px 8px 12px;
    cursor: pointer;
    box-shadow: 0 2px 14px #F7C94855;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    background: #FFD060;
}
.cookie-modal input[type=checkbox] {
    accent-color: #F7C948;
    width: 17px;
    height: 17px;
    border-radius: 6px;
    border: 2px solid #223B60;
}

/* ========== MICRO-INTERACTIONS & TRANSITIONS ========== */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .mobile-nav a, .package-card, .feature_item, .value_item, .service-block, .testimonial-card, .cookie-banner, .cookie-modal, .mobile-menu-close {
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.12s, transform 0.125s;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .section { padding: 28px 7px; margin-bottom: 38px; }
    .container { padding: 0 6px; }
    .footer-container {
        padding: 0 6px;
        gap: 18px;
        flex-direction: column;
        align-items: center;
    }
    .content-wrapper { gap: 13px; }
    .feature_item, .value_item, .service-block, .package-card {
        min-width: 0;
        width: 100%;
        padding: 18px 10px;
    }
    .testimonial-card { min-width: 0; width: 100%; }
    .service-packages { flex-direction: column; gap: 16px; }
    .footer-contact { align-items: center; }
}
@media (max-width: 480px) {
    .hero-section h1 { font-size: 1.3rem; }
    .footer-container a img { height: 33px; }
    .footer-contact span { font-size: 13px; }
    .header-container {gap: 6px;}
    .mobile-nav a {font-size:1.08rem;}
}

/* ========== Z-INDEX LAYERS ========== */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 100; }
.mobile-menu { z-index: 1030; }
.mobile-menu-close { z-index: 1040; }
.cookie-banner { z-index: 2010; }
.cookie-modal-overlay { z-index: 4010; }

/* ========== PRINT STYLE ========== */
@media print {
    * { background: transparent !important; color: #000 !important; box-shadow: none !important; }
    header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
