/* ==== 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,
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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F3F8FC;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background-color: #F3F8FC;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205073;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #ac9540;
  outline: none;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #205073;
  margin-bottom: 16px;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem;   letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem;  }
h6 { font-size: 1rem;    }
p {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #363636;
  margin-bottom: 18px;
}
strong { font-weight: 700; }

/* ==== BRAND COLORS & FONTS ==== */
:root {
  --color-primary: #205073;
  --color-secondary: #4DA18E;
  --color-accent: #F3F8FC;
  --color-gold: #ac9540;
  --color-dark: #222;
  --color-light: #fff;
  --color-grey: #ececec;
  --color-shadow: rgba(32, 80, 115, 0.07);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ==== CONTAINER & SECTION ALIGNMENTS ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== MAIN NAVIGATION ==== */
header {
  background: #fff;
  box-shadow: 0 2px 12px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 1001;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: var(--font-display);
}
.main-nav > a img {
  height: 38px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}
.main-nav ul li a {
  color: var(--color-primary);
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: var(--color-gold);
}
.main-nav .cta-btn {
  margin-left: 32px;
  padding: 10px 24px;
  border-radius: 28px;
  background: var(--color-primary);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 2px 16px var(--color-shadow);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: 2px solid var(--color-gold);
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: var(--color-gold);
  color: var(--color-light);
  box-shadow: 0 6px 24px var(--color-shadow);
}

/* ==== HERO & HEADER BANNER ==== */
.hero {
  background: linear-gradient(115deg, #f3f8fc 50%, #fff 100%);
  padding-top: 48px;
  padding-bottom: 48px;
  border-bottom: 2px solid var(--color-grey);
}
.hero .container {
  align-items: center;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.4rem;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 700;
}
.hero p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 26px;
}
.hero .cta-btn {
  margin-top: 10px;
}

/* ==== SECTIONS ==== */
.features {
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 2px 20px var(--color-shadow);
  margin-bottom: 60px;
  padding: 32px 0;
}
.features h2 {
  color: var(--color-primary);
  margin-bottom: 18px;
}
.features ul {
  list-style: disc inside;
  padding-left: 1em;
}
.features li {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.about-preview, .about, .team, .why-us, .contact {
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 2px 20px var(--color-shadow);
  margin-bottom: 60px;
}
.about-preview ul,
.about ul,
.team ul,
.why-us ul,
.text-section ul {
  padding-left: 1em;
  margin-bottom: 1em;
}
.about-preview .cta-btn {
  margin-top: 18px;
}

.services-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px var(--color-shadow);
  margin-bottom: 60px;
}
.services-preview .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  align-items: stretch;
}
.service-card {
  flex: 1 1 248px;
  min-width: 230px;
  background: var(--color-accent);
  border-radius: 12px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-gold);
  transition: box-shadow 0.18s, border-left 0.22s;
  position: relative;
}
.service-card h3 {
  font-size: 1.18rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.service-card span {
  color: var(--color-gold);
  font-weight: bold;
  margin-top: 16px;
  font-size: 1rem;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 24px var(--color-shadow);
  border-left: 5px solid var(--color-primary);
  z-index: 2;
}
.service-list .cta-btn {
  align-self: flex-end;
  margin-top: 12px;
}

.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  background: var(--color-accent);
  border-radius: 10px;
  overflow: hidden;
  font-size: 1.05rem;
  box-shadow: 0 1px 10px var(--color-shadow);
}
.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #e0e4ea;
}
.pricing-table th {
  background: #205073;
  color: #fff;
  font-family: var(--font-display);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.process {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px var(--color-shadow);
  margin-bottom: 60px;
}
.process ol {
  margin-left: 1.4em;
}
.process li {
  margin-bottom: 12px;
  font-size: 1.07rem;
}

.case-studies .case-study-card {
  background: var(--color-accent);
  border-left: 5px solid var(--color-gold);
  border-radius: 12px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 22px 20px 20px 20px;
  margin-bottom: 20px;
}
.case-studies .case-study-card h3 {
  color: var(--color-primary);
  margin-bottom: 6px;
}
.case-studies .case-study-card ul {
  padding-left: 1em;
}

.blog-list .blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 22px 20px 20px 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-secondary);
  transition: box-shadow 0.18s, border-left 0.22s;
}
.blog-list .blog-card:hover {
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 6px 28px var(--color-shadow);
  z-index: 2;
}
.blog-list .blog-card h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
}
.blog-list .blog-card span {
  display: inline-block;
  margin-top: 12px;
  color: var(--color-secondary);
  font-size: 0.98rem;
  font-weight: 600;
}

