/* style.css – TeknoCam Gösteri - Scandinavian Clean Responsive Theme */

/* === CSS RESET & NORMALIZATION === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* === ROOT VARIABLES FOR BRAND COLOR/STYLE === */
:root {
  --brand-primary: #19355B;
  --brand-secondary: #AAC6E2;
  --brand-accent: #F7C325;
  --neutral-bg: #F9FAFB;
  --neutral-light: #ffffff;
  --neutral-medium: #E8EDF3;
  --neutral-border: #e3e7ed;
  --text-main: #1A2530;
  --text-secondary: #45506c;
  --radius: 12px;
  --shadow: 0 2px 12px 0 rgba(40, 55, 85, 0.04);
  --shadow-card: 0 4px 20px 0 rgba(25,53,91,0.06);
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

body {
  background: var(--neutral-bg);
  color: var(--text-main);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.14rem; }
h5, h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text-secondary);
}

strong { font-weight: 600; color: var(--brand-primary); }

a {
  color: var(--brand-primary);
  border-radius: 3px;
  transition: background 0.17s, color 0.17s;
}
a:hover, a:focus {
  color: var(--brand-accent);
  background: var(--brand-primary);
  text-decoration: none;
  outline: none;
}

/* === UNIVERSAL SPACING, CONTAINERS, FLEX === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--neutral-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.card {
  background: var(--neutral-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-visible {
  box-shadow: 0 7px 24px 0 rgba(25,53,91,0.13);
  transform: translateY(-2px) scale(1.016);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--neutral-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  color: var(--text-main);
  font-size: 1.05rem;
  transition: box-shadow var(--transition), background var(--transition);
}
.testimonial-card p {
  color: var(--text-main);
  font-size: 1.09rem;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(25,53,91,0.07);
  background: var(--neutral-light);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
}

/* === HEADER, FOOTER, NAVIGATION === */
header {
  width: 100%;
  background: var(--neutral-light);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}
header img {
  height: 45px;
  width: auto;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 5px;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition);
}
nav a:hover, nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
nav .active {
  color: var(--brand-accent);
  background: var(--neutral-medium);
}

.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: bold;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 24px;
  padding: 11px 28px;
  margin-left: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  box-shadow: var(--shadow-card);
  min-width: 120px;
}
.cta.primary {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cta:hover, .cta:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.025);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-primary);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border-radius: 8px;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  padding: 6px 9px;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--neutral-medium);
  color: var(--brand-accent);
}

footer {
  background: var(--neutral-light);
  border-top: 1px solid var(--neutral-border);
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px;
  gap: 18px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
footer img {
  height: 38px;
  width: auto;
}
footer nav {
  font-size: 0.96rem;
  gap: 6px;
}
footer nav a {
  color: var(--brand-primary);
  opacity: 0.85;
  margin: 0 2px;
  padding: 2px 6px;
  border-radius: 3px;
  transition: background 0.16s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  opacity: 1;
}
footer p {
  font-size: 0.95rem;
  opacity: 0.71;
}

/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(100deg, var(--neutral-bg) 70%, var(--brand-secondary) 100%);
  position: relative;
  margin-bottom: 60px;
  min-height: 280px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero .content-wrapper {
  max-width: 580px;
  gap: 20px;
  padding: 22px 0;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.6rem;
  margin-bottom: 8px;
  line-height: 1.12;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--text-secondary);
}
.hero .cta {
  margin-top: 10px;
  box-shadow: none;
}

/* === FORMS, INPUTS, BUTTONS === */
input, select, textarea {
  width: 100%;
  background: var(--neutral-light);
  border: 1px solid var(--neutral-border);
  border-radius: 7px;
  padding: 11px 13px;
  font-size: 1rem;
  color: var(--text-main);
  transition: border 0.14s;
  margin-bottom: 16px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand-secondary);
}
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 20px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition);
}
button:hover, button:focus-visible, .btn:hover, .btn:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/* === FLEX-LAYOUT PAGES: SECTION, LISTS, UTILITIES === */
ul, ol {
  margin: 0 0 18px 0;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 1rem;
}
ul li:before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0.68em;
  width: 7px;
  height: 7px;
  background: var(--brand-secondary);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
