/* 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;}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {  display: block;}
body {  line-height: 1;}
ol, ul {  list-style: none;}
blockquote, q {  quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {  content: '';  content: none;}
table {  border-collapse: collapse;  border-spacing: 0;}
:root {
  --color-primary: #0C2D48;
  --color-secondary: #67A3D9;
  --color-accent: #F5F8FA;
  --color-warm-bg: #FFEFE4;
  --color-card-bg: #FFFFFF;
  --color-warm1: #FFB269;
  --color-warm2: #FFDEB5;
  --color-btn: #FE9746;
  --color-btn-hover: #F3892A;
  --color-shadow: rgba(12,45,72,0.08);
  --color-shadow-heavy: rgba(12,45,72,0.12);
  --border-radius: 18px;
  --font-display: 'Montserrat', Helvetica, Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --text-dark: #222426;
  --text-light: #FAFAFC;
  --color-success: #4BCB8B;
  --color-error: #E05B5B;
  --menu-overlay-bg: rgba(12,45,72,0.96);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--color-warm-bg);
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

header, footer {
  background: var(--color-accent);
  box-shadow: 0 2px 12px var(--color-shadow);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GLOBAL FLEX/SECTION LAYOUTS */
.section,
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  box-shadow: 0 6px 30px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 270px;
  flex: 1 1 270px;
}
.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;
  background: var(--color-warm2);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 3px 18px var(--color-shadow);
  color: var(--text-dark);
  flex: 1 1 300px;
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER NAVIGATION */
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0 18px 0;
  flex-wrap: wrap;
}
header nav a img {
  height: 42px;
  margin-right: 14px;
  vertical-align: middle;
}
header nav a {
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  border-radius: 7px;
  display: block;
  transition: background 0.22s, color 0.22s;
  padding: 7px 14px;
}
header nav a.cta {
  background: var(--color-btn);
  color: var(--text-light);
  border-radius: 24px;
  margin-left: auto;
  font-weight: 700;
  box-shadow: 0 2px 14px var(--color-shadow);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-warm1);
  color: var(--color-primary);
}
header nav a.cta:hover, header nav a.cta:focus {
  background: var(--color-btn-hover);
  color: var(--text-light);
  box-shadow: 0 6px 18px var(--color-shadow-heavy);
}

