/* === CSS 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 {
    line-height:1.15;
    -webkit-text-size-adjust:100%;
}
body { 
    min-height: 100vh;
    background: #14282e;
    font-family:'Roboto', Arial, Helvetica, sans-serif;
    color: #edece7;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    background-color: #14282e;
}
img,svg {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: #CB7A22;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #ef9f48;
}
ul, ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}
strong {
    font-weight: bold;
}
input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    box-sizing: border-box;
}

/* === GOOGLE FONTS IMPORT === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');

/* === COLOR VARIABLES & FALLBACKS === */
:root {
    --primary: #21505A;
    --primary-dark: #15343c;
    --secondary: #EDEBE6;
    --secondary-dark: #14282e;
    --accent: #CB7A22;
    --accent-bright: #EF9F48;
    --neon: #13fabc;
    --white: #fff;
    --black: #101418;
    --shadow: 0 3px 16px 0 rgba(0,0,0,0.14);
    --card-bg: #1C353B;
}

/* === LAYOUT STRUCTURE === */
.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: var(--card-bg);
    border-radius: 18px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    position: relative;
    padding: 24px 20px;
    flex: 1 1 280px;
    min-width: 260px;
    transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover,
.card:focus {
    box-shadow: 0 8px 26px 0 #13fabc45;
    border-color: var(--accent-bright);
    transform: translateY(-3px) scale(1.03);
    z-index:2;
}

.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;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    color: #15343c;
    padding: 20px 28px 20px 20px;
    margin-bottom: 24px;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(33,80,90,0.08);
    border-left: 5px solid var(--neon);
    max-width: 650px;
    transition: box-shadow 0.19s, transform 0.14s;
}
.testimonial-card:hover {
    box-shadow: 0 6px 22px #13fabc45;
    transform: translateY(-3px) scale(1.02);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 2px 16px #16353b33;
    padding: 28px 22px;
    min-width: 200px;
    width: 100%;
    max-width: 270px;
    transition: box-shadow 0.17s, border 0.18s, background 0.16s;
    margin-bottom: 20px;
}
.feature-item:hover {
    box-shadow: 0 8px 32px #ef9f4814;
    border: 1.5px solid var(--neon);
    background: #223c42;
}
.feature-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 4px var(--accent-bright));
}

.value-statements {
    padding: 16px 24px;
    background: #223c42;
    border-radius: 10px;
    box-shadow: 0 2px 8px #13fabc11;
    margin-bottom: 18px;
}

.certifications ul {
    margin: 12px 0 0 1em;
    color: #ef9f48;
    font-size: 16px;
}

.team-profiles {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 16px;
}

/* === NAVIGATION ==== */
header {
    background: #101418;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 12px #11212619;
    border-bottom: 2px solid #162c32;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 0 20px;
}
.logo-link img {
    height: 48px;
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-left: 18px;
}
.main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #EDEBE6;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.18s, box-shadow 0.18s, color 0.19s;
    position: relative;
}
.main-nav a:hover:not(.cta-button),
.main-nav a:focus:not(.cta-button) {
    background: #253349;
    color: var(--accent);
    box-shadow: 0 1px 7px #13fabc25;
}
.main-nav .cta-button {
    background: var(--accent);
    color: #fff;
    font-weight: bold;
    padding: 9px 20px;
    margin-left: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px #CB7A2233;
    border: none;
    transition: background 0.18s, box-shadow 0.19s, color 0.16s;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.main-nav .cta-button:hover,
.main-nav .cta-button:focus {
    background: var(--neon);
    color: #15343c;
    box-shadow: 0 4px 18px #13fabc88;
}

/* === MOBILE BURGER MENU === */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: var(--neon);
    font-size: 34px;
    border: none;
    cursor: pointer;
    z-index: 201;
    padding: 9px 12px;
    margin-left: 22px;
    border-radius: 6px;
    transition: background 0.18s, color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #13fabc16;
    color: var(--accent-bright);
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    background: #19363C;
    top: 0;
    right: 0;
    width: 92vw;
    max-width: 420px;
    height: 100vh;
    z-index: 203;
    padding: 38px 32px 24px 24px;
    box-shadow: -2px 0px 40px #13fabc66;
    transform: translateX(100%);
    transition: transform 0.37s cubic-bezier(.77,0,.18,1.02);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: #fffc;
    color: #21505A;
    border: none;
    font-size: 34px;
    font-weight: bold;
    border-radius: 10px;
    padding: 4px 14px 2px 14px;
    margin-bottom: 32px;
    margin-left: auto;
    cursor: pointer;
    box-shadow: 0 1.5px 7px #ef9f4815;
    transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: var(--accent-bright);
    color: #fff;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.mobile-nav a {
    color: var(--neon);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 12px 5px 12px 7px;
    transition: background 0.15s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
    background: #152b33;
    color: var(--accent);
}