.contact .map-placeholder {
  background: var(--color-grey);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  font-size: 1rem;
  color: #333;
  box-shadow: 0 1px 7px rgba(32,80,115,0.03);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(94deg, var(--color-primary) 67%, var(--color-gold) 100%);
  color: #fff;
  border-radius: 22px;
  margin-bottom: 60px;
  box-shadow: 0 1px 16px rgba(32,80,115,0.08);
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 6px;
}
.cta-banner p {
  color: #f8f8f8;
}
.cta-banner .cta-btn {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-top: 15px;
}
.cta-banner .cta-btn:hover {
  background: var(--color-gold);
  color: #fff;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  margin-bottom: 60px;
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 2px 18px var(--color-shadow);
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonials h2 {
  color: var(--color-primary);
}
/* Multiple testimonial cards */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px;
  margin-bottom: 20px;
  background: #faf7ef;
  box-shadow: 0 1px 9px rgba(172,149,64,0.07);
  border-radius: 12px;
  border-left: 4px solid var(--color-gold);
  color: #2b2b2b;
  font-size: 1.08rem;
  min-width: 0px;
}
.testimonial-card p {
  color: #302500 !important;
  font-size: 1.1rem;
  font-family: var(--font-body);
  margin-bottom: 5px;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 0.99rem;
  font-style: italic;
}

/* ==== FOOTER ==== */
footer {
  background: #222e3b;
  color: #F3F8FC;
  padding: 38px 0 18px 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--color-secondary);
}
.footer-contact {
  font-family: var(--font-body);
  color: #F3F8FC;
  font-size: 1rem;
  margin-top: 8px;
}
.footer-contact a {
  color: #F3F8FC;
  text-decoration: underline;
}

/* ==== BUTTONS & CTA-BTN GLOBAL ==== */
.cta-btn,
button,
input[type="submit"] {
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  border-radius: 28px;
  background: var(--color-gold);
  color: #fff;
  padding: 11px 28px;
  text-align: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, border 0.16s;
  box-shadow: 0 2px 10px var(--color-shadow);
}
.cta-btn:hover, .cta-btn:focus,
button:hover, button:focus {
  background: var(--color-primary);
  color: var(--color-gold);
  outline: none;
  box-shadow: 0 6px 28px var(--color-shadow);
}

/* ==== FLEXBOX UTILITY LAYOUTS (per requirements) ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--color-shadow);
  background: #fff;
  padding: 22px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== TABLES ==== */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 24px;
}
th, td {
  text-align: left;
  padding: 10px 15px;
  border-bottom: 1px solid #ebebeb;
  font-family: var(--font-body);
}
th {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-gold);
  cursor: pointer;
  margin-right: 18px;
  margin-top: 2px;
  z-index: 1101;
  position: relative;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  height: 100vh;
  z-index: 1500;
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(0.67, 0, 0.33, 1);
  box-shadow: 0 0 48px rgba(32,80,115,0.15);
  padding-top: 36px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 1502;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 82px;
  align-items: flex-start;
  width: 80%;
  margin-left: 32px;
}
.mobile-nav a {
  font-size: 1.23rem;
  color: var(--color-primary);
  font-weight: 600;
  padding: 9px 0 9px 6px;
  border-left: 4px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: color 0.18s, border-left 0.16s, background 0.16s;
  font-family: var(--font-display);
  min-width: 180px;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--color-gold);
  background: #f7f3e2;
  border-left: 4px solid var(--color-gold);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #222e3b;
  color: #fff;
  box-shadow: 0 -4px 30px rgba(32,80,115,0.17);
  padding: 24px 20px;
  z-index: 1700;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  animation: slideupfade 0.6s cubic-bezier(.39,.57,.56,.95);
  font-size: 1.08rem;
}
.cookie-banner p {
  margin-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 20px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cta-btn {
  background: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 8px 24px;
  margin: 0;
  transition: background 0.19s, color 0.19s;
  box-shadow: 0 1px 5px var(--color-shadow);
}
.cookie-banner button:nth-child(2) {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--color-primary);
  color: var(--color-gold);
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-secondary);
  color: #fff;
  border: none;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,80,115,0.37);
  z-index: 1750;
  align-items: center;
  justify-content: center;
  animation: fadein 0.33s cubic-bezier(.42,.23,.62,.84);
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #232323;
  border-radius: 20px;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 8px 48px rgba(32,80,115,0.23);
  max-width: 380px;
  width: 92vw;
  min-width: 0;
  font-size: 1.05rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cookie-modal-content h2 {
  margin-bottom: 9px;
  color: var(--color-primary);
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 18px;
  border-radius: 18px;
  position: relative;
  background: #ebebeb;
  transition: background 0.16s;
  outline: none;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
  box-shadow: 0 1px 2px rgba(32,80,115,0.12);
}
.cookie-toggle:checked:before {
  left: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 1.55rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.17s;
  z-index: 2;
}
.cookie-modal-close:hover { color: var(--color-gold); }
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  font-size: 1rem;
  padding: 9px 22px;
}

