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

:root {
  --yellow: #fdb913;
  --yellow-dark: #e5a610;
  --dark: #1a1a1a;
  --mid: #555;
  --light: #f4f1ea;
  --gray-bg: #ebebeb;
  --quote-bg: #f0f0f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  overflow-x: hidden;
  color: var(--dark);
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: #fff;
  height: 90px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border-bottom: 2px solid #332b1a;
}

.logo-container {
  background: var(--yellow);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 80px 0 50px;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
  flex-shrink: 0;
  z-index: 2;
}
.logo-text {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 32px;
  flex-grow: 1;
}
.nav-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--dark);
  white-space: nowrap;
  transition: color .25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width .3s;
}
.nav-item:hover { color: var(--yellow-dark); }
.nav-item:hover::after { width: 100%; }

.contact-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 36px;
  flex-shrink: 0;
}
.chat-icon {
  width: 38px; height: 34px;
  border: 2px solid var(--yellow);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
}
.chat-icon::after {
  content: '';
  position: absolute;
  bottom: -7px; right: 4px;
  width: 11px; height: 11px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.contact-details { display: flex; flex-direction: column; }
.contact-label  { font-size: 11px; color: #777; }
.phone-number   { font-size: 14px; font-weight: 700; white-space: nowrap; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 16px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .35s, opacity .25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.home {
  width: 100%;
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--light);
}
.home_back_img { position: absolute; inset: 0; z-index: 1; }
.home_back_img img { width: 100%; height: 100%; object-fit: cover; }

.home_card {
  position: relative;
  z-index: 10;
  margin-left: 8%;
  width: min(500px, 84vw);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-left: 10px solid var(--yellow);
}
.home_card_title h1 {
  font-size: clamp(22px, 3.5vw, 42px);
  line-height: 1.1;
}
.home_card_paragraph p {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--mid);
  line-height: 1.65;
}
.home_card_btn { display: flex; gap: 14px; flex-wrap: wrap; }
.btn1, .btn2 {
  padding: 14px 28px;
  border: none;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: opacity .25s, transform .2s;
  white-space: nowrap;
}
.btn1 { background: var(--yellow); color: var(--dark); }
.btn2 { background: var(--dark);   color: #fff; }
.btn1:hover, .btn2:hover { opacity: .88; transform: translateY(-2px); }

/* ══════════════════════════════════════
   HİZMETLER
══════════════════════════════════════ */
.services {
  position: relative;
  padding: 90px 5%;
  background: #fff;
  display: flex;
  justify-content: center;
}
.services_back_img { position: absolute; inset: 0; z-index: 0; }
.services_back_img img { width: 100%; height: 100%; object-fit: cover; }
.services_cards {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cards1, .cards2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cart {
  background: #fff;
  padding: 44px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
  transition: transform .35s, box-shadow .35s, background .35s;
}
.cart:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.09);
  background: var(--yellow);
}
.cards1 .cart:first-child { background: var(--yellow); border: none; }
.cards1 .cart:first-child:hover { background: #fff; }
.icon img  { width: 56px; height: 56px; margin-bottom: 22px; }
.cart_title h1 { font-size: clamp(16px, 1.8vw, 22px); font-weight: 700; margin-bottom: 12px; }
.cart_paragraph p { font-size: clamp(13px, 1.2vw, 15px); color: #333; line-height: 1.7; }

/* ══════════════════════════════════════
   HAKKIMIZDA
══════════════════════════════════════ */
.about {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: visible;
  z-index: 1;
  background: var(--gray-bg);
}
.about_video_section {
  width: 44%;
  flex-shrink: 0;
  background: #1e1e1e;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}
.video_overlay {
  width: 100%; height: 100%;
  min-height: 80vh;
  background: url('/public/Adsız tasarım (9).png') center/cover;
}
.play_btn {
  position: absolute;
  left: 42%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 88px; height: 88px;
  background: var(--yellow);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(253,185,19,.18), 0 0 0 24px rgba(253,185,19,.07);
  transition: transform .3s, background .3s;
}
.play_btn:hover { background: #fff; transform: translate(-50%, -50%) scale(1.1); }
.play_icon {
  font-size: 30px;
  color: var(--dark);
  margin-left: 6px;
  user-select: none;
}
.about_content_section {
  flex: 1;
  padding: 72px 80px;
  display: flex;
  align-items: center;
  background: var(--gray-bg);
}
.about_text_container { max-width: 660px; }
.about_subtitle {
  font-size: 12px;
  font-weight: 800;
  color: #999;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.about_title {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
}
.about_description p {
  font-size: clamp(13px, 1.3vw, 15.5px);
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 18px;
  text-align: justify;
}

/* ══════════════════════════════════════
   PROJELERİMİZ
══════════════════════════════════════ */
.projects { padding: 80px 5%; background: #fff; }
.projects_header { margin-bottom: 44px; }
.projects_header h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
}
.projects_header h2 span { color: var(--yellow); }

.projects_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 240px);
  gap: 10px;
}
.project_item {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
}
.project_item img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .5s, opacity .4s;
}
.project_item:hover img { transform: scale(1.07); opacity: 1; }
.project_overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity .35s;
}
.project_item:hover .project_overlay { opacity: 1; }
.project_overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 3px solid var(--yellow);
  padding-left: 10px;
}

