/* ========================================================
   CSS RESET & BASE STYLES
======================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1B2E45;
  background: #F6F7F9;
  line-height: 1.67;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img, video {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #F4A300;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.7,.2,.18,1.1);
}
a:hover, a:focus {
  color: #D67E00;
  text-decoration: underline;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.4rem;
  color: #1B2E45;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.8rem;
  color: #F4A300;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  color: #1B2E45;
}
p {
  margin-bottom: 18px;
  color: #293a51;
}
strong {
  font-weight: 700;
  color: #1B2E45;
}
address {
  font-style: normal;
  color: #965720;
  margin-bottom: 18px;
}

/* ========================================================
   BRAND COLORS & TYPOGRAPHY
======================================================== */
:root {
  --primary: #1B2E45;
  --secondary: #F4A300;
  --secondary-dark: #D67E00;
  --accent: #F6F7F9;
  --white: #fff;
  --text: #1B2E45;
  --gray: #ECEDF0;
  --focus-ring: #F4A300;
  --shadow: 0 4px 32px rgba(27, 46, 69, 0.10), 0 1.5px 4px 0 rgba(38, 48, 75, 0.07);
  --radius-sm: 10px;
  --radius-lg: 30px;
  --transition: 0.25s cubic-bezier(.7,.2,.18,1.1);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* Creative/Artistic font style for artistic headings */
.creative-headline, h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

/* Artistic accents (underline/wavy line, used in headlines) */
.creative-underline {
  border-bottom: 4px wavy var(--secondary);
  display: inline-block;
}

/* ========================================================
   CONTAINER + SECTION LAYOUTS
======================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
}

/* ========================================================
   HEADER + NAVIGATION
======================================================== */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27, 46, 69, 0.07);
  position: sticky;
  top: 0;
  z-index: 1010;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}
.header-container > a img {
  height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  padding: 4px 6px 2px 6px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  background: var(--accent);
}
.btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 30px;
  padding: 12px 36px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  margin-left: 12px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  position: relative;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary-dark);
  color: var(--white);
  box-shadow: 0 6px 32px rgba(252,222,124,.20);
}
.btn-secondary {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--white);
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  box-shadow: 0 2px 14px 0 rgba(245,185,0,0.07);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--primary);
}

/* =============== MOBILE NAVIGATION =============== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--primary);
  padding: 0 10px;
  cursor: pointer;
  border-radius: 50%;
  outline: none;
  transition: background 0.2s;
  z-index: 1201;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.7,0,.18,1.1);
  padding: 0px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--secondary);
  margin: 34px 32px 12px 0;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.19s;
  z-index: 1202;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(255,255,255,0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-left: 36px;
  margin-top: 32px;
  gap: 20px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 0 7px 0;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: none;
}
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .btn-primary {
    display: none;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============== HERO SECTION =============== */
.hero {
  background: linear-gradient(96deg, #ffe6ba 5%, #F6F7F9 98%);
  padding: 60px 0 40px 0;
  border-radius: 0 0 40px 40px;
  margin-bottom: 50px;
  min-height: 300px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.5rem;
  color: #1b2e45;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.hero .btn-primary {
  margin-top: 14px;
}

/* =============== SECTION LAYOUTS =============== */
.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.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;
    gap: 18px; 
  }
}
.content-grid, .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* CARD & FEATURE GRID STYLES (FLEX ONLY) */
.feature-grid, .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(245, 185, 0, 0.06);
  padding: 30px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.feature-item:hover {
  box-shadow: 0 6px 32px 0 rgba(244,163,0,0.16);
  transform: translateY(-6px) scale(1.025);
  z-index: 1;
}
.feature-item img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #FFFAE6;
  padding: 5px;
  box-shadow: 0 2px 6px 0 rgba(244,163,0,0.07);
}

.benefit-grid {
  gap: 24px;
}

