/* RESET & BASE TYPOGRAPHY (Elegant Classic) */
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%;
    vertical-align: baseline;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.7;
    background: #FAFAFA;
    color: #23292F;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: #B20027;
    transition: color 0.2s;
}
ul, ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}
strong, b {
    font-weight: 700;
}
hr {
    border: none;
    border-top: 1px solid #E3E3E3;
    margin: 40px 0;
}

/* TYPOGRAPHY SCALE & STYLE */
h1 {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #B20027;
    letter-spacing: 0.5px;
}
h2 {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #23292F;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
h3 {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #8D1131;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}
h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-weight: 500;
}
p, li {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 1rem;
    color: #23292F;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER & NAVIGATION */
header {
    background: #fff;
    border-bottom: 1px solid #E3E3E3;
    box-shadow: 0 4px 24px rgba(35, 41, 47, 0.05);
    position: relative;
    z-index: 20;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 1rem;
    color: #23292F;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}
.main-nav a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #B20027;
    opacity: 0;
    transition: opacity 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
    color: #B20027;
}
.main-nav a:hover:after {
    opacity: 1;
}

.cta-btn {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 1.125rem;
    font-weight: 600;
    background: #B20027;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    box-shadow: 0 4px 16px rgba(178,0,39,0.08);
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s, transform 0.12s;
    margin-left: 20px;
    letter-spacing: 0.5px;
    text-align: center;
    display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
    background: #8D1131;
    box-shadow: 0 2px 16px rgba(178,0,39,0.17);
    transform: translateY(-2px) scale(1.025);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #B20027;
    font-size: 2rem;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 30;
    transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #F3E9EC;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #FFF;
    box-shadow: -4px 0 32px rgba(35, 41, 47, 0.13);
    z-index: 100;
    padding: 32px;
    transform: translateX(100vw);
    transition: transform 0.35s cubic-bezier(.54,.07,.41,.99);
}
.mobile-menu.open {
    display: flex;
    transform: translateX(0);
    animation: slideInMenu 0.32s cubic-bezier(.65,.05,.36,1) both;
}
@keyframes slideInMenu {
    from { transform: translateX(100vw); }
    to { transform: translateX(0); }
}
@keyframes slideOutMenu {
    from { transform: translateX(0); }
    to { transform: translateX(100vw); }
}
.mobile-menu-close {
    background: none;
    border: none;
    color: #B20027;
    font-size: 2rem;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 110;
    padding: 8px;
    border-radius: 7px;
    transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
    background: #F3E9EC;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
    width: 100%;
}
.mobile-nav a {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 1.25rem;
    color: #23292F;
    font-weight: 600;
    line-height: 1.3;
    padding: 12px 0;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #F3E9EC;
    color: #B20027;
}

@media (max-width: 1024px) {
    .main-nav {
        gap: 20px;
    }
    header .container {
        gap: 8px;
    }
}
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }
    .cta-btn {
        margin-left: 0;
    }
    .mobile-menu-toggle {
        display: inline-block;
    }
}

/* HERO SECTIONS */
.hero {
    background: #F8F3F4;
    border-bottom: 1px solid #E3E3E3;
    padding: 60px 0 40px 0;
    margin-bottom: 40px;
    min-height: 250px;
}
.hero .container,
.hero .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
}
.hero h1 {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 2.3rem;
    max-width: 650px;
    color: #B20027;
}
.hero p {
    font-size: 1.18rem;
    color: #23292F;
    margin-bottom: 0;
}
@media (max-width:700px) {
    .hero {
        padding: 36px 0 28px 0;
        min-height: 140px;
        margin-bottom: 24px;
    }
    .hero h1 { font-size: 1.45rem; }
}

/* SECTIONS LAYOUTS */
section {
    padding: 40px 0;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
@media (max-width: 540px) {
    section, .section {
        padding: 26px 0;
    }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 22px 0 rgba(35,41,47,0.06);
    padding: 28px 22px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 220px;
    flex: 1 1 260px;
}

.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;
        gap: 18px;
        align-items: flex-start;
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
    margin: 20px 0 10px 0;
}
.features-grid > div {
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 2px 14px 0 rgba(178,0,39,0.07);
    padding: 28px 18px 20px 18px;
    width: 280px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: box-shadow 0.18s;
}
.features-grid > div:hover {
    box-shadow: 0 4px 22px 0 rgba(178,0,39,0.14);
}
.features-grid img {
    width: 36px;
    margin-bottom: 7px;
    opacity: 0.85;
}
.features-grid h3 {
    font-size: 1.18rem;
    color: #8D1131;
    margin-bottom: 4px;
}
.features-grid p {
    font-size: 1rem;
    color: #23292F;
}