.item_large        { grid-column: 1 / 3; grid-row: 1 / 3; }
.item_sm_top_left  { grid-column: 3 / 4; grid-row: 1 / 2; }
.item_sm_top_right { grid-column: 4 / 5; grid-row: 1 / 2; }
.item_wide_right   { grid-column: 3 / 5; grid-row: 2 / 4; }
.item_sm_bot_left  { grid-column: 1 / 2; grid-row: 3 / 4; }
.item_sm_bot_right { grid-column: 2 / 3; grid-row: 3 / 4; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta_banner {
  display: flex;
  width: 100%;
  min-height: 460px;
  background: var(--yellow);
  overflow: hidden;
}

.cta_left {
  position: relative;
  flex: 0 0 55%;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta_dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.cta_content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin-left: auto;
  margin-right: 30px;
}

.cta_content h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta_content p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(0,0,0,.75);
  line-height: 1.75;
  margin-bottom: 14px;
}

.cta_sub {
  font-style: italic;
  font-weight: 500;
  margin-bottom: 32px !important;
}

.cta_btn {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 18px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: background .3s, transform .2s;
}

.cta_btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.cta_images {
  flex: 0 0 45%;
  display: flex;
}

.cta_photo {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.cta_photo + .cta_photo {
  border-left: 4px solid var(--gray-bg);
}

.cta_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.cta_photo:hover img {
  transform: scale(1.04);
}

/* ══════════════════════════════════════
   ALINTI
══════════════════════════════════════ */
.quote_section {
  position: relative;
  background: var(--quote-bg);
  padding: 90px 5%;
  text-align: center;
  overflow: hidden;
}
.quote_bg_mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: Georgia, serif;
  font-size: clamp(180px, 28vw, 380px);
  color: rgba(253,185,19,.16);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote_inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.quote_title {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 44px;
  letter-spacing: -.5px;
}
.quote_title span { color: var(--yellow); }
.quote_text { margin-bottom: 44px; }
.quote_text p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(15px, 2vw, 21px);
  color: #444;
  line-height: 1.7;
  margin-bottom: 5px;
}
.quote_author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.quote_avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid #ccc;
}
.quote_name { font-size: 14px; font-weight: 700; }

/* ══════════════════════════════════════
   HARİTA
══════════════════════════════════════ */
.map_section {
  width: 100%;
  line-height: 0;
  border-top: 4px solid var(--yellow);
}
.map_section iframe { display: block; width: 100%; }

