/*
Theme Name: Cronas Euro Group
Theme URI: https://cronas-group.com/
Author: Cronas Euro Group OÜ
Description: One-page corporate landing theme for Cronas Euro Group OÜ.
Version: 1.0
*/

:root {
  --navy: #0f1b2d;
  --graphite: #1b2738;
  --steel: #2a3b52;
  --teal: #2a7f9e;
  --teal-dark: #1f5f76;
  --light: #f7f9fc;
  --mist: #eef2f6;
  --white: #ffffff;
  --text: #1a2432;
  --muted: #556070;
  --shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  margin-bottom: 0.8rem;
  color: var(--navy);
}

.section-head p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}

.btn:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.nav-list a:focus-visible {
  outline: 3px solid rgba(42, 127, 158, 0.5);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(42, 127, 158, 0.25);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-dark);
  border-color: rgba(42, 127, 158, 0.3);
}

.btn-secondary:hover {
  background: var(--mist);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15, 27, 45, 0.2);
}

.btn-ghost:hover {
  background: var(--mist);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 27, 45, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo img {
  width: 160px;
  height: 64px;
  object-fit: contain;
}

.site-nav {
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  color: var(--steel);
}

.nav-list a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 27, 45, 0.15);
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.mobile-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(15, 27, 45, 0.08);
}

.mobile-nav ul {
  list-style: none;
    display: grid;
    gap: 0.8rem;
    padding: 1rem 1.5rem 1.5rem;
    justify-content: center;
    text-align: center;
}

.mobile-nav a {
  font-weight: 600;
  color: var(--steel);
}
.mobile-nav .btn {
  font-weight: 600;
  color: #fff;
}

/* Hero */
.hero {
  padding: 6rem 0 5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f2f6fb 50%, #edf4f7 100%);
}

.hero-grid {
  display: grid;
  gap: 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--steel);
}

.trust-list li::before {
  content: "•";
  color: var(--teal);
  margin-right: 0.5rem;
}

.hero-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.panel-grid {
  display: grid;
  gap: 1.5rem;
}

.panel-block {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
}

.panel-label {
  font-size: 0.75rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* About */
.about {
  background: var(--white);
}

.split {
  display: grid;
  gap: 3rem;
}

.about h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.about p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.stats-card {
  background: var(--mist);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats-card h3 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.stats-card ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--steel);
}

/* Products */
.products {
  background: var(--light);
}

.accordion {
  display: grid;
  gap: 1rem;
}

.accordion-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.accordion-icon {
  font-size: 1.4rem;
  color: var(--teal);
}

.accordion-panel {
  padding: 0 1.6rem 1.6rem;
  display: none;
  color: var(--steel);
}

.accordion-item.active .accordion-panel {
  display: block;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.product-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.product-columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.products h4 {
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.products ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.products ul li::before {
  content: "-";
  margin-right: 0.5rem;
  color: var(--teal);
}

/* Industries & Why Us */
.industries {
  background: var(--white);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.icon-card,
.benefit-card {
  background: var(--light);
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(42, 127, 158, 0.1);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.icon-card h3,
.benefit-card h3 {
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.icon-card p,
.benefit-card p {
  color: var(--muted);
}

.why-us {
  background: linear-gradient(180deg, #f7f9fc 0%, #edf2f6 100%);
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  margin: 1.6rem 0 2rem;
  color: var(--steel);
}

.contact-details a {
  color: var(--teal-dark);
  font-weight: 600;
}

.contact-form {
  background: var(--mist);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* .cf7-form form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
} */

.cf7-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cf7-field {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--navy);
}

.cf7-field input,
.cf7-field textarea,
.cf7-field select {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(27, 39, 56, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
}

.cf7-field textarea {
  min-height: 140px;
  resize: vertical;
}

.cf7-message {
  grid-column: 1 / -1;
}

.cf7-submit-wrap {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
	
}

.cf7-submit {
display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    cursor: pointer;
	background: var(--teal);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(42, 127, 158, 0.25);
}

.cf7-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.cf7-form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.cf7-form .wpcf7-not-valid-tip {
  font-size: 0.85rem;
  color: #b11f1f;
}

.cf7-form p {
  margin: 0;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field textarea {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(27, 39, 56, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
}

.field-full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.8rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 160px;
  height: 64px;
  object-fit: contain;
  margin: auto;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (min-width: 900px) {
  .site-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-nav a {
    color: #fff!important;
  }
}

@media (max-width: 899px) {
  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .cf7-grid {
    grid-template-columns: 1fr;
  }

  .cf7-message,
  .cf7-submit-wrap {
    grid-column: 1 / -1;
  }

  .cf7-submit {
    width: 180px;
    height: 180px;
  }

  .footer-grid {
    text-align: center;
    justify-items: center;
  }
}
:root {