/* Hide main nav/show burger on mobile */
@media (max-width: 1023px) {
    .main-nav {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: block;
    }
}
@media (min-width: 1024px) {
    .mobile-menu, .mobile-menu-toggle {
        display: none !important;
    }
}

/* === HERO, CTA & FEATURE SECTIONS === */
.hero-section {
    padding: 0 0 56px;
    background: linear-gradient(120deg, #19363c 0%, #21505A 100%);
    box-shadow: 0 6px 48px #13fabc11;
}
.hero-section .container {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.hero-section h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.7rem;
    color: var(--neon);
    margin-bottom: 20px;
    line-height: 1.18;
    text-shadow: 0 0 8px #13fabc22;
    font-weight: 800;
}
.hero-section p {
    font-size: 19px;
    color: #edece7;
    margin-bottom: 22px;
    opacity: 0.96;
}

.cta-section {
    padding: 48px 20px;
    background: #223c42;
    box-shadow: 0 4px 32px #13fabc14;
    border-radius: 18px;
    margin-bottom: 48px;
    margin-top: 16px;
}
.cta-section h2 {
    color: #EF9F48;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    text-shadow: 0 0 7px #13fabc17;
    font-weight: 700;
    margin-bottom: 14px;
}
.cta-section p {
    color: #edece7;
    font-size: 18px;
    margin-bottom: 18px;
}
.cta-section .cta-button {
    margin-top: 10px;
}

.features-section {
    background: #16353B;
    border-radius: 14px;
    padding: 44px 20px 38px 20px;
    margin-bottom: 60px;
    box-shadow: 0 6px 22px #13fabc12;
}
.features-section h2 {
    color: var(--neon);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 1.7rem;
}
.feature-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 18px;
}