/* SERVICES & BLOG LIST */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 18px;
}
.services-list > div {
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 2px 14px 0 rgba(178,0,39,0.07);
    padding: 32px 24px 22px 24px;
    min-width: 240px;
    min-height: 145px;
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: box-shadow 0.18s;
}
.services-list > div:hover {
    box-shadow: 0 4px 22px 0 rgba(178,0,39,0.13);
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.blog-list article {
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 2px 14px 0 rgba(178,0,39,0.07);
    padding: 30px 20px 18px 20px;
    min-width: 220px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-list h3 {
    color: #B20027;
}
.blog-list a {
    align-self: flex-start;
    margin-top: 5px;
    font-size: 1rem;
    color: #8D1131;
    text-decoration: underline;
    transition: color 0.14s;
}
.blog-list a:hover { color: #B20027; }

/* TESTIMONIALS */
.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 16px;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 32px 20px 20px;
    background: #F3E9EC;
    border-radius: 12px;
    box-shadow: 0 2px 10px 0 rgba(35,41,47,0.09);
    min-width: 260px;
    flex: 1 1 330px;
    margin-bottom: 12px;
    transition: box-shadow 0.18s;
    position: relative;
}
.testimonial-card:hover {
    box-shadow: 0 6px 24px 0 rgba(178,0,39,0.15);
}
.testimonial-card p {
    font-size: 1.07rem;
    color: #23292F;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-style: italic;
    margin: 0 0 4px 0;
}
.testimonial-card strong {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #8D1131;
    margin-bottom: 2px;
}
.stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
}
.stars img {
    width: 19px;
    height: 19px;
    opacity: 1;
}
@media (max-width: 770px) {
    .testimonials-slider {
        gap: 20px;
        flex-direction: column;
    }
    .testimonial-card {
        padding: 16px 18px 16px 14px;
    }
}

/* CTA SECTION */
.cta-section {
    background: #B20027;
    color: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 16px rgba(178,0,39,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px 0 36px 0;
    margin-top: 30px;
}
.cta-section h2 {
    color: #fff;
}
.cta-section .cta-btn {
    margin-left: 0;
    background: #fff;
    color: #B20027;
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
    background: #F3E9EC;
    color: #8D1131;
}

/* CONTACT & MAP */
.contact-details {
    background: #F8F3F4;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-details ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 1.08rem;
}
.confirmation-note {
    margin-bottom: 16px;
    font-size: 1.01rem;
    color: #8D1131;
    background: #F8F3F4;
    border-radius: 10px;
    padding: 16px 18px;
}
.cta-contact {
    margin-top: 18px;
}

.map-placeholder {
    width: 100%;
    max-width: 560px;
    min-height: 180px;
    background: #EDEDED;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 7px rgba(35,41,47,0.05);
    margin: 12px auto 0 auto;
}
.map-placeholder img {
    width: 38px;
    opacity: 0.45;
}

/* FOOTER */
footer {
    background: #23292F;
    color: #fff;
    padding: 48px 0 28px 0;
}
.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    min-width: 160px;
}
.footer-brand span {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    color: #EDEDED;
    font-size: 1.05rem;
    opacity: 0.88;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
    min-width: 160px;
}
.footer-nav a {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    color: #EDEDED;
    font-size: 1rem;
    opacity: 0.9;
    transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: #fff;
    opacity: 1;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 200px;
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #EDEDED;
    font-size: 1rem;
}
.footer-social {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.footer-social a {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    padding: 7px;
    transition: background 0.17s, box-shadow 0.19s;
    box-shadow: 0 1px 6px rgba(178,0,39,0.07);
}
.footer-social a:hover, .footer-social a:focus {
    background: #B20027;
}
.footer-social img {
    width: 22px;
    height: 22px;
}
@media (max-width: 880px) {
    .footer-wrapper {
        gap: 18px;
    }
}
@media (max-width: 690px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 36px;
    }
    footer {
        padding: 32px 0 18px 0;
    }
}

/* THANK YOU SECTION */
.thankyou-note {
    background: #F8F3F4;
    border-radius: 12px;
    padding: 28px 22px;
    margin-bottom: 18px;
    text-align: center;
}

.return-link {
    text-align: center;
    margin-top: 28px;
}

/* SECTIONS, UL & OL */
ul, ol {
    margin-bottom: 18px;
}
ul li, ol li {
    list-style: disc inside;
    margin-bottom: 6px;
    padding-left: 5px;
}

/* INTERACTIVE BUTTONS */
button {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 1rem;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 20px 14px 20px 14px;
    background: rgba(35,41,47,0.96);
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    z-index: 5000;
    box-shadow: 0 -4px 16px rgba(35,41,47,0.13);
    animation: cookiesin 0.41s cubic-bezier(.7,.11,.38,.92) both;
}
@keyframes cookiesin { 
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
    flex: 1 1 520px;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 1rem;
    color: #fff;
    margin-right: 18px;
}
.cookie-banner-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.cookie-btn {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 1rem;
    padding: 9px 24px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 1px 6px rgba(178,0,39,0.10);
    cursor: pointer;
    margin-left: 0;
    letter-spacing: 0.1px;
    transition: background 0.19s, color 0.14s;
}
.cookie-btn.accept {
    background: #B20027;
    color: #fff;
    font-weight: 600;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
    background: #8D1131;
}
.cookie-btn.reject {
    background: #fff;
    color: #B20027;
    font-weight: 600;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #F3E9EC;
    color: #8D1131;
}
.cookie-btn.settings {
    background: #FAFAFA;
    color: #23292F;
    font-weight: 400;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
    background: #EDEDED;
}
@media (max-width: 700px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 19px;
        padding: 20px 6px 22px 6px;
    }
    .cookie-banner-content {
        margin-right: 0;
        font-size: 0.97rem;
    }
    .cookie-banner-actions {
        flex-direction: column;
        gap: 10px;
    }
}

