/*

TemplateMo 584 Pod Talk

https://templatemo.com/tm-584-pod-talk

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
    --white-color: #ffffff;
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --section-bg-color: #eff6ff;
    --custom-btn-bg-color: #2563eb;
    --custom-btn-bg-hover-color: #1d4ed8;
    --dark-color: #1e3a8a;
    --p-color: #1e40af;
    --border-color: #60a5fa;
    --link-hover-color: #3b82f6;

    --body-font-family: "Vollkorn SC", serif;
    --title-font-family: "Vollkorn SC", serif;

    --h1-font-size: 58px;
    --h2-font-size: 46px;
    --h3-font-size: 32px;
    --h4-font-size: 28px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 16px;
    --menu-font-size: 14px;

    --border-radius-large: 100px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

body {
    font-family: 'Vollkorn SC', serif;
    background-color: var(--gray-light);
    color: var(--text-color);
}

:root {
    --green-dark: #1e3a8a;
    --green-accent: #2563eb;
    --gray-light: #eff6ff;
    --gray: #dbeafe;
    --white: #ffffff;
    --text-color: #1e40af;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-semibold);
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
}

a,
button {
    touch-action: manipulation;
    transition: all 0.3s;
}

a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-title-wrap {
    position: relative;
}

.section-title-wrap::after {
    content: "";
    background: var(--section-bg-color);
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.section-title {
    background: var(--section-bg-color);
    border-radius: var(--border-radius-large);
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    padding: 10px 25px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

main {
    position: relative;
    z-index: 1;
}

.section-bg {
    background-color: var(--section-bg-color);
}

.section-overlay {
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.section-overlay+.container {
    position: relative;
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
    color: var(--primary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
    background: var(--custom-btn-bg-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-semibold);
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 20px;
}

.custom-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    color: var(--white-color);
}

.custom-border-btn {
    background: transparent;
    border: 2px solid var(--custom-btn-bg-color);
    color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
    background: var(--custom-btn-bg-color);
    border-color: transparent;
    color: var(--primary-color);
}

.custom-btn-bg-white {
    border-color: var(--white-color);
    color: var(--white-color);
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
    background-image: url("../images/templatemo-wave-header.jpg"),
        linear-gradient(#348cd2, #ffffff);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 480px;
    position: relative;
}

.site-header h2 {
    color: var(--white-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
:root {
  --clr-dark-green: #1e3a8a;
  --clr-light-gray: #eff6ff;
  --clr-white: #fefefe;
  --clr-accent: #3b82f6;
  --transition-time: 0.3s;
}

.navbar {
  background: linear-gradient(90deg, var(--clr-dark-green) 0%, #1e40af 100%);
  padding: 1rem 1.5rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Vollkorn SC', serif;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  position: relative;
}

.mobile-menu-line {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-list,
.mobile-menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  position: relative;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: #ffffff;
  background: none;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: 'Vollkorn SC', serif;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  outline: none;
}

.mobile-menu-cta {
  background: #3b82f6;
  border-radius: 50px;
  margin: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-menu-cta:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.submenu-toggle {
  width: 100%;
  text-align: left;
}

.submenu-arrow {
  transition: transform 0.3s ease;
  margin-left: auto;
}

.submenu-toggle[aria-expanded="true"] .submenu-arrow {
  transform: rotate(180deg);
}

.mobile-menu-list ul.submenu {
  display: none;
  background: rgba(30, 58, 138, 0.8);
  border-radius: 0;
  overflow: hidden;
}

.mobile-menu-list ul.submenu li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list ul.submenu .mobile-menu-link {
  padding-left: 2.5rem;
  font-size: 1rem;
}

@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    flex-direction: column;
    padding: 80px 0 40px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }

  .mobile-menu-list.active {
    right: 0;
  }

  .mobile-menu-list li {
    width: 100%;
  }

  .mobile-menu-link {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .submenu-toggle[aria-expanded="true"] + ul.submenu {
    display: block;
  }

  .navbar-container {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }

  .mobile-menu-overlay {
    display: none !important;
  }

  .mobile-menu-list {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  .mobile-menu-link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: none;
    width: auto;
    text-align: center;
  }

  .mobile-menu-link:hover {
    background: none;
    color: #3b82f6;
  }

  .mobile-menu-cta {
    background: #3b82f6;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin: 0;
    transition: all 0.3s ease;
  }

  .mobile-menu-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }

  .mobile-menu-list ul.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e3a8a;
    padding: 0.5rem 0;
    border-radius: 12px;
    min-width: 200px;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 10;
    margin-top: 8px;
  }

  .mobile-menu-list li:hover > ul.submenu {
    display: block;
  }

  .mobile-menu-list ul.submenu li {
    border-top: none;
  }

  .mobile-menu-list ul.submenu .mobile-menu-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    text-align: left;
  }

  .submenu-toggle {
    width: auto;
  }

  .submenu-arrow {
    display: none;
  }
}



/*---------------------------------------
  CAROUSEL        
-----------------------------------------*/
.first-section {
    background-image: url("../images/templatemo-wave-banner.jpg"),
        linear-gradient(#348cd2, #ffffff);
    background-repeat: no-repeat;
    background-size: 108% 76%;
    background-position: top;
    padding-top: 200px;
}

.owl-carousel {
    text-align: center;
}

.owl-carousel-image {
    display: block;
}

.owl-carousel .owl-item .owl-carousel-verified-image {
    display: inline-block;
    width: 30px;
    height: auto;
    position: relative;
    right: 5px;
}

.verified-image {
    display: inline-block;
    width: 20px;
    height: auto;
}

.owl-carousel .owl-item {
    opacity: 0.35;
}

.owl-carousel .owl-item.active.center {
    opacity: 1;
}

.owl-carousel-info-wrap {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.owl-carousel-info {
    background-color: var(--section-bg-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 30px;
}

.badge {
    background-color: var(--custom-btn-bg-color);
    font-family: var(--title-font-family);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    padding-bottom: 5px;
}

.owl-carousel-info-wrap .social-share,
.team-thumb .social-share {
    position: absolute;
    right: 0;
    bottom: 0;
}

.owl-carousel-info-wrap .social-icon,
.team-thumb .social-icon {
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(0);
    padding-right: 20px;
    padding-left: 20px;
}

.owl-carousel .owl-item.active.center .owl-carousel-info-wrap:hover .social-icon,
.team-thumb:hover .social-icon {
    transform: translateY(-100%);
    opacity: 1;
}

.owl-carousel-info-wrap .social-icon-item,
.owl-carousel-info-wrap .social-icon-link,
.team-thumb .social-icon-item,
.team-thumb .social-icon-link {
    display: block;
    margin-bottom: 10px;
    margin-left: auto;
}

.owl-carousel-info-wrap .social-icon-link {
    margin-top: 5px;
    margin-bottom: 5px;
}

.owl-carousel .owl-dots {
    background-color: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border-radius: var(--border-radius-large);
    display: inline-block;
    margin: auto;
    margin-top: 40px;
    padding: 15px 25px;
    padding-bottom: 7px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    padding: 30px;
    transition: all 0.3s ease;
}

.custom-block:hover {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border-color: transparent;
    transform: translateY(-3px);
}

.custom-block-info {
    display: block;
    padding: 10px 20px;
    padding-bottom: 0;
}

.custom-block-image-wrap {
    position: relative;
    display: block;
    height: 100%;
}

.custom-block-image-wrap>a {
    display: block;
}

.custom-block-image {
    border-radius: var(--border-radius-medium);
    display: block;
    width: 112px;
    height: 112px;
    object-fit: cover;
}

.custom-block-image-detail-page .custom-block-image {
    width: 100%;
    height: 212px;
}

.custom-block .custom-block-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-block-icon-wrap {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.custom-block-icon-wrap .section-overlay {
    opacity: 0.25;
}

.custom-block-btn-group {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 20px;
}

.custom-block-btn-group .custom-block-icon {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}

.custom-block-icon {
    background: var(--primary-color);
    border-radius: var(--border-radius-medium);
    font-size: var(--p-font-size);
    color: var(--white-color);
    text-align: center;
    width: 32.5px;
    height: 32.5px;
    line-height: 32.5px;
    transition: all 0.3s;
}

.custom-block-icon:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.custom-block .custom-btn {
    font-size: var(--menu-font-size);
    padding: 7px 15px;
}

.custom-block .custom-block-info+div .badge {
    background-color: var(--dark-color);
    color: var(--white-color);
    border-radius: 50px !important;
    font-size: var(--menu-font-size);
    display: flex;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.custom-block .custom-block-info+div .badge:hover {
    background-color: var(--secondary-color);
}

.custom-block-full {
    background-color: var(--section-bg-color);
    border-color: transparent;
}

.custom-block-full:hover {
    border-color: var(--primary-color);
}

.custom-block-full .custom-block-info {
    padding: 20px;
    padding-bottom: 0;
}

.custom-block-full .custom-block-image {
    width: 100%;
    height: 210px;
}

.custom-block-full .social-share {
    position: absolute;
    top: 0;
    right: 0;
    margin: 50px;
}

.custom-block-top small {
    color: var(--p-color);
    font-family: var(--title-font-family);
}

.custom-block-top .badge {
    background-color: var(--secondary-color);
    color: var(--white-color);
    display: inline-block;
    vertical-align: middle;
    height: 26.64px;
    line-height: 20px;
}

.custom-block-bottom a:hover span {
    color: var(--primary-color);
}

.custom-block-bottom a span {
    font-family: var(--title-font-family);
    color: var(--p-color);
    text-transform: uppercase;
    margin-left: 3px;
}

.custom-block-overlay {
    border-color: transparent;
    padding: 0;
}

.custom-block-overlay .custom-block-image {
    margin: auto;
    width: 100%;
    height: 210px;
    transition: all 0.3s;
}

.custom-block-overlay:hover .custom-block-image {
    padding: 15px;
    padding-bottom: 0;
}

.custom-block-overlay-info {
    padding: 15px 20px 20px 20px;
}

/*---------------------------------------
  PROIFLE BLOCK               
-----------------------------------------*/
.profile-block {
    margin-top: 10px;
}

.profile-block-image {
    border-radius: var(--border-radius-large);
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.profile-block p strong {
    display: block;
    font-family: var(--title-font-family);
}

.profile-detail-block {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-large);
    padding: 25px 35px;
}

.profile-detail-block p {
    margin-bottom: 0;
}

/*---------------------------------------
  ABOUT & TEAM SECTION               
-----------------------------------------*/
.about-image {
    border-radius: var(--border-radius-medium);
    display: block;
}

.team-thumb {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.team-info {
    background-color: var(--white-color);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 30px;
}

/*---------------------------------------
  PAGINATION               
-----------------------------------------*/
.pagination {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-large);
    padding: 20px;
}

.page-link {
    border: 0;
    border-radius: var(--border-radius-small);
    color: var(--p-color);
    font-family: var(--title-font-family);
    margin: 0 5px;
    padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.page-item:first-child .page-link {
    margin-right: 10px;
}

.active>.page-link,
.page-link.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-info p strong {
    font-family: var(--title-font-family);
    min-width: 90px;
}

.contact-info p a {
    color: var(--p-color);
    border-bottom: 1px solid;
    padding-bottom: 3px;
}

.contact-info p a:hover {
    color: var(--secondary-color);
}

.google-map {
    border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
    border-radius: var(--border-radius-medium);
    height: 150px;
}

/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
    border: 1px solid var(--white-color);
    border-radius: var(--border-radius-small);
    width: 80%;
    position: relative;
    top: 12px;
    padding: 35px;
}

.subscribe-form-wrap h6 {
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    color: var(--primary-color);
    text-align: center;
    position: relative;
    bottom: 55px;
    margin-bottom: -25px;
    padding: 8px;
}

.subscribe-form #subscribe-email {
    border: 0;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.subscribe-form #submit {
    border-radius: 0 0 10px 10px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
    border-radius: var(--border-radius-small);
    color: var(--p-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    margin-bottom: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    outline: none;
}

.form-floating>label {
    padding-left: 20px;
}

.custom-form button[type="submit"] {
    background: var(--custom-btn-bg-color);
    border: none;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s;
    margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
    background: var(--custom-btn-bg-hover-color);
    border-color: transparent;
}

/*---------------------------------------
  SEARCH FORM               
-----------------------------------------*/
.search-form .form-control {
    border: 0;
    margin-bottom: 0;
}

.search-form button[type="submit"] {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    max-width: 50px;
    height: 100%;
    padding-left: 15px;
}

.search-form button[type="submit"]:hover {
    background: var(--primary-color);
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
    background: #2c2e5c;
    background: linear-gradient(90deg, rgb(44, 45, 92) 0%, rgb(87, 96, 199) 50%, rgb(12, 14, 130) 100%);
    margin-top: -80px;
    padding-top: 100px;
    padding-bottom: 150px;
}

.site-footer>.container {
    position: relative;
    top: 50px;
    padding-top: 100px;
}

.site-footer-title,
.site-footer p {
    color: var(--white-color);
}

.site-footer p strong {
    font-family: var(--title-font-family);
}

.site-footer p a {
    color: var(--white-color);
    border-bottom: 1px solid;
    padding-bottom: 3px;
}

.site-footer p a:hover {
    color: var(--secondary-color);
}

.site-footer-thumb a img {
    display: block;
    width: 120px;
    min-width: 120px;
    height: auto;
}

.site-footer-links {
    margin-bottom: 0;
    padding-left: 0;
}

.site-footer-link-item {
    display: inline-block;
    list-style: none;
    margin-right: 10px;
    margin-left: 10px;
}

.site-footer-link {
    color: var(--white-color);
    font-size: var(--p-font-size);
    line-height: inherit;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.social-icon-link {
    background: var(--secondary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--p-font-size);
    display: block;
    margin-right: 10px;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 2160px) {
    .first-section {
        background-size: 100% 90%;
        /* T o o p l a t e . c o m   C u s t o m i z e d */
    }
}

@media screen and (min-width: 1600px) {
    .site-footer {
        padding-top: 250px;
    }
}

@media screen and (max-width: 1240px) {
    .first-section {
        background-size: 116%;
        /* T o o p l a t e . c o m   C u s t o m i z e d */
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 28px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }

    .first-section {
        background-size: 160% 66%;
        /* T o o p l a t e . c o m   C u s t o m i z e d */
    }

    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .navbar-nav {
        background-color: var(--primary-color);
        border-radius: var(--border-radius-medium);
        padding: 30px;
    }

    .navbar-nav .nav-link {
        padding: 5px 0;
    }

    .navbar-nav .dropdown-menu {
        position: relative;
        left: 10px;
        opacity: 1;
        pointer-events: auto;
        max-width: 155px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .navbar-expand-lg .navbar-nav {
        padding-bottom: 20px;
    }

    .nav-tabs .nav-link:first-child {
        margin-right: 5px;
    }

    .nav-tabs .nav-link {
        font-size: var(--copyright-font-size);
        padding: 10px;
    }

    .copyright-text {
        text-align: center;
    }

    .site-footer {
        margin-top: -200px;
        padding-top: 200px;
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 540px) {
    .first-section {
        background-size: 180% 65%;
        /* T o o p l a t e . c o m   C u s t o m i z e d */
    }

    .custom-block .custom-block-top {
        flex-direction: column;
    }

    .custom-block .custom-block-top small:last-child {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 20px;
    }
}

@media screen and (max-width: 414px) {
    .search-form {
        max-width: 200px;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

.cookie-wrapper {
    position: fixed;
    bottom: 50px;
    left: 50px;
    width: 40%;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 20px 30px 25px;
    transition: right 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    z-index: 999;
    border-radius: 16px;
    border: 2px solid #3b82f6;
}

.cookie-wrapper .show {
    right: 20px;
}

@media (max-width: 772px) {
    .cookie-wrapper {
        width: 100%;
        bottom: 0px;
        left: 0px;
    }
}

.hidden {
    display: none;
}

header i {
    color: #1e40af;
    font-size: 32px;
    text-align: center;
}

header h2 {
    color: #1e3a8a;
    font-weight: 600;
    text-align: center;
}

.data {
    text-align: center;
}

.data p a {
    color: #2563eb;
    text-decoration: none;
    text-align: center !important;
    font-weight: 600;
}

.data p a:hover {
    text-decoration: underline;
}

.buttons {
    padding: 20px 0px;
    text-align: center;
}

.buttons .cookie-button {
    border: 2px solid #2563eb;
    color: #fff;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.3s ease;
    max-width: 150px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Vollkorn SC', serif;
}

.buttons #acceptBtn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    color: #fff;
}

#declineBtn {
    background-color: #eff6ff;
    color: #1e40af;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Vollkorn SC', serif;
}

#declineBtn:hover {
    background-color: #dbeafe;
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#result {
    color: #1e40af;
    font-size: 14px;
}


/* new styles */

.deep-focus {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  color: #e0e7ff;
  padding: 120px 30px;
  font-family: 'Vollkorn SC', serif;
}

.deep-focus-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.deep-focus-visual img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.deep-focus-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.deep-focus-tagline {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #93c5fd;
}

.deep-focus-heading {
  font-size: 2rem;
  color: #ffffff;
}

.deep-focus-lead p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #dbeafe;
}

.deep-focus-action .listen-btn {
  background: #3b82f6;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.deep-focus-action .listen-btn:hover {
  background: #2563eb;
}

.deep-focus-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.profile-img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.profile-meta strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
}

.profile-meta p {
  font-size: 0.9rem;
  color: #bfdbfe;
}

@media (max-width: 768px) {
  .deep-focus-inner {
    grid-template-columns: 1fr;
  }

  .deep-focus-tagline {
    flex-direction: column;
    gap: 8px;
  }

  .deep-focus-action .listen-btn {
    width: 100%;
  }
}



.cookaro-team, .wachherz-team {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  padding: 100px 20px;
  color: #e0e7ff;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-team-wrapper, .wachherz-team-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.cookaro-team-header, .wachherz-team-header {
  text-align: center;
  margin-bottom: 60px;
}

.wachherz-team-title {
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 10px;
  font-weight: 700;
}

.cookaro-team-subtitle, .wachherz-team-subtitle {
  font-size: 1.1rem;
  color: #bfdbfe;
}

.cookaro-team-grid, .wachherz-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.cookaro-team-card, .wachherz-team-card {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
  border: 2px solid #3b82f6;
}

.wachherz-team-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 12px 28px rgba(30, 58, 138, 0.3);
}

.wachherz-team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.cookaro-team-info, .wachherz-team-info {
  padding: 20px;
}

.wachherz-team-info h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #1e40af;
  font-weight: 600;
}

.wachherz-team-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wachherz-team-info ul li {
  margin-bottom: 8px;
  color: #1e3a8a;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .wachherz-team-title {
    font-size: 2rem;
  }
}

.cookaro-values, .wachherz-values {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  color: #1e3a8a;
  padding: 80px 20px;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-values-container, .wachherz-values-container {
  max-width: 1100px;
  margin: 0 auto;
}

.cookaro-values-header, .wachherz-values-header {
  text-align: center;
  margin-bottom: 60px;
}

.wachherz-values-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 8px;
}

.wachherz-values-header p {
  font-size: 1.2rem;
  color: #3b82f6;
}

.wachherz-values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.cookaro-value-card, .wachherz-value-card {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(30, 58, 138, 0.2);
  border: 2px solid #3b82f6;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wachherz-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(30, 58, 138, 0.4);
  border-color: #2563eb;
}

.cookaro-value-image, .wachherz-value-image {
  background-size: cover;
  background-position: center;
  height: 180px;
  border-bottom: 4px solid #3b82f6;
}

.cookaro-value-content, .wachherz-value-content {
  padding: 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.wachherz-value-content h3 {
  color: #1e40af;
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.wachherz-value-content p {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.5;
  color: #1e3a8a;
}

@media (max-width: 768px) {
  .wachherz-values-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.cookaro-connect-about, .wachherz-connect-about {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #1e3a8a;
  padding: 80px 20px;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-container, .wachherz-container {
  max-width: 1100px;
  margin: 0 auto;
}

.wachherz-connect-about-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookaro-about, .wachherz-about {
  flex: 1 1 450px;
  max-width: 500px;
}

.cookaro-about-title, .wachherz-about-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 24px;
  line-height: 1.2;
}

.wachherz-about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1e3a8a;
  margin-bottom: 16px;
}

.wachherz-contact-form {
  flex: 1 1 450px;
  max-width: 500px;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(30, 58, 138, 0.2);
  border: 2px solid #3b82f6;
  display: flex;
  flex-direction: column;
}

.cookaro-contact-title, .wachherz-contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 30px;
  text-align: center;
}

.wachherz-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.wachherz-form-row input {
  flex: 1 1 220px;
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid #60a5fa;
  border-radius: 12px;
  background-color: #ffffff;
  color: #1e3a8a;
  outline-offset: 2px;
  transition: all 0.3s ease;
  font-family: 'Vollkorn SC', serif;
}

.wachherz-form-row input:focus {
  background-color: #eff6ff;
  outline: 2px solid #3b82f6;
  outline-offset: 0;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.wachherz-contact-form > input[type="text"]:not(.wachherz-form-row input) {
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid #60a5fa;
  border-radius: 12px;
  background-color: #ffffff;
  color: #1e3a8a;
  margin-bottom: 20px;
  outline-offset: 2px;
  transition: all 0.3s ease;
  font-family: 'Vollkorn SC', serif;
}

.wachherz-contact-form > input[type="text"]:not(.wachherz-form-row input):focus {
  background-color: #eff6ff;
  outline: 2px solid #3b82f6;
  outline-offset: 0;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.wachherz-contact-form textarea {
  resize: vertical;
  min-height: 130px;
  padding: 16px 18px;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid #60a5fa;
  background-color: #ffffff;
  color: #1e3a8a;
  margin-bottom: 30px;
  outline-offset: 2px;
  transition: all 0.3s ease;
  font-family: 'Vollkorn SC', serif;
}

.wachherz-contact-form textarea:focus {
  background-color: #eff6ff;
  outline: 2px solid #3b82f6;
  outline-offset: 0;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.wachherz-contact-form button {
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wachherz-contact-form button:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

@media (max-width: 900px) {
  .wachherz-connect-about-inner {
    flex-direction: column;
    gap: 40px;
  }

  .wachherz-about, .wachherz-contact-form {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .wachherz-form-row {
    flex-direction: column;
  }

  .wachherz-form-row input {
    flex: 1 1 100%;
  }
}

.cookaro-news, .wachherz-news {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #1e3a8a;
  font-family: 'Vollkorn SC', serif;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.news-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.news-header p {
  font-size: 1.1rem;
  color: #93c5fd;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.news-item {
  display: flex;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(30, 58, 138, 0.2);
  border: 2px solid #3b82f6;
  transition: all 0.3s ease;
}

.news-item:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
}

.news-image-wrapper {
  flex: 0 0 220px;
  overflow: hidden;
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-item:hover .news-image-wrapper img {
  transform: scale(1.1);
}

.news-text {
  padding: 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-text h3 {
  font-size: 1.6rem;
  color: #1e40af;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.news-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.read-more {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  font-size: 1rem;
  align-self: flex-start;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #1e40af;
  border-color: #1e40af;
}

@media (max-width: 768px) {
  .news-list {
    gap: 24px;
  }

  .news-item {
    flex-direction: column;
  }

  .news-image-wrapper {
    flex: none;
    width: 100%;
    height: 200px;
  }

  .news-text {
    padding: 16px 20px;
  }

  .news-header h2 {
    font-size: 2rem;
  }
}

.cookaro-footer, .wachherz-footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  color: #e0e7ff;
  padding: 80px 20px 50px;
  font-family: 'Vollkorn SC', serif;
  font-size: 1rem;
  line-height: 1.6;
  user-select: none;
  box-shadow: 0 -4px 20px rgba(30, 58, 138, 0.3);
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-subscribe {
  flex: 1 1 320px;
  max-width: 480px;
}

.footer-subscribe h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-subscribe p {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.05rem;
}

.subscribe-form {
  display: flex;
  gap: 12px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 2px solid #60a5fa;
  background-color: rgba(255, 255, 255, 0.95);
  color: #1e3a8a;
  font-size: 1rem;
  font-family: 'Vollkorn SC', serif;
  transition: all 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: #3b82f6;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.subscribe-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-family: 'Vollkorn SC', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.subscribe-form button:hover,
.subscribe-form button:focus {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.footer-contact {
  flex: 1 1 280px;
  max-width: 400px;
}

.footer-contact h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-contact p {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.contact-link {
  color: #93c5fd;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.contact-link:hover,
.contact-link:focus {
  border-color: #60a5fa;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  border-top: 2px solid rgba(147, 197, 253, 0.3);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #dbeafe;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: #ffffff;
  background-color: rgba(59, 130, 246, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-copy {
  color: #bfdbfe;
  font-size: 0.9rem;
  font-weight: 400;
  user-select: none;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

/*---------------------------------------
  HERO SECTION              
-----------------------------------------*/
.cookaro-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #2563eb 60%, #3b82f6 100%);
  padding: 120px 20px 80px;
  margin-top: 70px;
}

.cookaro-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.cookaro-hero-pattern {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  animation: cookaro-pattern-move 20s ease-in-out infinite;
}

@keyframes cookaro-pattern-move {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10%, -10%) rotate(5deg);
  }
}

.cookaro-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cookaro-hero-content {
  color: #ffffff;
}

.cookaro-hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-hero-title-main {
  display: block;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: cookaro-fade-in-up 0.8s ease-out;
}

.cookaro-hero-title-accent {
  display: block;
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cookaro-fade-in-up 0.8s ease-out 0.2s both;
}

.cookaro-hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #dbeafe;
  margin-bottom: 40px;
  max-width: 540px;
  animation: cookaro-fade-in-up 0.8s ease-out 0.4s both;
}

.cookaro-hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  animation: cookaro-fade-in-up 0.8s ease-out 0.6s both;
}

.cookaro-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Vollkorn SC', serif;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cookaro-hero-btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  color: #1e40af;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.cookaro-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.cookaro-hero-btn-primary svg {
  transition: transform 0.3s ease;
}

.cookaro-hero-btn-primary:hover svg {
  transform: translateX(4px);
}

.cookaro-hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cookaro-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.cookaro-hero-stats {
  display: flex;
  gap: 40px;
  animation: cookaro-fade-in-up 0.8s ease-out 0.8s both;
}

.cookaro-hero-stat {
  display: flex;
  flex-direction: column;
}

.cookaro-hero-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-hero-stat-label {
  font-size: 0.95rem;
  color: #bfdbfe;
  font-weight: 500;
}

.cookaro-hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookaro-fade-in 1s ease-out 0.4s both;
}

.cookaro-hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 100%;
}

.cookaro-hero-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
  animation: cookaro-image-float 6s ease-in-out infinite;
}

.cookaro-hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cookaro-hero-image-main:hover img {
  transform: scale(1.05);
}

.cookaro-hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.2) 100%);
  pointer-events: none;
}

@keyframes cookaro-image-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cookaro-hero-features {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
  width: calc(100% + 40px);
  justify-content: center;
  flex-wrap: wrap;
}

.cookaro-hero-feature {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.2);
  transition: all 0.3s ease;
  animation: cookaro-fade-in-up 0.8s ease-out both;
}

.cookaro-hero-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.3);
  border-color: #3b82f6;
}

.cookaro-hero-feature-1 {
  animation-delay: 0.6s;
}

.cookaro-hero-feature-2 {
  animation-delay: 0.8s;
}

.cookaro-hero-feature-3 {
  animation-delay: 1s;
}

.cookaro-hero-feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cookaro-hero-feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookaro-hero-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e40af;
  line-height: 1.2;
}

.cookaro-hero-feature-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.2;
}

