/* 
  Evden Eve Nakliyat - CLONE THEME
  Primary Color: #2c8259
  Fonts: Poppins (Headings), PT Sans (Body)
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=PT+Sans:wght@400;700&display=swap');

:root {
  --color-primary: #003083; /* Logo Blue */
  --color-primary-light: #1a4da3;
  --color-primary-dark: #001b4d;
  
  --color-text: #555555;
  --color-heading: #222222;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa; /* Light Gray */
  --color-border: #e9ecef;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'PT Sans', sans-serif;

  --transition-fast: 0.2s ease-in-out;
  --radius-sm: 4px;
  --radius-md: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

a:hover {
  color: var(--color-primary-dark);
}

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

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Button */
.btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

/* Header */
.site-header {
  background: var(--color-white);
  border-top: 4px solid var(--color-primary);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  font-size: 13px;
  color: #777;
}

.header-top .container {
  display: flex;
  justify-content: flex-end;
}

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

.brand {
  display: flex;
  flex-direction: column;
}

.header-logo {
  max-height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.top-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.top-nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
  text-transform: uppercase;
}

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

.header-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
}
.header-cta:hover {
  background: var(--color-primary-dark);
}

/* Hero Section (Replicating the Revolution Slider Look) */
.hero {
  position: relative;
  background-image: url('/assets/images/hero_bg_tr_1781450123274.png');
  background-size: cover;
  background-position: center;
  height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(255,255,255,0.7); /* Light overlay to make text readable like the original */
}

.hero::before {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(255,255,255,0.7); /* Light overlay to make text readable */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title-1 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.hero-title-2 {
  font-family: var(--font-heading);
  color: #444444;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -3px;
  margin-bottom: 5px;
}

.hero-title-3 {
  font-family: var(--font-heading);
  color: #686868;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -3px;
  margin-bottom: 30px;
}

/* Sections */
.section-padding {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  color: var(--color-heading);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--color-primary);
}

/* Trust / Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  text-align: center;
  border-bottom: 3px solid var(--color-primary);
  transition: transform var(--transition-fast);
  overflow: hidden;
}

.feature-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-content {
  padding: 25px;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-heading);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Calculator / Form Section */
.calculator-section {
  background-color: #f3f3f3;
}

.calculator-wrapper {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 4px solid var(--color-primary);
}

.step-panel {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--color-border);
}

.step-panel:last-child {
  border-bottom: none;
}

.step-heading {
  margin-bottom: 20px;
}

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

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

label span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--color-heading);
}

select, input[type="date"], input[type="text"], input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

select:focus, input:focus {
  border-color: var(--color-primary);
}

/* Choice Grid */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.choice-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 15px;
  text-align: center;
  cursor: pointer;
  background: var(--color-bg-alt);
  transition: all var(--transition-fast);
  position: relative;
}

.choice-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.choice-card:hover {
  border-color: var(--color-primary);
}

.choice-card:has(input:checked) {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.choice-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-heading);
}

.choice-card small {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

.choice-card:has(input:checked) strong,
.choice-card:has(input:checked) small {
  color: var(--color-white);
}

/* Extras */
.extras-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.extras-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-alt);
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  cursor: pointer;
}

/* Summary Panel */
.summary-panel {
  background: var(--color-heading);
  color: var(--color-white);
  padding: 30px;
  border-radius: var(--radius-sm);
  margin-top: 30px;
}

.summary-panel h3 {
  color: var(--color-white);
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 15px;
}

.price-display {
  text-align: center;
  margin-bottom: 30px;
}

.price-display span {
  font-size: 14px;
  color: #aaa;
}

#summary-price {
  font-size: 40px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

#summary-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  margin-top: 10px;
}

.summary-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.summary-details div {
  background: rgba(0,0,0,0.2);
  padding: 15px;
  border-radius: 4px;
}

.summary-details small {
  color: #aaa;
  display: block;
  font-size: 12px;
}

.summary-details strong {
  font-size: 16px;
  font-family: var(--font-heading);
}

.breakdown dl {
  margin-bottom: 30px;
}

.breakdown div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  padding: 8px 0;
  font-size: 14px;
}

.lead-capture input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  margin-bottom: 15px;
}

.lead-capture input::placeholder {
  color: #aaa;
}

.btn-submit {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 15px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-submit:hover {
  background: var(--color-primary-dark);
}

/* Footer */
.site-footer {
  background-color: #212529;
  color: #ccc;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.site-footer a {
  color: #d6e4ff;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-white);
}

.footer-bottom {
  background-color: #1c2023;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #555;
}

@media (min-width: 1024px) {
  .calculator-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
}