/* === HEADINGS & TYPOGRAPHY === */
h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.1rem;
    color: var(--neon);
    font-weight: 800;
    text-shadow: 0 0 3px #13fabc27;
    margin-bottom: 16px;
}
h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.45rem;
    color: var(--accent-bright);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.01em;
}
h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.09rem;
    color: var(--neon);
    font-weight: 600;
    margin-bottom: 8px;
}
p, li, span, ul, ol {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.text-section {
    margin-bottom: 18px;
}
.text-section h2,
.text-section h3 {
    margin-top: 14px;
}
.text-section ul, .text-section ol {
    font-size: 16px;
    color: #ef9f48;
}

/* === RATINGS OVERVIEW === */
.ratings-overview {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    color: #EDEBE6;
    background: #19363C;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 2px 11px #13fabc09;
    gap: 13px;
    margin-top: 10px;
    font-weight: 500;
    width: fit-content;
}
.ratings-overview img {
    width: 28px;
    margin-right: 5px;
}

/* === CTA BUTTONS === */
.cta-button {
    background: linear-gradient(93deg, var(--accent), var(--accent-bright));
    color: #fff;
    padding: 10px 34px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    border-radius: 16px;
    box-shadow: 0 3px 16px #ef9f482d;
    transition: background 0.18s, box-shadow 0.18s, transform 0.17s;
    cursor: pointer;
    border: none;
    outline: none;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
    background: var(--neon);
    color: #15343c;
    box-shadow: 0 6px 26px #13fabc99;
    transform: translateY(-2px) scale(1.026);
}

/* === MAP EMBED, MISC CARDS === */
.map-embed {
    background: #223c42;
    color: #edece7;
    padding: 20px;
    border-radius: 12px;
    font-style: italic;
    font-size: 16px;
    text-align: center;
    margin-bottom:20px;
    box-shadow: 0 2px 10px #13fabc13;
}

/* === FOOTER === */
footer {
    background: #101418;
    border-top: 2px solid #162c32;
    box-shadow: 0 -2px 14px #11212623;
    padding: 32px 0 20px 0;
}
footer .container {
    display: flex;
    flex-direction: column;
}
footer .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
footer .logo-link img {
    height: 42px;
}
.footer-main-nav,
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.footer-main-nav a,
.footer-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #edece7cc;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 10px;
    border-radius: 7px;
    transition: background 0.13s, color 0.13s;
}
.footer-main-nav a:hover, .footer-nav a:hover,
.footer-main-nav a:focus, .footer-nav a:focus {
    background: var(--accent);
    color: #fff;
}
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 18px;
    align-items: center;
    justify-content: center;
    color: #ef9f48d1;
    font-size: 15px;
}
.footer-contact img {
    width: 17px;
    filter: brightness(1.6) 
            drop-shadow(0 2px 4px #13fabc23);
    vertical-align: middle;
    margin-right: 5px;
}
.social-links {
    display: flex;
    gap: 19px;
    margin: 10px 0 0 0;
    align-items: center;
}
.social-links a img {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 0 4px var(--accent));
    opacity: 0.94;
    transition: filter 0.2s, opacity 0.17s;
}
.social-links a:hover img,
.social-links a:focus img {
    filter: drop-shadow(0 0 8px var(--neon));
    opacity: 1;
}
.copy {
    color: #babbbbcc;
    font-size: 13px;
    margin-top: 6px;
    letter-spacing: 0.03em;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #101418e7;
    color: #edece7;
    z-index: 2100;
    box-shadow: 0 -2px 18px #13fabc34;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 32px;
    font-size: 1rem;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s, opacity 0.16s;
}
.cookie-banner.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cookie-banner .cookie-banner-text {
    flex: 1 1 auto;
    min-width: 140px;
    font-size: 16px;
    color: #ecf3f7;
}
.cookie-banner-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}
.cookie-banner button {
    background: var(--accent-bright);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 16px;
    font-family: 'Montserrat',sans-serif;
    font-weight: bold;
    transition: background 0.17s, color 0.13s, box-shadow 0.17s;
    box-shadow: 0 1.5px 6px #ef9f4810;
    cursor: pointer;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
    background: var(--neon);
    color: #15343c;
    box-shadow: 0 2.5px 16px #13fabc80;
}
.cookie-banner .cookie-banner-settings {
    background: #223c42;
    color: var(--neon);
    border: 1.5px solid var(--neon);
    margin-left: 3px;
}
.cookie-banner .cookie-banner-settings:hover,
.cookie-banner .cookie-banner-settings:focus {
    background: #13fabc;
    color: #15343c;
}