.cookaro-hero-badge-visual {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.2);
  z-index: 10;
  animation: cookaro-fade-in 1s ease-out 1.2s both;
}

.cookaro-hero-badge-icon {
  font-size: 1.2rem;
}

.cookaro-hero-badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e40af;
}

.cookaro-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 3;
  animation: cookaro-bounce 2s ease-in-out infinite;
}

.cookaro-hero-scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: cookaro-arrow-pulse 1.5s ease-in-out infinite;
}

@keyframes cookaro-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes cookaro-arrow-pulse {
  0%, 100% {
    opacity: 0.7;
    height: 30px;
  }
  50% {
    opacity: 1;
    height: 40px;
  }
}

@keyframes cookaro-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cookaro-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .cookaro-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cookaro-hero-title {
    font-size: 3rem;
  }

  .cookaro-hero-subtitle {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .cookaro-hero-visual {
    height: 400px;
  }

  .cookaro-hero-stats {
    justify-content: center;
  }

  .cookaro-hero-features {
    bottom: -30px;
    width: 100%;
    padding: 0 20px;
  }

  .cookaro-hero-feature {
    padding: 12px 16px;
  }

  .cookaro-hero-feature-icon {
    font-size: 1.5rem;
  }

  .cookaro-hero-feature-title {
    font-size: 0.85rem;
  }

  .cookaro-hero-feature-desc {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .cookaro-hero {
    min-height: 80vh;
    padding: 100px 20px 60px;
  }

  .cookaro-hero-title {
    font-size: 2.2rem;
  }

  .cookaro-hero-buttons {
    flex-direction: column;
  }

  .cookaro-hero-btn {
    width: 100%;
    justify-content: center;
  }

  .cookaro-hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/*---------------------------------------
  REDESIGNED SECTIONS              
-----------------------------------------*/

/* Cookaro News / Recipes Section */
.cookaro-news-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
}

.cookaro-news-header-wrapper {
  margin-bottom: 80px;
}

.cookaro-news-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cookaro-news-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-news-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1e40af;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-news-subtitle {
  font-size: 1.25rem;
  color: #1e3a8a;
  line-height: 1.6;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-recipes-slider-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding: 0 60px;
  width: 100%;
}

.cookaro-recipes-slider {
  position: relative;
}

.cookaro-recipes-slider .owl-stage-outer {
  padding: 20px 0;
}

.cookaro-recipes-slider .owl-item {
  padding: 0 16px;
  transition: transform 0.3s ease;
}

.cookaro-recipes-slider .owl-item.active {
  transform: scale(1);
}

.cookaro-recipes-slider .owl-item:not(.active):not(.center) {
  opacity: 0.6;
}

.cookaro-recipes-slider .owl-item.center {
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
}

.cookaro-recipes-slider .owl-item.center .cookaro-recipe-card {
  border-color: #3b82f6;
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.25);
}