/* HAMBURGER MENU (MOBILE) */
.mobile-menu-toggle {
  display: none;
  background: var(--color-btn);
  color: var(--text-light);
  font-size: 28px;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.18s;
  z-index: 1012;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-btn-hover);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--menu-overlay-bg);
  z-index: 1010;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,-0.25,.265,1.25);
  box-shadow: -2px 0 16px var(--color-shadow-heavy);
  pointer-events: none;
  opacity: 0.96;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-warm1);
  font-size: 34px;
  margin: 26px 28px 0 auto;
  cursor: pointer;
  padding: 6px 10px;
  z-index: 1012;
  border-radius: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  padding: 36px 32px 0 28px;
}
.mobile-nav a {
  color: var(--color-warm2);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-btn);
  color: var(--text-light);
}
@media (max-width: 1100px) {
  header nav {
    gap: 12px;
    flex-wrap: wrap;
  }
  header nav a {
    font-size: 15px;
    padding: 6px 10px;
  }
  header nav a.cta {
    padding: 6px 12px;
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 820px) {
  header nav a.cta {
    margin-left: 0;
  }
}
@media (max-width: 790px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTIONS */
.hero-section {
  background: var(--color-warm2);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px var(--color-shadow);
  padding: 50px 24px 54px 24px;
  margin-bottom: 0;
  align-items: flex-start;
  justify-content: center;
}
.hero-section h1 {
  font-family: var(--font-display);
  font-size: 2.35rem;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.12;
}
.hero-section p {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 18px;
}
.hero-section .cta {
  margin-top: 16px;
}

/* CTA BUTTONS */
.cta,
.cta-section a.cta {
  display: inline-block;
  background: var(--color-btn);
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  padding: 13px 34px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 3px 14px var(--color-shadow);
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.22s, transform 0.15s;
  cursor: pointer;
  margin-top: 16px;
}
.cta:hover, .cta:focus {
  background: var(--color-btn-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 22px var(--color-shadow-heavy);
}

/* CONTENT TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-top: 0;
  font-weight: 700;
  line-height: 1.16;
}
h1 { font-size: 2.3rem; margin-bottom: 16px; }
h2 { font-size: 1.76rem; margin-bottom: 14px; }
h3 { font-size: 1.24rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.05rem; margin-bottom: 8px; }
strong { font-weight: 700; }
p { color: var(--text-dark); margin-bottom: 12px; font-size: 1rem; }
.text-section {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
ul, ol {
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  font-size: 1rem;
  color: var(--text-dark);
  padding-left: 18px;
}
ul > li, ol > li {
  margin-bottom: 11px;
  padding-left: 3px;
}

/* SPECIAL LISTS */
.brand-values > li,
.feature-list > li,
.service-list > li,
.service-detailed-list > li {
  background: var(--color-warm2);
  border-radius: 10px;
  padding: 15px 23px;
  box-shadow: 0 1px 5px var(--color-shadow);
  margin-bottom: 14px;
  font-size: 1rem;
}
.brand-values {padding-left: 0;}
 .feature-list {padding-left: 0;}
.service-list {padding-left: 0;}
.service-detailed-list {padding-left: 0;}

/* FEATURE ICONS, GRID AND CARDS */
.feature-grid {  display: flex;  flex-wrap: wrap;  gap: 24px;  margin-top: 16px;  }
.feature-grid > li {
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 3px 14px var(--color-shadow);
  flex: 1 1 230px;
  min-width: 200px;
  padding: 28px 20px 22px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.2s;
}
.feature-grid > li:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px var(--color-shadow-heavy);
}
.feature-grid img {
  width: 48px;
  height: 48px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-family: var(--font-display);
}

/* SERVICES */
.service-detailed-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-detailed-list > li {
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 1px 10px var(--color-shadow);
  padding: 26px 23px 20px 23px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
}
.service-detailed-list h3 {
  font-size: 1.13rem;
  color: var(--color-primary);
  margin-bottom: 7px;
}
.service-detailed-list .service-price {
  font-size: 1.1rem;
  color: var(--color-btn);
  font-weight: 700;
}
.service-icons {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
}
.service-icons img {
  width: 56px; height: 56px;
}

/* CTA SECTION */
.cta-section {
  background: var(--color-warm1);
  border-radius: calc(var(--border-radius) - 3px);
  padding: 40px 22px 42px 22px;
  box-shadow: 0 3px 13px var(--color-shadow);
  text-align: center;
  align-items: center;
}
.cta-section h2 { color: var(--color-primary); }

/* TESTIMONIALS */
.testimonial-card {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  padding: 26px 32px;
  margin-bottom: 20px;
  box-shadow: 0 3px 22px var(--color-shadow);
}
.testimonial-card blockquote {
  font-size: 1.18rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  line-height: 1.45;
  margin-bottom: 10px;
  font-weight: 500;
}
.testimonial-card footer {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-left: 14px;
}

/* FORMS (IF ANY IN FUTURE) */
input, textarea, select, button {
  font-family: var(--font-body);
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 9px 14px;
  font-size: 1rem;
}
button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* FOOTER */
footer {
  margin-top: 80px;
  font-size: 15px;
  color: var(--color-primary);
  border-top: 2px solid var(--color-accent);
  background: var(--color-accent);
  box-shadow: 0 -2px 8px var(--color-shadow);
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding: 30px 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}
footer nav a {
  color: var(--color-primary);
  text-decoration: none;
  padding: 5px 4px;
  border-radius: 5px;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 15px;
  transition: color 0.14s, background 0.12s;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-btn);
  background: var(--color-warm2);
}
footer .text-section {
  max-width: 300px;
  color: var(--color-primary);
  line-height: 1.7;
  font-size: 15px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1090;
  background: var(--color-primary);
  color: var(--text-light);
  box-shadow: 0 -4px 36px var(--color-shadow);
  padding: 18px 20px 16px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 0.98rem;
  animation: slideUpCookies 0.34s ease;
}
@keyframes slideUpCookies {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--text-light);
  margin-bottom: 0;
  flex: 2;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  background: var(--color-btn);
  color: var(--text-light);
  font-size: 1rem;
  border: none;
  padding: 10px 20px;
  border-radius: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 2px 10px var(--color-shadow);
  transition: background 0.16s, box-shadow 0.14s;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-btn-hover);
  box-shadow: 0 4px 18px var(--color-shadow-heavy);
}
.cookie-banner button.cookie-settings {
  background: var(--color-warm1);
  color: var(--color-primary);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: var(--color-warm2);
  color: var(--color-primary);
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 1101;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(12,45,72, 0.63);
  display: flex; align-items: center; justify-content: center;
  animation: fadeInCookieModal 0.23s;
}
@keyframes fadeInCookieModal { 0%{ opacity:0;} 100%{ opacity:1;} }
.cookie-modal {
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 7px 48px var(--color-shadow-heavy);
  width: 96vw;
  max-width: 430px;
  padding: 30px 26px 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popCookieModal 0.25s;
}
@keyframes popCookieModal {
  0%{ transform: scale(0.94); opacity:0;}
  100%{ transform: scale(1); opacity:1;}
}
.cookie-modal h2 {
  color: var(--color-primary);
  margin-bottom: 12px;
  font-size: 1.36rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: var(--color-accent);
  border-radius: 12px;
  padding: 10px 8px 10px 15px;
  margin-bottom: 9px;
  box-shadow: 0 1px 8px var(--color-shadow);
}
.cookie-category label {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
  flex:1;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-btn);
  width: 22px;
  height: 22px;
  margin-right: 12px;
  cursor: pointer;
}
.cookie-modal .modal-actions {
  display: flex; gap: 13px; justify-content: flex-end;
}
.cookie-modal button {
  background: var(--color-btn);
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 22px;
  border: none;
  border-radius: 16px;
  margin-top: 0;
  box-shadow: 0 1px 8px var(--color-shadow);
  transition: background 0.16s, box-shadow 0.12s;
  cursor: pointer;
}
.cookie-modal button.cancel {
  background: var(--color-warm2);
  color: var(--color-primary);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--color-btn-hover);
  box-shadow: 0 3px 16px var(--color-shadow-heavy);
}
.cookie-modal button.cancel:hover, .cookie-modal button.cancel:focus {
  background: var(--color-warm1);
  color: var(--color-primary);
}