/* ==== FORM STYLING ==== */
input, select, textarea {
  border: 1px solid #cfcfcf;
  font-size: 1.05rem;
  border-radius: 6px;
  padding: 10px 12px;
  width: 100%;
  margin-bottom: 18px;
  font-family: var(--font-body);
  background: #fafbfc;
  color: #222;
  box-shadow: 0 1px 3px rgba(32,80,115,0.03) inset;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid var(--color-secondary);
  background: #f7f9fa;
}
label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 7px;
  display: block;
  font-weight: 600;
}

/* ==== ANIMATIONS ==== */
@keyframes slideupfade {
  0% { opacity: 0; transform: translateY(70px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ==== RESPONSIVE DESIGN (MOBILE FIRST) ==== */
/* --- Default (mobile) is column-based layout and stacking --- */
.container,
.content-wrapper,
.card-container,
.content-grid,
.text-image-section,
.features,
.about-preview,
.services-preview,
.team,
.why-us,
.about,
.process {
  flex-direction: column;
}

.main-nav ul, .footer-nav {
  flex-direction: column;
  gap: 16px;
}
.main-nav {
  flex-direction: row;
}
.main-nav > a {
  margin-right: 8px;
}
.main-nav .cta-btn {
  margin-left: 0;
  margin-top: 10px;
}

/* --- Hide main nav + show burger on mobile --- */
@media (max-width: 990px) {
  .main-nav ul,
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 991px) {
  .main-nav ul {
    display: flex !important;
    flex-direction: row;
    gap: 32px;
  }
  .main-nav .cta-btn {
    display: inline-block !important;
    margin-left: 32px;
    margin-top: 0;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
  .footer-nav {
    flex-direction: row;
    gap: 32px;
    justify-content: flex-start;
  }
}

@media (min-width: 701px) {
  .features,
  .about-preview,
  .about,
  .services-preview,
  .team,
  .why-us,
  .contact,
  .process {
    padding-left: 32px;
    padding-right: 32px;
  }
  .content-wrapper,
  .container {
    flex-direction: column;
  }
}

@media (min-width: 769px) {
  .content-wrapper {
    gap: 34px;
  }
  .hero .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .section {
    padding-left: 50px;
    padding-right: 50px;
  }
  .features ul, .about-preview ul, .about ul, .team ul, .why-us ul, .text-section ul {
    font-size: 1.09rem;
  }
  .about-preview .text-section, .about .text-section, .team .text-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 44px;
    display: flex;
  }
  .services-preview .service-list, .services .service-list {
    flex-direction: row;
  }
  .service-card {
    max-width: 320px;
    flex: 1 1 300px;
  }
  .blog-list .blog-card {
    max-width: 470px;
    flex: 1 1 340px;
  }
  .case-studies .case-study-card {
    max-width: 520px;
    flex: 1 1 340px;
  }
  .testimonials .content-wrapper {
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

@media (min-width: 1025px) {
  .main-nav {
    height: 88px;
    padding: 0 40px;
  }
  .section {
    padding-left: 90px;
    padding-right: 90px;
  }
  .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 1160px;
  }
  .cta-banner {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .service-card, .case-study-card, .blog-list .blog-card {
    max-width: 100%;
    min-width: 0;
    margin-right: 0;
  }
  .footer-nav {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.05rem; }
}
@media (max-width: 480px) {
  .section {
    margin-bottom: 30px;
    padding-left: 9px; padding-right: 9px; padding-top: 24px; padding-bottom: 24px;
  }
  .hero {
    padding-top: 24px; padding-bottom: 24px;
  }
  .cta-banner { padding-left: 11px; padding-right: 11px; }
}

/* ==== PRINT CLEANUP ==== */
@media print {
  header, footer, .main-nav, .cta-banner, .mobile-menu, .cookie-banner,.cookie-modal { display: none !important; }
  section, .container { box-shadow: none !important; background: #fff !important; }
}

/* ==== MICRO-INTERACTIONS ==== */
.card, .service-card, .case-study-card, .testimonial-card, .blog-list .blog-card {
  transition: box-shadow 0.18s, border-left 0.20s, border 0.18s;
}
.card:hover, .service-card:hover, .case-study-card:hover, .blog-list .blog-card:hover {
  box-shadow: 0 8px 32px rgba(32,80,115,0.14);
  z-index: 4;
}
input[type="checkbox"].cookie-toggle:focus {
  outline: 1.5px solid var(--color-secondary);
}
input[type="checkbox"].cookie-toggle[disabled] {
  opacity: 0.64;
  cursor: not-allowed;
}

/* ==== LUXURY REFINEMENT ==== */
.card, .service-card, .case-study-card, .testimonial-card, .blog-list .blog-card {
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--color-shadow);
}
hr {
  border: 0; border-top: 1px solid var(--color-gold); margin: 26px 0;
}

/* ==== SCROLLBAR STYLING ==== */
::-webkit-scrollbar {
  width: 9px; background: var(--color-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d1b451;
}

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px solid var(--color-gold);
}

::-moz-selection { background: #205073; color: #fff; }
::selection      { background: #205073; color: #fff; }

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