/* Slider animation improvements */
.cookaro-recipes-slider .owl-stage {
  display: flex;
  align-items: stretch;
}

.cookaro-recipes-slider .owl-item {
  display: flex;
  align-items: stretch;
}

.cookaro-recipe-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
  max-width: 400px;
}

.cookaro-recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.25);
  border-color: #3b82f6;
}

.cookaro-recipe-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.cookaro-recipe-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookaro-recipe-card:hover .cookaro-recipe-image-wrapper img {
  transform: scale(1.15);
}

.cookaro-recipe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(30, 58, 138, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cookaro-recipe-card:hover .cookaro-recipe-overlay {
  opacity: 1;
}

.cookaro-recipe-meta {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
}

.cookaro-recipe-time,
.cookaro-recipe-difficulty {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 8px;
}

.cookaro-recipe-btn {
  align-self: flex-start;
  padding: 12px 24px;
  background: #ffffff;
  color: #1e40af;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-recipe-btn:hover {
  background: #eff6ff;
  transform: translateX(4px);
}

.cookaro-recipe-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cookaro-recipe-category {
  font-size: 0.85rem;
  color: #3b82f6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.cookaro-recipe-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-recipe-description {
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cookaro-recipe-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookaro-tag {
  padding: 6px 14px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Slider Controls */
.cookaro-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.cookaro-slider-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #3b82f6;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.cookaro-slider-nav:hover {
  background: #2563eb;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
}

.cookaro-slider-nav:active {
  transform: scale(0.95);
}

.cookaro-slider-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.cookaro-slider-nav svg {
  width: 20px;
  height: 20px;
}

.cookaro-slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cookaro-slider-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dbeafe;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.cookaro-slider-dots .owl-dot:hover {
  background: #93c5fd;
  transform: scale(1.2);
}

.cookaro-slider-dots .owl-dot.active {
  background: #2563eb;
  width: 32px;
  border-radius: 6px;
  border-color: #1e40af;
  border-width: 2px;
}

/* Hide default owl carousel nav */
.cookaro-recipes-slider .owl-nav {
  display: none;
}

.cookaro-recipes-slider .owl-dots {
  display: none;
}

.cookaro-news-cta {
  text-align: center;
  margin-top: 60px;
}

.cookaro-news-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: 'Vollkorn SC', serif;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.cookaro-news-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

.cookaro-news-cta-btn svg {
  transition: transform 0.3s ease;
}

.cookaro-news-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Featured Course Section (formerly deep-focus) */
.cookaro-featured-course {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #2563eb 60%, #3b82f6 100%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.cookaro-featured-course::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cookaro-featured-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cookaro-featured-content {
  color: #ffffff;
}

.cookaro-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-badge-icon {
  font-size: 1.2rem;
}

.cookaro-featured-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-featured-title-main {
  display: block;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cookaro-featured-title-accent {
  display: block;
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cookaro-featured-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #dbeafe;
  margin-bottom: 40px;
}

.cookaro-featured-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.cookaro-featured-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookaro-stat-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cookaro-stat-info {
  display: flex;
  flex-direction: column;
}

.cookaro-stat-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-stat-label {
  font-size: 0.9rem;
  color: #bfdbfe;
  font-weight: 500;
}

.cookaro-featured-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.cookaro-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #e0e7ff;
}

.cookaro-feature-check {
  width: 24px;
  height: 24px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cookaro-featured-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cookaro-featured-btn-primary,
.cookaro-featured-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: 'Vollkorn SC', serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.cookaro-featured-btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  color: #1e40af;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.cookaro-featured-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.cookaro-featured-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cookaro-featured-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookaro-featured-instructor {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookaro-instructor-avatar {
  position: relative;
  flex-shrink: 0;
}

.cookaro-instructor-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.cookaro-instructor-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 3px solid #1e40af;
}

.cookaro-instructor-info {
  flex-grow: 1;
}

.cookaro-instructor-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-instructor-title {
  font-size: 0.9rem;
  color: #bfdbfe;
  margin-bottom: 8px;
}

.cookaro-instructor-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookaro-stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.cookaro-rating-text {
  font-size: 0.85rem;
  color: #dbeafe;
}

.cookaro-featured-visual {
  position: relative;
}

.cookaro-featured-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cookaro-featured-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.cookaro-featured-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookaro-featured-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.cookaro-play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e40af;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cookaro-featured-play:hover .cookaro-play-button {
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cookaro-featured-play span {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-family: 'Vollkorn SC', serif;
}

.cookaro-featured-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cookaro-decoration-item {
  position: absolute;
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: cookaro-decor-float 6s ease-in-out infinite;
}

.cookaro-dec-1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.cookaro-dec-2 {
  top: 60%;
  right: -5%;
  animation-delay: 1.5s;
}

.cookaro-dec-3 {
  bottom: 20%;
  left: 5%;
  animation-delay: 3s;
}

.cookaro-dec-4 {
  top: 30%;
  right: 10%;
  animation-delay: 4.5s;
}

@keyframes cookaro-decor-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Cookaro Values Section */
.cookaro-values-wrapper {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  padding: 120px 20px;
}

.cookaro-values-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cookaro-values-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.cookaro-values-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-values-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1e40af;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-values-subtitle {
  font-size: 1.25rem;
  color: #1e3a8a;
  line-height: 1.6;
}

.cookaro-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.cookaro-value-item {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.cookaro-value-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25);
  border-color: #3b82f6;
}

.cookaro-value-icon-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookaro-value-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookaro-value-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-value-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.cookaro-value-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookaro-value-item:hover .cookaro-value-image-wrapper img {
  transform: scale(1.15);
}

.cookaro-value-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(30, 58, 138, 0.3) 100%);
  transition: opacity 0.4s ease;
}