/* =============== CARD COMPONENTS =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  padding: 32px 24px;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(244, 163, 0, 0.18);
  transform: translateY(-5px) scale(1.01);
  z-index: 2;
}

/* =============== TESTIMONIALS =============== */
.testimonials-preview, .testimonial-section {
  background: #fff5e6;
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 24px 20px 24px;
  box-shadow: 0 2px 22px 0 rgba(244,163,0,0.08);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFFAF4;
  border-radius: var(--radius-sm);
  box-shadow: 0 2.5px 24px 0 rgba(27,46,69,0.09);
  color: #1B2E45;
  font-size: 1.07rem;
}
.testimonial-card p {
  color: #2E3C56;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #F4A300;
  font-weight: 700;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.star-rating img {
  width: 23px;
  height: 23px;
}

/* =============== CASE STUDIES, BLOG PREVIEW =============== */
.case-study, .blog-preview {
  background: var(--white);
  box-shadow: 0 2px 14px 0 rgba(27,46,69,0.07);
  border-radius: 15px;
  padding: 26px 22px 18px 22px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.case-study h3, .blog-preview h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1.12rem;
  font-family: var(--font-display);
}
.blog-preview p strong {
  color: var(--secondary);
}
.blog-preview {
  border-left: 5px solid var(--secondary);
  background: #FFF7E0;
}

/* =============== FORMS =============== */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 8px;
}
label {
  font-family: var(--font-display);
  color: #1B2E45;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1rem;
}
input, textarea {
  border: 2px solid #ECEDF0;
  border-radius: 8px;
  padding: 12px 15px;
  width: 100%;
  font-size: 1.05rem;
  font-family: var(--font-body);
  background: var(--white);
  color: #1B2E45;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.18s;
}
input:focus, textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px #f4a30055;
}
button[type="submit"], form .btn-primary {
  margin-top: 8px;
  align-self: flex-start;
}

/* =============== FOOTER =============== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 0;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 46px 20px 18px 20px;
  max-width: 1240px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #FFF7E3;
  font-size: 1rem;
  margin-bottom: 0;
  transition: color .22s;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.brand-info .brand-logo img {
  width: 60px;
  height: auto;
}
.brand-info .brand-tagline {
  font-size: 1.05rem;
  color: var(--secondary);
  font-family: var(--font-display);
}
.social-media-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-media-links a img {
  height: 30px;
  transition: filter .19s, transform .17s;
}
.social-media-links a:hover img {
  filter: brightness(1.05) drop-shadow(0 2px 4px #F4A30033);
  transform: scale(1.11) rotate(-6deg);
}
.footer-copy {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  color: #e3e9ef;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    padding: 32px 10px 18px 10px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .brand-info {
    align-items: flex-start;
  }
}

/* =============== CTA SECTION =============== */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #FFF7E0;
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  box-shadow: 0 2px 12px 0 rgba(244,163,0,0.06);
}
.cta-section h2 {
  color: var(--primary);
  font-size: 2rem;
}

/* =============== MAP PLACEHOLDER (CONTACT) =============== */
.map-placeholder {
  background: #e9edf6;
  border: 2.5px dashed var(--secondary);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  color: #1B2E45;
  margin-top: 8px;
  box-shadow: 0 1.5px 8px 0 rgba(245,185,0,0.09);
}

/* =============== UTILITIES =============== */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* =============== RESPONSIVE HANDLING =============== */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.36rem;
  }
  .container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid, .benefit-grid {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .feature-item, .card, .case-study, .blog-preview {
    min-width: 0;
    padding: 20px 12px;
  }
  .content-grid, .content-wrapper {
    gap: 14px;
    flex-direction: column;
  }
  .footer-container {
    gap: 18px;
    padding: 20px 5px 10px 5px;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 38px 0 24px 0;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 4px;
  }
  h1 {
    font-size: 1.38rem;
  }
}