ul li strong {
  color: var(--brand-primary);
}

/* Section spacing (for non-hero sections) */
section {
  margin-bottom: 60px;
  padding: 0;
}
section .container {
  padding: 0 14px;
}

/* === MODALS, ANIMATIONS, MICRO-INTERACTIONS === */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideInMenu {
  from { transform: translateX(105%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutMenu {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(105%); opacity: 0; }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 350px;
  height: 100vh;
  background: var(--neutral-light);
  box-shadow: -9px 0 28px 0 rgba(25,53,91,0.08);
  z-index: 1001;
  transform: translateX(110%);
  transition: transform 0.33s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
  padding: 28px 18px 20px 20px;
  gap: 20px;
  pointer-events: none;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  animation: slideInMenu 0.29s cubic-bezier(.7,0,.3,1);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 2.1rem;
  padding: 2px 10px;
  margin-bottom: 11px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  z-index: 1002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: var(--brand-primary);
  padding: 13px 0 13px 8px;
  border-radius: 6px;
  transition: background 0.16s, color 0.17s;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--neutral-light);
  box-shadow: 0 -2px 20px 0 rgba(25,53,91,0.08);
  padding: 20px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  z-index: 1010;
  animation: fadeInUp 0.42s cubic-bezier(.4,0,.2,1);
  font-size: 1rem;
}
.cookie-banner .banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 5px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 18px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-btn.accept {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-btn.reject {
  background: var(--neutral-medium);
  color: var(--brand-primary);
}
.cookie-btn.settings {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-primary);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  background: var(--neutral-light);
  box-shadow: 0 7px 34px 0 rgba(25,53,91,0.16);
  border-radius: var(--radius);
  max-width: 410px;
  width: 98vw;
  padding: 34px 26px 24px 26px;
  z-index: 1100;
  animation: fadeInUp 0.27s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
}
.cookie-modal h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-primary);
  cursor: pointer;
}
.cookie-category .always-on {
  color: var(--text-secondary);
  font-size: 0.98em;
  background: var(--neutral-medium);
  padding: 1px 8px;
  border-radius: 7px;
  margin-left: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal .cookie-btn {
  margin-top: 5px;
}
.cookie-modal .close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.75rem;
  color: var(--brand-primary);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 1px 7px;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: var(--neutral-medium);
  color: var(--brand-accent);
}

/* === MEDIA QUERIES – RESPONSIVE MOBILE-FIRST === */
@media (max-width: 1200px) {
  .container {
    max-width: 950px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 720px;
  }
  .card {
    padding: 20px 14px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container, footer .container, .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .hero {
    min-height: 170px;
    margin-bottom: 35px;
  }
  .hero h1 { font-size: 1.60rem; }
  .container {
    padding: 0 6px;
  }
  .card-container {
    gap: 14px;
  }
  .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 16px;
    align-items: stretch !important;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 12px 10px;
    gap: 8px;
    font-size: 0.99rem;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 8px;
  }
  .feature-item {
    gap: 7px;
  }
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .hero .container {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .hero .content-wrapper {
    padding: 10px 0;
  }
  .card {
    min-width: 85vw;
  }
  .cookie-modal {
    padding: 12vw 4vw 10vw 4vw;
    max-width: 97vw;
  }
}

/* === UTILITY CLASSES & FINE-TUNING === */
.text-center { text-align: center; }
.mt-2 { margin-top: 12px !important; }
.mb-3 { margin-bottom: 20px !important; }
.d-flex { display: flex !important; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-2 { gap: 12px; }
.rounded { border-radius: var(--radius); }
.bg-accent { background: var(--brand-accent); color: var(--brand-primary); }
.bg-primary { background: var(--brand-primary); color: #fff; }
.bg-secondary { background: var(--brand-secondary); color: var(--brand-primary); }
.bg-light { background: var(--neutral-bg); color: var(--brand-primary); }
.shadow {
  box-shadow: var(--shadow-card);
}

/* === NO ABSOLUTE OR GRID/GRID-LIKE PROPERTIES (EXCEPT DECOR/ELEMENTS) === */

/* NO grid, grid-*, columns, position: absolute (except for modal close), etc. used */