/* PAGE-SPECIFIC SPECIALS (optional) */
.feature-list > li {
  background: var(--color-card-bg);
  box-shadow: 0 1px 10px var(--color-shadow);
}

/* BLOG ARTICLE LISTS */
.page-blog ul > li,
.page-blog .article-list > li {
  color: var(--color-primary);
  margin-bottom: 11px;
  padding-left: 0;
  background: var(--color-accent);
  border-radius: 10px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 13px 18px 11px 18px;
}

.page-blog .article-list > li strong {
  color: var(--color-primary);
  font-size: 1.08rem;
}

/* THANK YOU PAGE ATTENTION */
.thankyou-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-btn);
  margin-bottom: 20px;
}

/* ANIMATIONS & MICROINTERACTIONS */
a, button, .card, .feature-grid > li, .cta, .card-container > .card {
  transition: box-shadow 0.2s, background 0.18s, color 0.15s, transform 0.15s;
}

.card:hover, .service-detailed-list > li:hover {
  box-shadow: 0 9px 34px var(--color-shadow-heavy);
  transform: translateY(-3px) scale(1.02);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1120px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 980px) {
  .feature-grid { gap: 16px; }
  .feature-grid > li { font-size: 0.99rem; }
}
@media (max-width: 810px) {
  .content-wrapper, .card-container, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 792px) {
  .hero-section {
    padding: 38px 10px 39px 10px;
  }
  /* Fix section spacing on mobile */
  .section, main section {
    padding: 28px 8px;
    margin-bottom: 37px;
  }
  .feature-grid > li, .card {
    min-width: 175px;
    padding: 20px 11px 16px 13px;
  }
  .service-detailed-list > li {
    padding: 13px 10px 15px 13px;
  }
  .testimonial-card {
    padding: 19px 13px;
    font-size: 0.97rem;
  }
  .service-icons img {
    width: 40px; height: 40px;
  }
}
@media (max-width: 760px) {
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 21px;
  }
  .footer .text-section{
    max-width: 100%;
  }
}
@media (max-width: 630px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 { font-size: 1.22rem; }
  .service-detailed-list .service-price { font-size: 1rem; }
  .cta, .cta-section a.cta {
    padding: 10px 19px;
    font-size: 1rem;
  }
  footer .content-wrapper { 
    flex-direction: column;
    gap: 13px;
    padding: 22px 0; 
  }
  .footer .text-section { font-size: 14px; }
  .feature-grid {
    gap: 10px;
  }
  .feature-grid > li {
    padding: 14px 8px 11px 8px;
  }
}

/* LAYOUT FLEX CHANGES ON MOBILE */
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .feature-grid,
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section { flex-direction: column; gap: 20px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 9px; }
  .hero-section { align-items: flex-start; }
  .cta-section { align-items: center; text-align: center; }
  header nav { flex-direction: column; align-items: flex-start;gap: 0; }
}

/* IMPROVE TOUCH AREAS ON MOBILE NAVIGATION */
@media (max-width: 600px) {
  .mobile-nav a {
    font-size: 18px;
    padding: 14px 8px;
  }
}

/* SCROLLBARS (optional, subtle) */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-warm2);
  border-radius: 12px;
}
::-webkit-scrollbar-track {
  background: var(--color-warm-bg);
}

/* REMOVE OUTLINE ON MOUSE, KEEP FOR KEYBOARD */
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
}

/* Utility Classes */
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.bg-card { background: var(--color-card-bg); }
.rounded { border-radius: var(--border-radius); }
.shadow { box-shadow: 0 3px 13px var(--color-shadow); }


/* --- END OF CSS FILE --- */