/* ================== COOKIE CONSENT =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe9;
  color: #222;
  box-shadow: 0 -2px 16px 0 rgba(31, 38, 75, 0.13);
  padding: 30px 16px 22px 16px;
  width: 100%;
  z-index: 14000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  animation: cookie-fade-in 0.67s cubic-bezier(.64,1.37,.13,1) 1;
}
@keyframes cookie-fade-in {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}
.cookie-banner p {
  font-size: 1.04rem;
  color: #2e3956;
  text-align: center;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 5px;
}
.cookie-btns .btn-primary,
.cookie-btns .btn-secondary {
  font-size: 1rem;
  padding: 11px 30px;
}
.cookie-btns .btn-reject {
  background: none;
  color: #E65100;
  border: 2px solid #E65100;
  font-family: 'Montserrat';
  padding: 11px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.19s, color 0.19s;
}
.cookie-btns .btn-reject:hover {
  background: #ffe3c7;
}
/* ================= COOKIE MODAL =================== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31,46,69,0.25);
  z-index: 14001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fffcd0;
  color: #1B2E45;
  border-radius: 26px;
  padding: 34px 30px 26px 30px;
  min-width: 310px;
  min-height: 180px;
  box-shadow: 0 4px 34px 0 rgba(244,163,0,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modal-bounce .49s cubic-bezier(.71,-0.4,.46,1.51) 1;
  position: relative;
}
@keyframes modal-bounce {
  0% {transform: translateY(-30px) scale(.9); opacity: 0.3;}
  70% {transform: scale(1.03);}
  100% {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal h3 {
  color: #F4A300;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.cookie-category label {
  color: #1B2E45;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}
.cookie-switch {
  width: 36px;
  height: 20px;
  -webkit-appearance: none;
  background: #ECEDF0;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.14s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #F4A300;
}
.cookie-switch:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.22s;
}
.cookie-switch:checked:before {
  left: 18px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px; right: 18px;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s;
}
.cookie-modal .close-modal:hover{
  background: #FFF3CC;
}
.cookie-modal .btn-primary {
  margin-top: 13px;
}
@media (max-width:480px){
  .cookie-modal{
    padding: 22px 9px 16px 14px;
    min-width: 0;
  }
}

/* ================= SPECIAL ELEMENTS =================== */
::-webkit-input-placeholder { color: #bbb; opacity: 1; }
::-moz-placeholder { color: #bbb; opacity: 1; }
:-ms-input-placeholder { color: #bbb; opacity: 1; }
::placeholder { color: #bbb; opacity: 1; }
input[disabled], textarea[disabled] {
  background: #f2f2f2;
  color: #bbb;
  border-color: #e7e7e7;
  cursor: not-allowed;
}

/* =============== LISTS =============== */
ul, ol {
  margin-top: 8px;
  margin-bottom: 24px;
  padding-left: 22px;
  color: #384760;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 7px;
  line-height: 1.7;
}
ul li strong, ol li strong {
  color: #F4A300;
}
/* =============== ARTISTIC DECORATIVE ELEMENTS (optionally position absolute) =============== */
/* Example: Decorative circles, lines */
.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 40px;
  width: 120px;
  height: 100px;
  background: url('../assets/bg-artistic-blob.svg') no-repeat;
  background-size: cover;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 800px) {
  .hero::after { display: none; }
}


/* ================= ANIMATIONS & TRANSITIONS =================== */
.btn-primary, .btn-secondary, .btn-reject, a, .feature-item, .card, .case-study, .blog-preview {
  transition: all 0.27s cubic-bezier(.74,-0.01,.34,1.04);
}

/* Elevated button hover effect */
.btn-primary:active, .btn-secondary:active, .btn-reject:active {
  transform: scale(0.96);
}

/* ===================== COPY/THANK-YOU/INFO STYLES ===================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.text-section ul, .text-section ol {
  margin-bottom: 13px;
}

/* ================= Accessiblity FOCUS styles ========================== */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px dashed var(--focus-ring);
  outline-offset: 1.5px;
  z-index: 10;
}

/* ======== Spacing between all main sections/events/cards/etc. ========== */
section, .section {
  margin-bottom: 60px;
}
.card, .feature-item, .testimonial-card, .case-study, .blog-preview {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .benefit-grid, .content-grid, .content-wrapper {
  gap: 24px;
}

/* ==================== HIDE / SHOW HELPERS ===================== */
.hide {
  display: none !important;
}
@media (max-width: 510px) {
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
}

/*
=========================================================
 END OF STYLE.CSS
=========================================================
*/