.cookaro-value-details {
  padding: 32px;
}

.cookaro-value-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-value-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1e3a8a;
  margin-bottom: 24px;
}

.cookaro-value-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cookaro-value-link:hover {
  color: #1e40af;
  gap: 12px;
}

.cookaro-value-link svg {
  transition: transform 0.3s ease;
}

.cookaro-value-link:hover svg {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .cookaro-news-title,
  .cookaro-values-title {
    font-size: 2.5rem;
  }

  .cookaro-recipes-slider-wrapper {
    padding: 0 40px;
  }

  .cookaro-slider-controls {
    gap: 16px;
  }

  .cookaro-slider-nav {
    width: 44px;
    height: 44px;
  }

  .cookaro-featured-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cookaro-featured-title {
    font-size: 2.5rem;
  }

  .cookaro-featured-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .cookaro-values-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .cookaro-news-container,
  .cookaro-values-wrapper {
    padding: 60px 20px;
  }

  .cookaro-news-title,
  .cookaro-values-title {
    font-size: 2rem;
  }

  .cookaro-recipes-slider-wrapper {
    padding: 0 20px;
  }

  .cookaro-slider-controls {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cookaro-slider-nav {
    width: 40px;
    height: 40px;
  }

  .cookaro-slider-nav svg {
    width: 18px;
    height: 18px;
  }

  .cookaro-recipe-card {
    max-width: 100%;
  }

  .cookaro-featured-course {
    padding: 80px 20px;
  }

  .cookaro-featured-title {
    font-size: 2rem;
  }

  .cookaro-featured-actions {
    flex-direction: column;
  }

  .cookaro-featured-btn-primary,
  .cookaro-featured-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cookaro-values-grid {
    grid-template-columns: 1fr;
  }
}

/*---------------------------------------
  PRICING SECTION              
-----------------------------------------*/
.cookaro-pricing {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  padding: 120px 20px;
}

.cookaro-pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cookaro-pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.cookaro-pricing-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-pricing-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1e40af;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-pricing-subtitle {
  font-size: 1.25rem;
  color: #1e3a8a;
  line-height: 1.6;
}

.cookaro-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.cookaro-pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.cookaro-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.25);
  border-color: #3b82f6;
}