@media (max-width: 640px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 12px;
        font-size: 0.97rem;
    }
    .cookie-banner-actions {
        gap: 10px;
        flex-wrap: wrap;
    }
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
    position: fixed;
    z-index: 2500;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #16353bba;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.34s;
}
.cookie-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal-content {
    background: #101418fa;
    border-radius: 18px;
    padding: 34px 30px 24px 28px;
    min-width: 290px;
    max-width: 96vw;
    box-shadow: 0 9px 40px #13fabc75;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    color: #edece7;
    animation: cookiePopup 0.54s cubic-bezier(.69,-0.08,.27,1.29);
}
@keyframes cookiePopup {
    0% {transform:translateY(47px) scale(0.94) skewY(4deg); opacity:0;}
    100% {transform:translateY(0) scale(1) skewY(0deg); opacity:1;}
}
.cookie-modal-content h2 {
    color: var(--accent-bright);
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.4rem;
}
.cookie-modal-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cookie-modal-category {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 1rem;
}
.cookie-modal-category label {
    color: #ecf3f7;
    font-family: 'Roboto',sans-serif;
}
.cookie-category-switch {
    appearance:none;
    width: 42px;
    height: 23px;
    border-radius: 99px;
    background: #253349;
    position:relative;
    outline: none;
    margin-right: 0.5em;
    transition: background 0.2s;
    cursor:pointer;
}
.cookie-category-switch:checked {
    background: var(--neon);
}
.cookie-category-switch:before {
    content:'';
    position:absolute;
    top:3px;
    left:5px;
    width:16px;
    height:16px;
    border-radius:16px;
    background: #edece7;
    transition: left 0.2s, background 0.15s;
    box-shadow: 0 0.5px 5px #13fabc23;
}
.cookie-category-switch:checked:before {
    left:21px;
    background: var(--accent-bright);
}
.cookie-category-switch[disabled] {
    opacity:0.6;
    pointer-events: none;
}
.cookie-modal .modal-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-top: 16px;
}
.cookie-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--accent-bright);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    color: var(--neon);
}
.cookie-modal button {
    padding: 9px 20px;
    border-radius: 12px;
    border: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    background: var(--accent-bright);
    color: #fff;
    box-shadow: 0 2px 12px #cb7a2233;
    transition: background 0.15s, color 0.13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
    background: var(--neon);
    color: #15343c;
}
.cookie-modal .modal-actions .cookie-modal-cancel {
    background: #28343a;
    color: var(--accent-bright);
    border: 1.5px solid var(--accent-bright);
}
.cookie-modal .modal-actions .cookie-modal-cancel:hover {
    background: #ef9f48;
    color: #fff;
}


/* =======================
   RESPONSIVE QUERIES
========================*/
@media (max-width: 1180px) {
    .feature-grid,
    .card-container,
    .content-grid,
    .team-profiles {
        gap: 19px !important;
    }
}
@media (max-width: 900px) {
    .container {
        padding: 0 10px;
    }
    .hero-section .container {
        min-height: 200px;
    }
    .feature-grid {
        gap: 17px;
    }
    .card-container,.content-grid {
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .hero-section h1 {font-size: 2rem;}
    h1 {font-size:1.32rem;}
    h2 {font-size:1.08rem;}
    .cta-section h2 {font-size:1.1rem;}
    .feature-item {max-width:96vw;}
    .feature-grid {flex-direction:column; align-items:stretch;}
    .content-grid, .card-container, .team-profiles {flex-direction:column; gap:13px;}
    .section, .cta-section, .features-section {padding: 27px 7px;}
    .testimonial-card {padding:18px 11px 18px 11px;}
    .content-wrapper {gap:14px;}
    .main-nav .cta-button {margin-left:0;}
    .footer-main-nav,.footer-nav,.footer-contact,.social-links{flex-direction:column;align-items:flex-start;gap:11px;}
}
@media (max-width: 580px) {
    html { font-size: 98%; }
    .container{padding:0 4px;}
    .hero-section {padding:0 0 34px;}
    .cta-section{padding:18px 3px;}
    .features-section{padding:12px 3px 24px 3px;}
    .section{padding:18px 2px;}
}

/* More spacing for stacked elements on small screens */
@media (max-width: 500px) {
    .footer-contact, .social-links {gap:7px;}
    .testimonial-card{padding:13px 5px;}
}

/* === VISUAL EFFECTS FOR TECH FUTURISTIC === */
body, .hero-section, .features-section,
.cta-section, .section, .card, .feature-item {
    /* Futuristic neon text glow where appropriate */
}
.feature-item h3, h1, .hero-section h1 {
    text-shadow:0 0 10px #13fabc60,0 2px 10px #19363c33;
}
.feature-item, .testimonial-card, .card {
    box-shadow: 0 2px 19px #13fabc13;
}
.card:hover, .feature-item:hover, .cta-button:hover {
    box-shadow: 0 6px 26px #13fabc49,0 1.5px 18px #CB7A2214;
}
.cta-button, .feature-item, .card, .cta-section, .features-section, footer, header {
    border-radius: 14px;
    /* Rounded corners for modern look */
}

::-webkit-scrollbar {
    width:8px;
    background: #16353B;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(120deg,#21505A 80%,#13fabc);
    border-radius: 8px;
}

/* ============ END CSS ============ */
