@import url('https://fonts.googleapis.com/css2?family=Gemunu+Libre:wght@300;400;500;600;700;800&family=League+Spartan:wght@300;400;500;600;700;800&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap');

/* ----------------------------------------------------------------------
   DESIGN SYSTEM TOKENS
   ---------------------------------------------------------------------- */
:root {
  --primary: #C41B1F;
  /* Brand Red */
  --accent: #C41B1F;
  --secondary: #070707;
  /* Brand Dark */
  --text-primary: #070707;
  --text-secondary: #555555;
  --text-light: #FFFFFF;
  --bg-dark: #070707;
  --bg-light: #F5F5F5;
  --bg-gray: #ADB7BA;
  /* rgba(173,183,186,1) */
  --bg-charcoal: #232122;
  /* How we work background */
  --link: #68CCD1;
  --border-color: #E2E8F0;

  --font-heading: 'Gemunu Libre', sans-serif;
  --font-body: 'League Spartan', 'Spartan', sans-serif;
  --font-alt: 'Source Sans Pro', sans-serif;

  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ----------------------------------------------------------------------
   GLOBAL RESET
   ---------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 24px;
}

.flex {
  display: flex;
  gap: 16px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------------
   GLOBAL HEADER
   ---------------------------------------------------------------------- */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo img {
  height: 65px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Hamburger Trigger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--secondary);
  margin-bottom: 5px;
  transition: var(--transition);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------------
   MOBILE NAVIGATION DRAWER
   ---------------------------------------------------------------------- */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--text-light);
  z-index: 1000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-logo img {
  height: 50px;
  width: auto;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-primary);
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.drawer-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-body);
}

.drawer-contact h3 {
  font-size: 20px;
  color: var(--primary);
}

.drawer-contact a {
  font-weight: 600;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Header Toggle */
@media (max-width: 1024px) {

  .nav-menu,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* ----------------------------------------------------------------------
   HERO SECTIONS
   ---------------------------------------------------------------------- */
.hero-section {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 650px;
  align-items: stretch;
  position: relative;
}

.hero-left-spacer {
  background-image: url('../assets/images/red_black_and_white_electrical_db-board-576h.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}

.hero-left-spacer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.hero-right-content {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 120px 80px 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-title {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta-btn {
  background-color: var(--secondary) !important;
}

.hero-cta-btn:hover {
  background-color: var(--text-light) !important;
  color: var(--secondary) !important;
}

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-left-spacer {
    height: 350px;
  }

  .hero-right-content {
    padding: 60px 40px;
  }

  .hero-title {
    font-size: 48px;
  }
}

/* ----------------------------------------------------------------------
   PAGE HEROES (Inner pages)
   ---------------------------------------------------------------------- */
.inner-hero {
  background-color: var(--bg-charcoal);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.inner-hero h1 {
  font-size: 58px;
  margin-bottom: 12px;
}

/* ---------------------------------------------------------------------
   ABOUT SECTIONS & STATS
   --------------------------------------------------------------------- */
.about-intro-section {
  background-color: var(--bg-gray);
  padding: 100px 24px;
}

.about-intro-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-title h2 {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 24px;
}

.about-intro-text p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.stats-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  text-align: center;
  background: transparent;
  padding: 10px 0;
}

.stat-number {
  font-size: 72px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 8px;
  text-transform: lowercase;
}

.stat-card::after {
  content: '';
  display: block;
  width: 84px;
  height: 5px;
  background-color: #D34E51;
  /* var(--color_5) Duda accent red */
  margin: 16px auto;
}

.stat-label {
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  color: inherit;
  font-family: var(--font-body);
  line-height: 1.5;
}

.stats-visual {
  position: relative;
  background-image: url('../assets/images/web_diagonal-lines_square_251x251-1920w.png');
  background-repeat: no-repeat;
  background-position: 100% 0;
  padding: 24px 24px 0 0;
}

.stats-visual img {
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

@media (max-width: 1024px) {
  .stats-grid-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------------
   SERVICES CARD GRID
   ---------------------------------------------------------------------- */
.services-section {
  padding: 100px 0;
}

.services-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 60px;
  position: relative;
}

.services-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--text-light);
  box-shadow: var(--shadow-lg);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card-img {
  height: 300px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.service-card-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-card-link {
  margin-top: auto;
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card-link:hover {
  color: var(--secondary);
}

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

/* ----------------------------------------------------------------------
   HOW WE WORK (ACCORDION & TEXT LISTS)
   ---------------------------------------------------------------------- */
.how-we-work-section {
  background-color: var(--bg-charcoal);
  color: var(--text-light);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.how-we-work-img {
  height: 100%;
  min-height: 600px;
}

.how-we-work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-we-work-content {
  padding: 100px 80px;
}

.how-we-work-content h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

/* Accordion Component */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  border-bottom: 2px solid #D34E51;
  /* Duda accent red var(--color_5) */
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  /* Font weight 400 as per Duda css */
}

.accordion-header h4 {
  font-family: var(--font-body);
  text-transform: none;
}

.accordion-icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: #D34E51;
  transition: var(--transition);
}

/* Horizontal line */
.accordion-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

/* Vertical line */
.accordion-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.accordion-item.active .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content p {
  padding-bottom: 20px;
  color: #CCCCCC;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .how-we-work-section {
    grid-template-columns: 1fr;
  }

  .how-we-work-img {
    height: 350px;
    min-height: auto;
  }

  .how-we-work-content {
    padding: 60px 24px;
  }
}

/* Stagger List (Alternate style for inner pages) */
.stagger-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stagger-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.stagger-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
}

.stagger-text h4 {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--secondary);
  text-transform: none;
}

/* ----------------------------------------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------------------------------------- */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--text-light);
}

.testimonials-section h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.testimonial-img-wrapper {
  height: 250px;
  overflow: hidden;
}

.testimonial-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------
   SERVICES IN DETAIL LISTS
   --------------------------------------------------------------------- */
.service-detail-section {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 100px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 60px;
  align-items: center;
}

.service-detail-title {
  font-size: 44px;
  margin-bottom: 20px;
}

.service-detail-desc {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
}

.service-list-item::before {
  content: '✓';
  color: var(--text-light);
  font-weight: 900;
  font-size: 20px;
}

.service-detail-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-detail-graphic svg,
.service-detail-graphic img {
  width: 100%;
  max-width: 280px;
  fill: var(--text-light);
}

@media (max-width: 768px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}

/* Stagger Grid on Services */
.stagger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.stagger-grid-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 500px;
}