.cookaro-pricing-card-popular {
  border-color: #3b82f6;
  transform: scale(1.05);
}

.cookaro-pricing-badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Vollkorn SC', serif;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cookaro-pricing-card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #eff6ff;
}

.cookaro-pricing-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 20px;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-pricing-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.cookaro-price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1e40af;
  line-height: 1;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-price-period {
  font-size: 1rem;
  color: #1e3a8a;
  font-weight: 500;
}

.cookaro-pricing-savings {
  margin-bottom: 12px;
}

.cookaro-savings-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
}

.cookaro-pricing-card-description {
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.6;
}

.cookaro-pricing-card-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.cookaro-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.5;
}

.cookaro-feature-row.cookaro-feature-disabled {
  opacity: 0.5;
  text-decoration: line-through;
}

.cookaro-feature-check {
  width: 24px;
  height: 24px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cookaro-feature-row.cookaro-feature-disabled .cookaro-feature-check {
  background: #bfdbfe;
  color: #1e3a8a;
}

.cookaro-pricing-btn {
  display: block;
  width: 100%;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: 'Vollkorn SC', serif;
  border: none;
  cursor: pointer;
}

.cookaro-pricing-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.cookaro-pricing-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

.cookaro-pricing-btn-secondary {
  background: #eff6ff;
  color: #1e40af;
  border: 2px solid #3b82f6;
}

.cookaro-pricing-btn-secondary:hover {
  background: #dbeafe;
  transform: translateY(-3px);
}

.cookaro-pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #3b82f6;
}