/* ══════════════════════════════════════
   İLETİŞİM
══════════════════════════════════════ */
.contact_section {
  background: var(--yellow);
  padding: 70px 5%;
}
.contact_inner {
  display: flex;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
.contact_form_side { flex: 1.4; width: 100%; }
.contact_title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 32px;
}
.contact_form { display: flex; flex-direction: column; gap: 13px; }
.form_row { display: flex; gap: 13px; }
.form_input {
  flex: 1;
  width: 100%; /* MOBİLDEKİ KÜÇÜLME SORUNUNUN ÇÖZÜMÜ BURASI */
  padding: 15px 17px;
  border: none;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  min-width: 0;
  transition: box-shadow .25s;
}
.form_input:focus  { box-shadow: inset 0 0 0 2px rgba(0,0,0,.2); }
.form_input::placeholder { color: #aaa; }
.form_textarea {
  width: 100%;
  padding: 15px 17px;
  border: none;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  resize: vertical;
  min-height: 130px;
  transition: box-shadow .25s;
}
.form_textarea:focus { box-shadow: inset 0 0 0 2px rgba(0,0,0,.2); }
.form_textarea::placeholder { color: #aaa; }
.form_submit {
  align-self: flex-start;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 15px 38px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, transform .2s;
}
.form_submit:hover { background: #333; transform: translateY(-2px); }

.contact_info_side {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 80px;
}
.contact_info_item { display: flex; align-items: flex-start; gap: 14px; }
.contact_info_icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(0,0,0,.13);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.contact_info_text { display: flex; flex-direction: column; gap: 3px; }
.info_label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(0,0,0,.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.info_value { font-size: 13.5px; font-weight: 600; line-height: 1.6; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: #111; color: #fff; }
.footer_top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding: 64px 5%;
}
.footer_brand .footer_logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer_brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 7px; }
.footer_col_title { font-size: 14px; font-weight: 800; margin-bottom: 12px; }
.footer_underline { width: 34px; height: 3px; background: var(--yellow); margin-bottom: 20px; }
.footer_list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer_list li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .25s; }
.footer_list li a:hover { color: var(--yellow); }
.footer_phone { font-size: 21px; font-weight: 800; margin-bottom: 11px; }
.footer_address { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 18px; }
.footer_socials { display: flex; gap: 10px; }
.footer_socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: background .25s, color .25s, border-color .25s;
}
.footer_socials a:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.footer_bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.footer_bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer_bottom a { color: rgba(255,255,255,.45); transition: color .25s; }
.footer_bottom a:hover { color: var(--yellow); }

/* ══════════════════════════════════════
   RESPONSIVE — MOBİL UYUM
══════════════════════════════════════ */
@media (max-width: 1400px) {
  .logo-container { padding: 0 70px 0 44px; }
}

@media (max-width: 1200px) {
  .nav-menu { gap: 20px; }
  .about_content_section { padding: 56px 52px; }
  .footer_top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
}

@media (max-width: 1024px) {
  .contact-section { display: none; }
  .nav-menu { gap: 16px; margin-left: 20px; }
  .nav-item { font-size: 12px; }
  .home_card { padding: 36px; }
  .cards1, .cards2 { grid-template-columns: repeat(2, 1fr); }
  .about_content_section { padding: 48px 40px; }
  .about_title { font-size: 32px; }

  .projects_grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .item_large        { grid-column: 1 / 3; grid-row: 1 / 3; }
  .item_sm_top_left  { grid-column: 3 / 4; grid-row: 1 / 2; }
  .item_sm_top_right { grid-column: 3 / 4; grid-row: 2 / 3; }
  .item_wide_right   { grid-column: 1 / 4; grid-row: 3 / 4; }
  .item_sm_bot_left  { display: none; }
  .item_sm_bot_right { display: none; }

  .footer_top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 56px 5%; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .contact-section { display: none !important; }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 90px; left: 0; right: 0;
    background: #fff;
    border-top: 3px solid var(--yellow);
    box-shadow: 0 8px 28px rgba(0,0,0,.13);
    padding: 12px 0 20px;
    margin: 0;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-item {
    width: 100%;
    padding: 14px 28px;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-item::after { display: none; }
  .nav-item:hover { background: #fffbee; color: var(--yellow-dark); }

  .home { min-height: 70vh; }
  .home_card { margin: 0 5%; width: 90%; padding: 28px 24px; gap: 18px; }

  .services { padding: 60px 5%; }
  .cards1, .cards2 { grid-template-columns: 1fr; gap: 18px; }
  .cart { padding: 32px 24px; }

  .about { flex-direction: column; min-height: auto; }
  .about_video_section { width: 100%; min-height: 320px; clip-path: none; }
  .video_overlay { min-height: 320px; }
  
  /* MOBİLDE PLAY BUTONU HİZALAMASI (DÜZELTİLDİ) */
  .play_btn { left: 50%; top: 160px; bottom: auto; transform: translate(-50%, -50%); }
  .play_btn:hover { transform: translate(-50%, -50%) scale(1.1); }
  
  .about_content_section { padding: 68px 24px 48px; }
  .about_title { font-size: 26px; }

  .projects { padding: 60px 5%; }
  .projects_grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 180px 160px;
  }
  .item_large        { grid-column: 1 / 2; grid-row: 1 / 3; }
  .item_sm_top_left  { grid-column: 2 / 3; grid-row: 1 / 2; }
  .item_sm_top_right { grid-column: 2 / 3; grid-row: 2 / 3; }
  .item_wide_right   { grid-column: 1 / 3; grid-row: 3 / 4; }
  .item_sm_bot_left  { display: none; }
  .item_sm_bot_right { display: none; }

  .cta_banner { flex-direction: column; }
  .cta_left { flex: none; width: 100%; padding: 60px 5%; }
  .cta_content { margin: 0 auto; }
  .cta_images { flex: none; width: 100%; height: 350px; }
  .cta_photo + .cta_photo { border-left: 3px solid var(--gray-bg); }

  .quote_section { padding: 64px 5%; }
  .contact_section { padding: 56px 5%; }
  .contact_inner { flex-direction: column; gap: 36px; }
  .contact_info_side { padding-top: 0; }
  .form_row { flex-direction: column; gap: 13px; }
  .footer_top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 5%; }
  .map_section iframe { height: 320px; }
}

@media (max-width: 480px) {
  .logo-container { padding: 0 55px 0 24px; }
  .logo-text { font-size: 22px; }
  .home { min-height: 60vh; }
  .home_card { padding: 22px 18px; }
  .home_card_title h1 { font-size: 20px; }
  .btn1, .btn2 { padding: 12px 20px; font-size: 12px; }
  .icon img { width: 44px; height: 44px; }

  .projects_grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .item_large, .item_sm_top_left, .item_sm_top_right,
  .item_wide_right, .item_sm_bot_left, .item_sm_bot_right {
    grid-column: 1 / 2; grid-row: auto; height: 200px; display: block;
  }

  .cta_images { flex-direction: column; height: auto; }
  .cta_photo { height: 240px; }
  .cta_photo + .cta_photo { border-left: none; border-top: 3px solid var(--gray-bg); }
  .cta_content h2 { font-size: 22px; }

  .contact_title { font-size: 24px; }
  .footer_top { grid-template-columns: 1fr; gap: 28px; padding: 40px 5%; }
  .footer_brand .footer_logo { font-size: 22px; }
}

@media (max-width: 360px) {
  .logo-text { font-size: 18px; letter-spacing: 0; }
  .logo-container { padding: 0 44px 0 16px; }
  .home_card { padding: 18px 14px; }
  .home_card_title h1 { font-size: 18px; }
  .home_card_paragraph p { font-size: 13px; }
  .home_card_btn { flex-direction: column; }
  .btn1, .btn2 { width: 100%; text-align: center; }
  .contact_info_icon { width: 38px; height: 38px; font-size: 15px; }
  .cta_content h2 { font-size: 20px; }
}