/* COOKIE MODAL POPUP */
.cookie-modal-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(35,41,47,0.60);
    z-index: 5100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalfadein 0.3s cubic-bezier(.6,.09,.36,1) both;
}
@keyframes modalfadein { from { opacity:0;} to { opacity:1; } }
.cookie-modal {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 36px rgba(35,41,47,0.17);
    padding: 34px 34px 28px 34px;
    max-width: 468px;
    width: 95vw;
    display: flex;
    flex-direction: column;
    gap: 21px;
    position: relative;
    animation: popupin 0.28s cubic-bezier(.62,.02,.41,.99) both;
}
@keyframes popupin { from { transform: scale(0.9); opacity:0; } to { transform: scale(1); opacity:1; } }
.cookie-modal h2 {
    color: #B20027;
    margin-bottom: 13px;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 1.05rem;
    color: #23292F;
}
.cookie-category input[type=checkbox] {
    accent-color: #B20027;
    width: 18px;
    height: 18px;
}
.cookie-category.disabled {
    color: #aaa;
}
.cookie-modal-actions {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 8px;
}
.close-cookie-modal {
    background: none;
    border: none;
    color: #B20027;
    font-size: 1.6rem;
    position: absolute;
    top: 16px;
    right: 18px;
    cursor: pointer;
    border-radius: 8px;
    padding: 3px 7px;
    transition: background 0.14s;
}
.close-cookie-modal:hover, .close-cookie-modal:focus {
    background: #F3E9EC;
}
@media (max-width: 520px) {
    .cookie-modal {
        padding: 19px 7vw 19px 7vw;
        max-width: 98vw;
    }
}

/* RESPONSIVE LAYOUTS - Mobile First */
@media (max-width: 1080px) {
    .container { max-width: 960px; }
    .features-grid > div, .services-list > div, .blog-list article {
        min-width: 160px;
        flex: 1 1 240px;
    }
}
@media (max-width: 900px) {
    .features-grid, .services-list, .blog-list, .testimonials-slider, .card-container, .content-grid {
        gap: 14px;
    }
}
@media (max-width: 690px) {
    .features-grid, .services-list, .blog-list, .testimonials-slider, .card-container, .content-grid {
        flex-direction: column;
        gap: 20px;
    }
    .features-grid > div, .services-list > div, .blog-list article {
        min-width: 0;
    }
}

/* UTILITIES & MISC */
::-webkit-scrollbar { width: 8px; background: #FAFAFA; }
::-webkit-scrollbar-thumb { background: #EDEDED; border-radius: 8px; }
::-webkit-input-placeholder { color: #969393; opacity: 1; }
::-moz-placeholder { color: #969393; opacity: 1; }
::-ms-input-placeholder { color: #969393; opacity: 1; }
::placeholder { color: #969393; opacity: 1; }

/* Transitions for interactive elements */
a, .cta-btn, button, .card {
    transition: background 0.18s, color 0.18s, border 0.17s, box-shadow 0.17s, transform 0.13s;
}

/* Prevent content overlap by consistent gaps/margins */
.card, .services-list > div, .features-grid > div, .blog-list article, .testimonial-card, .card {
    margin-bottom: 20px;
}
section, .section {
    margin-bottom: 60px;
}

/* Z-index for UI layered elements */
.mobile-menu { z-index: 100; }
.cookie-banner { z-index: 5000; }
.cookie-modal-backdrop { z-index: 5100; }

/* Hide visually only */
.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    white-space: nowrap;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
}