.cookaro-guarantee-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.cookaro-guarantee-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 8px;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-guarantee-content p {
  font-size: 1.05rem;
  color: #1e3a8a;
  line-height: 1.6;
  margin: 0;
}

.cookaro-pricing-calculator {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
  border: 2px solid #eff6ff;
}

.cookaro-calculator-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 24px;
  font-family: 'Vollkorn SC', serif;
}

.cookaro-calculator-content {
  font-size: 1.05rem;
  color: #1e3a8a;
  line-height: 1.8;
}

.cookaro-calculator-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.cookaro-calculator-content li {
  margin-bottom: 8px;
}

.cookaro-calculator-note {
  margin-top: 20px;
  padding: 16px;
  background: #eff6ff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  font-style: italic;
}

/* Company Table Styles */
.cookaro-company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.cookaro-company-table tr {
  border-bottom: 1px solid #eff6ff;
}

.cookaro-company-table tr:last-child {
  border-bottom: none;
}

.cookaro-company-table td {
  padding: 16px 20px;
  font-size: 1rem;
  color: #1e3a8a;
}

.cookaro-company-table td:first-child {
  width: 40%;
  font-weight: 600;
  color: #1e40af;
}

.cookaro-company-table td a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cookaro-company-table td a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.cookaro-company-details {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #eff6ff;
}

.cookaro-company-details h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 20px;
  font-family: 'Vollkorn SC', serif;
}

/* Footer Company Info */
.footer-company {
  flex: 1 1 300px;
  max-width: 400px;
}