.stagger-img-1 {
  grid-column: 1 / span 8;
  grid-row: 1 / span 8;
  z-index: 2;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stagger-img-2 {
  grid-column: 5 / span 8;
  grid-row: 5 / span 8;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stagger-grid-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stagger-deco-lines {
  display: none;
}

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

  .stagger-grid-images {
    height: 350px;
  }
}

/* ----------------------------------------------------------------------
   GLOBAL FOOTER & CONTACT FORM
   ---------------------------------------------------------------------- */
.footer-contact-form-section {
  background-color: var(--text-light);
  padding: 100px 0;
  border-top: 2px solid var(--border-color);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 5fr;
  gap: 40px;
  align-items: center;
}

.footer-contact-title h2 {
  font-size: 56px;
  color: var(--secondary);
  line-height: 1;
}

.footer-contact-deco img {
  max-width: 100%;
  height: auto;
}

/* Modern Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--text-primary);
  border-radius: 0px;
  /* Sharp inputs as per branding.json */
  font-family: var(--font-body);
  font-size: 16px;
  background-color: transparent;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}

.form-input::placeholder {
  color: #777777;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 27, 31, 0.1);
}

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

.form-btn {
  width: 100%;
  padding: 16px;
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.form-btn:hover {
  background-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.form-status {
  padding: 16px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-status.success {
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  display: block;
}

.form-status.error {
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
  display: block;
}

/* Footer Bottom Column */
.main-footer {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 80px 0 40px;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--primary);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-tagline {
  font-style: italic;
  font-size: 16px;
  color: #CCCCCC;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}

.social-icons-wrapper {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--text-light);
  transition: var(--transition);
}

.social-icon-btn:hover {
  background-color: var(--text-light);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Iconify Integration Custom Styles */
iconify-icon {
  font-size: 20px;
  transition: color 0.3s ease, transform 0.15s ease;
  display: inline-block;
  vertical-align: middle;
}

.social-icon-btn iconify-icon {
  font-size: 22px;
  color: inherit;
  display: inline-flex;
}

/* Ensure no scale transform triggers inside circular social buttons */
.social-icon-btn:hover iconify-icon {
  transform: none;
}

.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #999999;
}

.copyright-links {
  display: flex;
  gap: 24px;
}

.copyright-links a:hover {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .footer-contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact-deco {
    display: none;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
  }

  .copyright-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .copyright-links {
    justify-content: center;
  }
}

/* ----------------------------------------------------------------------
   CONTACT PAGE SPECIFIC STYLES
   ---------------------------------------------------------------------- */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 6fr;
  gap: 40px;
  align-items: center;
  background-color: var(--bg-light);
}

.contact-hero-img {
  height: 100%;
  min-height: 500px;
}

.contact-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-badge {
  display: flex;
  justify-content: center;
}

.contact-hero-badge img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.contact-details-box {
  padding: 60px 40px;
}

.contact-details-box h1 {
  font-size: 58px;
  color: var(--secondary);
  margin-bottom: 24px;
}

.contact-address,
.contact-phones,
.contact-email {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.8;
}

.contact-social-row {
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-img {
    height: 300px;
    min-height: auto;
  }

  .contact-hero-badge {
    display: none;
  }

  .contact-details-box {
    padding: 40px 24px;
    text-align: center;
  }
}

/* ----------------------------------------------------------------------
   PRIVACY POLICY SPECIFIC STYLES
   ---------------------------------------------------------------------- */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  font-family: var(--font-alt);
  color: #313131;
}

.privacy-container h1 {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 30px;
}

.privacy-container h3 {
  font-size: 24px;
  color: var(--secondary);
  margin-top: 40px;
  margin-bottom: 16px;
  text-transform: none;
}

.privacy-container p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.privacy-container ul,
.privacy-container ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.privacy-container li {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
  list-style-type: disc;
}

/* ----------------------------------------------------------------------
   COOKIE NOTICE COMPONENT
   ---------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 24px 30px;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-content {
  font-size: 15px;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  text-transform: uppercase;
}

.cookie-btn-accept {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
}

.cookie-btn-accept:hover {
  background-color: var(--text-light);
  color: var(--secondary);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }
}