/* Variables - Ρυθμίσεις Χρωμάτων & Σκιάσεων */
:root {
  --orange: #ff8c00;
  --blue: #4957ae;
  --navy: #26348b;
  --bg: #f7f9fb;
  --surface: #fff;
  --muted: #64748b;
  --soft: #dfe0ff;
  --shadow: 0 24px 48px -12px rgba(73, 87, 174, .12);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #191c1e;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(73, 87, 174, .05);
}

.navbar {
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(73, 87, 174, .85);
}

.nav-link {
  transition: .25s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.emergency-btn {
  background: var(--orange);
  color: white;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 15px 30px rgba(255, 140, 0, .2);
}

.emergency-btn .material-symbols-outlined {
  font-size: 18px;
}

.menu-btn {
  display: none;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.menu-btn .material-symbols-outlined {
  font-size: 32px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: white;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform .35s ease;
  box-shadow: -20px 0 40px rgba(0, 0, 0, .12);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-inner {
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.mobile-close {
  align-self: flex-end;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 35px;
}

.mobile-links a {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.mobile-phone {
  color: var(--orange) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.mobile-credit {
  margin-top: auto;
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .45);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
}

.menu-overlay.active {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

/* Hero Section */
main {
  padding-top: 80px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero:before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 120%;
  background: rgba(73, 87, 174, .05);
  border-radius: 100px;
  transform: rotate(12deg);
  filter: blur(45px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 15px;
  border-radius: 999px;
  background: var(--soft);
  color: #303e95;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.hero h1,
.page-title {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.055em;
  color: var(--blue);
  margin-top: 24px;
}

.hero h1 span,
.page-title span {
  color: var(--orange);
}

.hero p,
.page-subtitle {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 720px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 18px 35px rgba(255, 140, 0, .22);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  box-shadow: 0 18px 35px rgba(73, 87, 174, .08);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

/* Visual Components */
.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: .6s;
}

.visual-frame:hover {
  transform: rotate(0);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(18px);
}

.visual-badge-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.visual-badge-top span:first-child {
  font-size: 10px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.rating {
  background: var(--orange);
  color: white;
  border-radius: 7px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 900;
}

.visual-badge h3 {
  font-size: 20px;
  color: var(--navy);
  font-weight: 900;
}

.visual-badge p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Sections & Containers */
.section {
  padding: 88px 24px;
}

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

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.label-tiny {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 900;
  color: var(--navy);
}

.section-text {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
  max-width: 720px;
}

.link-all {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-weight: 900;
}

/* Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.trust-card,
.info-card,
.process-card {
  background: white;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 8px 25px rgba(73, 87, 174, .045);
  transition: .3s;
}

.service-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.trust-card:hover,
.info-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(73, 87, 174, .1);
}

.service-card:hover {
  background: var(--blue);
}

.icon-wrapper,
.feature-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #f1f5f9;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.icon-wrapper .material-symbols-outlined,
.feature-icon-box .material-symbols-outlined {
  font-size: 46px !important;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.service-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.service-card p,
.trust-card p,
.info-card p,
.process-card p,
.faq-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.service-card span:last-child {
  margin-top: auto;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover span,
.service-card:hover .material-symbols-outlined {
  color: white;
}

.service-card:hover .icon-wrapper {
  background: rgba(255, 255, 255, .18);
}

/* Page Specifics */
.page-hero {
  padding: 110px 24px 80px;
  background: radial-gradient(circle at top right, rgba(73, 87, 174, .08), transparent 40%), var(--bg);
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.image-card {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  text-align: center;
}

.feature-icon-box {
  margin: 0 auto 20px;
}

.trust-card h3,
.info-card h3,
.process-card h3,
.faq-item h3 {
  font-size: 20px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.process-card:before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-weight: 900;
}

.faq-section {
  background: #f7f9fb;
}

.faq-item {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 8px 25px rgba(73, 87, 174, .045);
}

.internal-links-section .info-card a {
  color: var(--blue);
  font-weight: 900;
}

.internal-links-section .info-card a:hover {
  color: var(--orange);
}

/* Quote Form Section */
.quote-section {
  padding: 88px 24px;
  background: white;
}

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

.quote-header {
  text-align: center;
  margin-bottom: 44px;
}

.quote-title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.04em;
}

.quote-subtitle {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  padding-left: 8px;
}

.input-group input,
.input-group select,
.input-group textarea {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 18px 20px;
  font: inherit;
  color: #191c1e;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  background: #e9eef6;
  box-shadow: 0 0 0 4px rgba(255, 140, 0, .1);
}

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

textarea {
  resize: vertical;
}

.gdpr-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.gdpr-label input {
  margin-top: 5px;
  accent-color: var(--orange);
}

.gdpr-label a {
  color: var(--blue);
  font-weight: 900;
}

.submit-btn {
  background: var(--navy);
  color: white;
  border-radius: 999px;
  padding: 22px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(38, 52, 139, .22);
  transition: .3s;
}

.submit-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* Footer Section */
.main-footer {
  background: #f1f5f9;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.footer-about {
  color: var(--muted);
  line-height: 1.65;
  max-width: 330px;
  margin-top: 18px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--orange);
  margin-bottom: 22px;
}

.link-list {
  list-style: none;
}

.link-list li {
  margin-bottom: 13px;
}

.link-list a {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
  transition: .25s;
}

.link-list a:hover {
  color: var(--navy);
  padding-left: 5px;
}

.footer-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.availability {
  color: var(--muted);
}

.footer-tel,
.footer-address {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
}

.footer-address {
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
}

.footer-tel:hover,
.footer-address:hover {
  color: var(--orange);
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #94a3b8;
  font-size: 13px;
}

.extramedia-link strong {
  color: var(--navy);
}

.extramedia-link:hover strong {
  color: var(--orange);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  z-index: 900;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 16px 32px;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.mobile-bottom-nav .material-symbols-outlined {
  color: #94a3b8;
}

.mobile-bottom-nav .active {
  color: var(--orange);
}

/* Media Queries - Responsive Design */
@media(max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-logo {
    height: 42px;
    max-width: 210px;
  }
  .footer-logo-img {
    height: 46px;
    max-width: 260px;
  }
}

@media(max-width: 767px) {
  .navbar {
    height: 74px;
    padding: 0 18px;
  }
  main {
    padding-top: 74px;
  }
  .site-logo {
    height: 38px;
    max-width: 190px;
  }
  .footer-logo-img {
    height: 42px;
    max-width: 240px;
  }
  .emergency-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
  }
  .emergency-btn span:last-child {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    padding: 56px 24px 72px;
  }
  .hero h1,
  .page-title {
    font-size: 42px;
  }
  .hero p,
  .page-subtitle {
    font-size: 16px;
  }
  .section,
  .quote-section {
    padding: 64px 20px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-grid,
  .process-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: auto;
  }
  .page-hero {
    padding: 72px 20px 56px;
  }
  .footer-bottom {
    padding-bottom: 96px;
  }
  .mobile-bottom-nav {
    display: flex;
  }
}