.footer-company h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-company-info {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-company-info p {
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-company-info strong {
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

.footer-contact-info {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-contact-info p {
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-contact-info strong {
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

.footer-newsletter-note {
  font-size: 0.85rem;
  color: #bfdbfe;
  margin-top: 12px;
  line-height: 1.5;
}

.footer-newsletter-note a {
  color: #93c5fd;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .cookaro-pricing-title {
    font-size: 2.5rem;
  }

  .cookaro-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .cookaro-pricing-card-popular {
    transform: scale(1);
  }

  .cookaro-pricing-guarantee {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .cookaro-pricing {
    padding: 60px 20px;
  }

  .cookaro-pricing-title {
    font-size: 2rem;
  }

  .cookaro-pricing-grid {
    grid-template-columns: 1fr;
  }

  .cookaro-pricing-card {
    padding: 32px 24px;
  }

  .cookaro-company-table {
    font-size: 0.9rem;
  }

  .cookaro-company-table td {
    padding: 12px 16px;
  }
}

/* Contact Info Section */
.cookaro-contact-info {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 80px 20px;
}

.cookaro-contact-info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cookaro-contact-info-inner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 40px;
  text-align: center;
  font-family: 'Vollkorn SC', serif;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.contact-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
  border: 2px solid #eff6ff;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
  border-color: #3b82f6;
}

.contact-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Vollkorn SC', serif;
}

.contact-item h3 i {
  font-size: 1.5rem;
  color: #3b82f6;
}

.contact-item p {
  font-size: 1.05rem;
  color: #1e3a8a;
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-item p a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item p a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: #3b82f6;
  font-style: italic;
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cookaro-contact-info {
    padding: 60px 20px;
  }

  .cookaro-contact-info-inner h2 {
    font-size: 2rem;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero */
.cookaro-contact-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.cookaro-contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cookaro-contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cookaro-contact-hero-content {
  text-align: center;
  color: #ffffff;
}

.cookaro-contact-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookaro-contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cookaro-contact-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 48px;
  color: #dbeafe;
}

.cookaro-contact-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.cookaro-contact-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 32px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.cookaro-contact-stat-icon {
  font-size: 2rem;
}

.cookaro-contact-stat-info {
  display: flex;
  flex-direction: column;
}

.cookaro-contact-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.cookaro-contact-stat-label {
  font-size: 0.9rem;
  color: #dbeafe;
}

/* Contact Methods */
.cookaro-contact-methods {
  padding: 80px 20px;
  background: #ffffff;
}

.cookaro-contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookaro-contact-method-card {
  background: #ffffff;
  border: 2px solid #eff6ff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.cookaro-contact-method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
  border-color: #3b82f6;
}

.cookaro-contact-method-card.cookaro-contact-method-featured {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.cookaro-contact-method-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cookaro-contact-method-icon {
  font-size: 3rem;
  color: #3b82f6;
  margin-bottom: 24px;
}

.cookaro-contact-method-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
}

.cookaro-contact-method-main {
  font-size: 1.1rem;
  color: #1e3a8a;
  margin-bottom: 12px;
  line-height: 1.6;
}

.cookaro-contact-method-main a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cookaro-contact-method-main a:hover {
  color: #1e40af;
}

.cookaro-contact-method-note {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cookaro-contact-method-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookaro-contact-method-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

.cookaro-contact-method-btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.cookaro-contact-method-btn-primary:hover {
  background: #1d4ed8;
}

/* Contact Form Section */
.cookaro-contact-form-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.cookaro-contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.cookaro-contact-form-intro {
  text-align: center;
  margin-bottom: 48px;
}

.cookaro-contact-form-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cookaro-contact-form-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
}

.cookaro-contact-form-intro p {
  font-size: 1.1rem;
  color: #1e3a8a;
  line-height: 1.7;
}

.cookaro-contact-form-intro a {
  color: #2563eb;
  font-weight: 600;
}

.cookaro-contact-form-enhanced {
  background: #ffffff;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
}

.cookaro-form-group {
  margin-bottom: 24px;
}

.cookaro-form-group label {
  display: block;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 8px;
  font-size: 1rem;
}

.cookaro-form-group input,
.cookaro-form-group select,
.cookaro-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eff6ff;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Vollkorn SC', serif;
  color: #1e3a8a;
  background: #ffffff;
  transition: all 0.3s ease;
}

.cookaro-form-group input:focus,
.cookaro-form-group select:focus,
.cookaro-form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.cookaro-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.cookaro-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cookaro-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cookaro-form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.cookaro-form-checkbox label {
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

.cookaro-form-checkbox label a {
  color: #2563eb;
  text-decoration: underline;
}

.cookaro-contact-form-submit {
  width: 100%;
  padding: 16px 32px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Vollkorn SC', serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.cookaro-contact-form-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(30, 58, 138, 0.2);
}

/* Why Contact Us */
.cookaro-contact-why {
  padding: 80px 20px;
  background: #ffffff;
}

.cookaro-contact-why-header {
  text-align: center;
  margin-bottom: 48px;
}

.cookaro-contact-why-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cookaro-contact-why-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
}

.cookaro-contact-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookaro-contact-why-item {
  text-align: center;
  padding: 32px;
  background: #eff6ff;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cookaro-contact-why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
}

.cookaro-contact-why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cookaro-contact-why-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 12px;
}

.cookaro-contact-why-item p {
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.7;
}

/* FAQ Preview */
.cookaro-contact-faq-preview {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #ffffff;
}

.cookaro-contact-faq-preview-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cookaro-contact-faq-preview-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cookaro-contact-faq-preview-content > p {
  font-size: 1.1rem;
  color: #dbeafe;
  margin-bottom: 32px;
}

.cookaro-contact-faq-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cookaro-contact-faq-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cookaro-contact-faq-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(8px);
}

.cookaro-contact-faq-all {
  display: inline-block;
  padding: 14px 32px;
  background: #ffffff;
  color: #2563eb;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookaro-contact-faq-all:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

/* Contact Company */
.cookaro-contact-company {
  padding: 80px 20px;
  background: #ffffff;
}

.cookaro-contact-company-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookaro-contact-company-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  text-align: center;
  margin-bottom: 48px;
}

.cookaro-contact-company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.cookaro-contact-company-item {
  background: #eff6ff;
  padding: 32px;
  border-radius: 16px;
}

.cookaro-contact-company-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 20px;
}

.cookaro-contact-company-item p {
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.7;
  margin-bottom: 12px;
}

.cookaro-contact-company-item a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.cookaro-contact-company-item a:hover {
  text-decoration: underline;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero */
.cookaro-about-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.cookaro-about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cookaro-about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cookaro-about-hero-content {
  text-align: center;
  color: #ffffff;
}

.cookaro-about-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookaro-about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cookaro-about-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 48px;
  color: #dbeafe;
}

.cookaro-about-hero-principles {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.cookaro-about-principle {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 28px 32px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  max-width: 320px;
  transition: all 0.3s ease;
  animation: cookaro-fade-in-up 0.8s ease-out both;
}

.cookaro-about-principle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cookaro-about-principle:nth-child(1) {
  animation-delay: 0.6s;
}

.cookaro-about-principle:nth-child(2) {
  animation-delay: 0.8s;
}

.cookaro-about-principle:nth-child(3) {
  animation-delay: 1s;
}

.cookaro-about-principle-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cookaro-about-principle-content {
  flex: 1;
}

.cookaro-about-principle-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookaro-about-principle-content p {
  font-size: 0.95rem;
  color: #dbeafe;
  line-height: 1.6;
  margin: 0;
}

/* Story Section */
.cookaro-about-story {
  padding: 80px 20px;
  background: #ffffff;
}

.cookaro-about-story-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cookaro-about-story-text {
  position: relative;
}

.cookaro-about-story-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cookaro-about-story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 32px;
}

.cookaro-about-story-paragraphs p {
  font-size: 1.1rem;
  color: #1e3a8a;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cookaro-about-story-image {
  position: relative;
}

.cookaro-about-story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.2);
}

.cookaro-about-story-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
}

.cookaro-about-dec-item {
  font-size: 2.5rem;
  animation: float 3s ease-in-out infinite;
  margin-bottom: 12px;
}

.cookaro-about-dec-item:nth-child(2) {
  animation-delay: 1s;
}

.cookaro-about-dec-item:nth-child(3) {
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Mission & Vision */
.cookaro-about-mission {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.cookaro-about-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookaro-about-mission-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.cookaro-about-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
}

.cookaro-about-mission-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.cookaro-about-mission-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
}

.cookaro-about-mission-card p {
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.7;
}

/* Team Section */
.cookaro-about-team {
  padding: 80px 20px;
  background: #ffffff;
}

.cookaro-about-team-header {
  text-align: center;
  margin-bottom: 60px;
}

.cookaro-about-team-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cookaro-about-team-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
}

.cookaro-about-team-header p {
  font-size: 1.1rem;
  color: #1e3a8a;
}

.cookaro-about-team .cookaro-slider-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cookaro-team-slider-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding: 0 60px;
  width: 100%;
}

.cookaro-team-slider-wrapper .cookaro-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.cookaro-team-slider-wrapper .cookaro-slider-prev {
  left: 0;
}

.cookaro-team-slider-wrapper .cookaro-slider-next {
  right: 0;
}

.cookaro-team-slider {
  position: relative;
}

.cookaro-team-slider .owl-stage-outer {
  padding: 20px 0;
}

.cookaro-team-slider .owl-item {
  padding: 0 16px;
  transition: transform 0.3s ease;
}

.cookaro-team-slider .owl-item.active {
  transform: scale(1);
}

.cookaro-team-slider .owl-item:not(.active):not(.center) {
  opacity: 0.6;
}

.cookaro-team-slider .owl-item.center {
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
}

.cookaro-team-slider .owl-item.center .cookaro-about-team-card {
  border-color: #3b82f6;
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.25);
}

.cookaro-team-slider .owl-stage {
  display: flex;
  align-items: stretch;
}

.cookaro-team-slider .owl-item {
  display: flex;
  align-items: stretch;
}

/* Hide default owl carousel nav */
.cookaro-team-slider .owl-nav {
  display: none;
}

.cookaro-team-slider .owl-dots {
  display: none;
}

.cookaro-about-team-card {
  background: #ffffff;
  border: 2px solid #eff6ff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
  max-width: 400px;
}

.cookaro-about-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
  border-color: #3b82f6;
}

.cookaro-about-team-image {
  position: relative;
  overflow: hidden;
}

.cookaro-about-team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cookaro-about-team-card:hover .cookaro-about-team-image img {
  transform: scale(1.1);
}

.cookaro-about-team-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #3b82f6;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cookaro-about-team-info {
  padding: 32px;
}

.cookaro-about-team-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 8px;
}

.cookaro-about-team-role {
  font-size: 1rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 16px;
}

.cookaro-about-team-bio {
  font-size: 0.95rem;
  color: #1e3a8a;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cookaro-about-team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookaro-about-team-skill {
  padding: 6px 12px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Milestones */
.cookaro-about-milestones {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.cookaro-about-milestones-header {
  text-align: center;
  margin-bottom: 60px;
}

.cookaro-about-milestones-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cookaro-about-milestones-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
}

.cookaro-about-milestones-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.cookaro-about-milestones-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 2px;
}

.cookaro-about-milestone {
  position: relative;
  margin-bottom: 48px;
  padding-left: 60px;
}

.cookaro-about-milestone::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 20px;
  height: 20px;
  background: #3b82f6;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px #eff6ff;
}

.cookaro-about-milestone-year {
  position: absolute;
  left: -80px;
  top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.cookaro-about-milestone-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 12px;
}

.cookaro-about-milestone-content p {
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.7;
}

/* About Company */
.cookaro-about-company {
  padding: 80px 20px;
  background: #ffffff;
}

.cookaro-about-company-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.cookaro-about-company-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cookaro-about-company-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 48px;
}

.cookaro-company-details-table {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
}

/* About CTA */
.cookaro-about-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #ffffff;
}

.cookaro-about-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cookaro-about-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cookaro-about-cta-content p {
  font-size: 1.2rem;
  color: #dbeafe;
  margin-bottom: 40px;
}

.cookaro-about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookaro-about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cookaro-about-cta-btn-primary {
  background: #ffffff;
  color: #2563eb;
}

.cookaro-about-cta-btn-primary:hover {
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cookaro-about-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.cookaro-about-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

/* FAQ Hero */
.cookaro-faq-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.cookaro-faq-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cookaro-faq-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cookaro-faq-hero-content {
  text-align: center;
  color: #ffffff;
}

.cookaro-faq-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookaro-faq-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cookaro-faq-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 48px;
  color: #dbeafe;
}

.cookaro-faq-hero-search {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.cookaro-faq-hero-search input {
  width: 100%;
  padding: 18px 24px 18px 56px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-family: 'Vollkorn SC', serif;
  background: rgba(255, 255, 255, 0.95);
  color: #1e3a8a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cookaro-faq-hero-search input:focus {
  outline: none;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cookaro-faq-hero-search i {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1.2rem;
}

/* FAQ Categories */
.cookaro-faq-categories {
  padding: 40px 20px;
  background: #ffffff;
  border-bottom: 2px solid #eff6ff;
}

.cookaro-faq-categories-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookaro-faq-category-btn {
  padding: 12px 24px;
  background: #eff6ff;
  color: #1e40af;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Vollkorn SC', serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookaro-faq-category-btn:hover {
  background: #dbeafe;
  transform: translateY(-2px);
}

.cookaro-faq-category-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* FAQ Section */
.cookaro-faq-section {
  padding: 80px 20px;
  background: #ffffff;
}

.cookaro-faq-category {
  margin-bottom: 60px;
}

.cookaro-faq-category-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 2rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid #eff6ff;
}

.cookaro-faq-category-icon {
  font-size: 2.5rem;
}

.cookaro-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookaro-faq-item {
  background: #ffffff;
  border: 2px solid #eff6ff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cookaro-faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.cookaro-faq-item.active {
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
}

.cookaro-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
}

.cookaro-faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e40af;
  margin: 0;
  flex: 1;
}

.cookaro-faq-toggle {
  background: none;
  border: none;
  color: #2563eb;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.cookaro-faq-item.active .cookaro-faq-toggle {
  transform: rotate(45deg);
}

.cookaro-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 32px;
}

.cookaro-faq-item.active .cookaro-faq-answer {
  max-height: 1000px;
  padding: 0 32px 24px;
}

.cookaro-faq-answer p {
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.cookaro-faq-answer p:last-child {
  margin-bottom: 0;
}

.cookaro-faq-answer a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 600;
}

/* FAQ Contact CTA */
.cookaro-faq-contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.cookaro-faq-contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
}

.cookaro-faq-contact-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.cookaro-faq-contact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
}

.cookaro-faq-contact-content p {
  font-size: 1.1rem;
  color: #1e3a8a;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cookaro-faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cookaro-faq-contact-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(30, 58, 138, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .cookaro-contact-hero-title,
  .cookaro-about-hero-title,
  .cookaro-faq-hero-title {
    font-size: 2.5rem;
  }

  .cookaro-about-story-content {
    grid-template-columns: 1fr;
  }

  .cookaro-about-story-image {
    order: -1;
  }

  .cookaro-about-milestones-timeline {
    padding-left: 0;
  }

  .cookaro-about-milestones-timeline::before {
    display: none;
  }

  .cookaro-about-milestone {
    padding-left: 0;
  }

  .cookaro-about-milestone::before {
    display: none;
  }

  .cookaro-about-milestone-year {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
  }
}

@media (max-width: 576px) {
  .cookaro-contact-hero,
  .cookaro-about-hero,
  .cookaro-faq-hero {
    padding: 100px 20px 60px;
  }

  .cookaro-contact-hero-title,
  .cookaro-about-hero-title,
  .cookaro-faq-hero-title {
    font-size: 2rem;
  }

  .cookaro-contact-hero-stats,
  .cookaro-about-hero-principles {
    gap: 24px;
  }

  .cookaro-about-principle {
    max-width: 100%;
    padding: 24px;
  }

  .cookaro-contact-methods-grid,
  .cookaro-contact-why-grid,
  .cookaro-about-mission-grid {
    grid-template-columns: 1fr;
  }

  .cookaro-team-slider-wrapper {
    padding: 0 50px;
  }

  .cookaro-team-slider-wrapper .cookaro-slider-nav {
    width: 40px;
    height: 40px;
  }

  .cookaro-team-slider-wrapper .cookaro-slider-nav svg {
    width: 16px;
    height: 16px;
  }

  .cookaro-form-row {
    grid-template-columns: 1fr;
  }

  .cookaro-contact-form-enhanced {
    padding: 32px 24px;
  }

  .cookaro-faq-categories-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .cookaro-faq-category-btn {
    width: 100%;
    text-align: center;
  }
}

/* Общие стили для центрирования на мобильных устройствах */
@media (max-width: 991px) {
  .cookaro-container,
  .container {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }

  /* Центрирование текста */
  h1, h2, h3, h4, h5, h6 {
    text-align: center;
  }

  /* Центрирование кнопок */
  .cookaro-hero-buttons,
  .cookaro-about-cta-buttons,
  .cookaro-faq-contact-content {
    justify-content: center;
    align-items: center;
  }

  /* Центрирование карточек */
  .cookaro-recipes-slider-wrapper,
  .cookaro-values-grid,
  .cookaro-pricing-grid {
    justify-items: center;
  }

  /* Центрирование статистики и элементов */
  .cookaro-hero-stats,
  .cookaro-about-hero-principles,
  .cookaro-contact-hero-stats {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 576px) {
  /* Дополнительное центрирование для маленьких экранов */
  .cookaro-hero-content,
  .cookaro-about-hero-content,
  .cookaro-contact-hero-content,
  .cookaro-faq-hero-content {
    text-align: center;
  }

  .cookaro-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookaro-hero-btn {
    width: 100%;
    justify-content: center;
  }

  .cookaro-about-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookaro-about-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

