/* ===== CSS VARIABLES ===== */
:root {
  /* Colors - Fixed for all browsers */
  --primary-color: #87CEEB; /* Açık Mavi */
  --primary-color-dark: #5F9EA0; /* Koyu Açık Mavi */
  --primary-color-light: #B0E0E6; /* Çok Açık Mavi */
  --secondary-color: #DAA520; /* Koyu Altın Sarısı */
  --accent-color: #B8860B; /* Daha Koyu Altın Sarısı */
  
  /* Text Colors - Fixed for all browsers */
  --text-color: #333333; /* Koyu Gri - Okunabilir metin */
  --text-color-dark: #1a1a1a; /* Çok Koyu Gri - Başlıklar için */
  --text-color-light: #212121; /* Orta Gri */
  --text-color-lighter: #999999; /* Açık Gri */
  
  /* Background Colors - Fixed white for all browsers */
  --bg-color: #ffffff; /* Ana arka plan */
  --bg-color-secondary: #ffffff; /* Aynı renk */
  --bg-color-tertiary: #ffffff; /* Aynı renk */
  --card-bg: #ffffff; /* Aynı renk */
  --header-bg: #ffffff; /* Aynı renk */
  --footer-bg: #ffffff; /* Aynı renk */
  
  /* Border Colors - Fixed for all browsers */
  --border-color: #E0E0E0; /* Kenarlık rengi */
  --border-color-light: #F0F0F0; /* Açık kenarlık */
  
  /* Shadow - Fixed for all browsers */
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  
  /* Legacy colors for compatibility */
  --white-color: #ffffff;
  --light-gray: #ffffff; /* Aynı arka plan rengi */
  --gray: #E0E0E0;
  --dark-gray: #666666;
  --black-color: #333333;
  
  /* Gradients - Simplified */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  
  /* Typography */
  --body-font: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --heading-font: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --biggest-font-size: 3.5rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;
  
  /* Font Weight */
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Margins */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  
  /* Shadows */
  --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 25px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
}

/* ===== TEXT SELECTION ===== */
::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

/* ===== BASE ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color-scheme: light only; /* Force light theme for all elements */
}

/* Remove all focus outlines and hover effects */
*:focus {
  outline: none !important;
}

*:active {
  outline: none !important;
}

*:hover {
  outline: none !important;
}

/* Remove tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

html {
  scroll-behavior: smooth;
}

/* Smooth scroll offset for fixed header */
section {
  scroll-margin-top: 80px;
}

html, body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--bg-color) !important;
  color: var(--text-color) !important;
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  color-scheme: light only; /* Force light theme */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--font-semi-bold);
  color: var(--text-color-dark) !important;
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none !important;
  background: none !important;
  box-shadow: none !important;
}

a:focus,
a:hover,
a:active {
  outline: none !important;
  background: none !important;
  box-shadow: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none !important;
}

button:focus,
button:active {
  outline: none !important;
  border: none !important;
}

input:focus,
input:active {
  outline: none !important;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding: 4rem 0 2rem;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.section__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color-dark);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white-color);
  box-shadow: var(--shadow-light);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== HEADER & NAV ===== */
.header {
  width: 100%;
  background-color: var(--header-bg);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.nav {
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav__logo-link:hover {
  transform: scale(1.02);
}

.nav__logo-img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 200px;
  border-radius: 4px;
}

.nav__logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-color-dark);
  white-space: nowrap;
}

.nav__menu {
  display: flex;
  align-items: center;
}

/* Desktop'ta navigation her zaman görünür */
@media screen and (min-width: 768px) {
  .nav__menu {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  
  .nav__list {
    display: flex !important;
    flex-direction: row !important;
    column-gap: 2rem !important;
    row-gap: 0 !important;
  }
  
  .nav__toggle,
  .nav__close {
    display: none !important;
  }
}

.nav__list {
  display: flex;
  column-gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  list-style: none;
}

.nav__link {
  color: var(--text-color-dark);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  outline: none;
  border: none;
}

.nav__link:hover,
.nav__link.active,
.nav__link:focus {
  color: var(--secondary-color);
  outline: none !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.25rem;
  color: var(--text-color-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav__toggle:hover,
.nav__close:hover {
  color: var(--secondary-color);
}

/* ===== MAIN CONTENT ===== */
.main {
  margin-top: 4rem;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 6rem 0 4rem;
  background: var(--bg-color) !important;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

/* Hero background gradient removed for consistent white background */

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: slideInLeft 1s ease-out;
}

.hero__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-color-dark) !important;
}

.hero__title-accent {
  color: var(--secondary-color) !important;
  position: relative;
}

.hero__description {
  font-size: var(--normal-font-size);
  color: var(--text-color-dark) !important;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  animation: slideInRight 1s ease-out;
}

.hero__img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.hero__logo-top {
  display: none;
}

.hero__logo-top-img {
  max-width: 100%;
  width: 256px;
  height: 256px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero__logo {
  max-width: 100%;
  width: 512px;
  height: 512px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 4rem 0;
  background: var(--bg-color) !important;
}

.services__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service__card {
  background: var(--bg-color) !important;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.service__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.service__icon-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.service__icon-image:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.service__title {
  font-size: var(--h2-font-size);
  margin-bottom: 0.5rem;
  color: var(--text-color-dark);
  text-align: center;
  width: 100%;
}

.service__description {
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
  width: 100%;
}

/* ===== EXPANDABLE SERVICE CARDS ===== */
.service__card {
  position: relative;
  overflow: hidden;
}

.service__card.expanded {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service__short-description {
  font-size: var(--small-font-size);
  color: #555;
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
  font-style: italic;
}

.service__image {
  width: 256px !important;
  height: 256px !important;
  object-fit: cover !important;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  flex-shrink: 0;
  display: block !important;
  background-color: transparent !important;
  border: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
  /* Force image loading */
  content: "" !important;
  background-image: none !important;
  /* Prevent base64 replacement */
  image-rendering: auto !important;
  -webkit-image-rendering: auto !important;
  /* Force visibility */
  max-width: none !important;
  max-height: none !important;
  min-width: 256px !important;
  min-height: 256px !important;
}

.service__expand-btn {
  background: var(--gradient-primary);
  color: var(--white-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
}

.service__expand-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.service__expand-btn i {
  transition: transform 0.3s ease;
}

.service__expand-btn.expanded i {
  transform: rotate(180deg);
}

.service__details {
  background: rgba(135, 206, 235, 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.service__steps {
  margin-top: 1rem;
}

.service__step {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-color);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-light);
}

.service__step-title {
  font-weight: var(--font-semi-bold);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: var(--h3-font-size);
}

.service__step-content {
  color: var(--text-color-dark);
  line-height: 1.6;
  font-size: var(--normal-font-size);
}

/* ===== SERVICE BLOG CONTENT ===== */
.service__blog-content {
  margin-top: 1.5rem;
  line-height: 1.8;
}

.service__blog-content p {
  margin-bottom: 1.25rem;
  color: #333;
  font-size: var(--normal-font-size);
  text-align: justify;
  text-indent: 2rem;
}



.service__blog-content p:last-child {
  margin-bottom: 0;
}

/* ===== RESPONSIVE SERVICE CARDS ===== */
@media (max-width: 768px) {
  .services__grid {
    gap: 2rem;
  }
  
  .service__card {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  
  .service__header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .service__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }
  
  .service__icon-image {
    width: 300px !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow-medium) !important;
  }
  
  .service__image {
    width: 100%;
    height: 256px;
    order: -1;
  }
  
  .service__details {
    padding: 1rem;
  }
  
  .service__step {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .service__step-title {
    font-size: var(--normal-font-size);
  }
}


/* ===== ABOUT SECTION ===== */
.about {
  padding: 4rem 0;
  background: var(--bg-color) !important;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__text {
  margin-bottom: 2rem;
}

.about__text p {
  color: var(--text-color-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat__item {
  text-align: center;
  padding: 1rem;
  background: var(--bg-color) !important;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.stat__number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: var(--small-font-size);
  color: var(--text-color-dark);
  font-weight: var(--font-medium);
}

.about__image {
  position: relative;
}

.about__img {
  width: 512px;
  height: 512px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ===== PROJECTS SECTION ===== */
.projects {
  padding: 4rem 0;
  background: var(--bg-color) !important;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.project__card {
  background: var(--bg-color) !important;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.project__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.project__image {
  position: relative;
  overflow: hidden;
}

.project__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.project__card:hover .project__img {
  transform: scale(1.05);
}

.project__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(135, 206, 235, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project__card:hover .project__overlay {
  opacity: 1;
}

.project__link {
  color: var(--white-color);
  font-size: 2rem;
  transition: var(--transition);
}

.project__link:hover {
  transform: scale(1.1);
}

.project__content {
  padding: 1.5rem;
}

.project__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
  color: var(--text-color-dark);
}

.project__description {
  color: var(--text-color-dark);
  font-size: var(--small-font-size);
}

.projects__cta {
  text-align: center;
}

/* ===== REFERENCES GRID ===== */
.references__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
}

.reference__item {
  aspect-ratio: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: default;
  transition: transform 0.3s ease;
}

.reference__item:hover {
  transform: scale(1.05);
}


/* ===== CONTACT SECTION ===== */
.contact {
  padding: 4rem 0;
  background: var(--bg-color) !important;
}

.contact__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact__info {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-color) !important;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: none;
  flex: 1;
  text-align: center;
  min-height: 250px;
}

.contact__item--clickable {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}


.contact__item--clickable:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff, #f0f8ff);
}



.contact__action {
  position: static;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
  color: #ffffff;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: var(--small-font-size);
  font-weight: 600;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  margin-top: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
  border: none;
  cursor: pointer;
  width: 100%;
}

.contact__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(135, 206, 235, 0.5);
  background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color));
}

.contact__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
  flex-shrink: 0;
}

.contact__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
  color: var(--text-color-dark);
  font-weight: 600;
}

.contact__text {
  color: var(--text-color-dark);
  line-height: 1.4;
  font-size: var(--normal-font-size);
  margin-bottom: 1rem;
}


.contact__form {
  background: var(--bg-color) !important;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  border: none;
}

.form__group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form__input {
  width: 100%;
  padding: 1.25rem;
  border: 2px solid #e8f4f8;
  border-radius: 12px;
  font-size: var(--normal-font-size);
  transition: all 0.3s ease;
  background: var(--bg-color) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form__input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.2);
  transform: translateY(-2px);
}

.form__input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.form__textarea {
  resize: none;
  min-height: 120px;
  max-height: 120px;
}

.form__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-color-dark);
  font-size: var(--normal-font-size);
  transition: var(--transition);
  pointer-events: none;
  background: #ffffff;
  padding: 0 0.5rem;
  z-index: 1;
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label,
.form__input:valid + .form__label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: var(--small-font-size);
  color: var(--primary-color);
  font-weight: var(--font-medium);
}

.contact__options {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.contact__options .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn--whatsapp {
  background: #25D366;
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

.btn--email {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn--email:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.form__counter {
  text-align: right;
  font-size: var(--small-font-size);
  color: var(--text-color-lighter);
  margin-top: 0.5rem;
}

.form__counter.warning {
  
  color: #ff8c00;
}

.form__counter.error {
  color: #e74c3c;
}

/* ===== DIALOG MODAL ===== */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dialog-overlay.show {
  opacity: 1;
  visibility: visible;
}

.dialog {
  background: var(--bg-color);
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-heavy);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.dialog-overlay.show .dialog {
  transform: scale(1);
}

.dialog__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.dialog__icon.success {
  background: #d4edda;
  color: #155724;
}

.dialog__icon.error {
  background: #f8d7da;
  color: #721c24;
}

.dialog__icon.warning {
  background: #fff3cd;
  color: #856404;
}

.dialog__title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color-dark);
}

.dialog__message {
  text-align: center;
  color: var(--text-color-dark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.dialog__button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dialog__button.success {
  background: #28a745;
  color: #ffffff;
}

.dialog__button.success:hover {
  background: #218838;
}

.dialog__button.error {
  background: #dc3545;
  color: #ffffff;
}

.dialog__button.error:hover {
  background: #c82333;
}

.dialog__button.warning {
  background: #ffc107;
  color: #212529;
}

.dialog__button.warning:hover {
  background: #e0a800;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-color) !important;
  color: var(--text-color-dark);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer__container {
  display: grid;
  gap: 2rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  max-width: 400px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-bold);
  font-size: var(--h3-font-size);
  color: var(--text-color-dark);
  margin-bottom: 1rem;
}

.footer__logo-link {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  transition: var(--transition);
  flex-direction: row !important;
}

.footer__logo i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.footer__logo-img {
  height: 4rem !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  max-width: 250px !important;
  min-height: 60px !important;
  background: white !important;
  border: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  border-radius: 8px !important;
  padding: 5px !important;
}

.footer__description {
  color: var(--text-color-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: var(--text-color-dark);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-color);
}


.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color-dark);
}

.footer__contact-item i {
  color: var(--primary-color);
  width: 20px;
}

.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}


.footer__copyright {
  color: var(--text-color-dark);
  font-size: var(--small-font-size);
}


/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background: var(--gradient-primary);
  color: var(--white-color);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  z-index: var(--z-tooltip);
}

.scroll-top:hover {
  transform: translateY(-0.25rem);
}

.scroll-top.show {
  bottom: 1rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 6rem 0 2rem;
  background: var(--gradient-primary);
  color: var(--white-color);
  text-align: center;
}

.page-header__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--normal-font-size);
}

.breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.breadcrumb__link:hover {
  color: var(--white-color);
}

.breadcrumb__separator {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb__current {
  color: var(--white-color);
  font-weight: var(--font-medium);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===== LOADING ANIMATION ===== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay classes for staggered animations */
.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

.delay-600 {
  transition-delay: 0.6s;
}

/* Hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* ===== SUCCESS/ERROR MESSAGES ===== */
.message {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  font-weight: var(--font-medium);
}

.message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message--info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* ===== BRAND SECTION ===== */
.brand-section {
  background: var(--bg-color) !important;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.brand-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.03) 0%, rgba(255, 140, 0, 0.03) 100%);
  opacity: 0.6;
}

.brand__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.brand__link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}

.brand__link:hover {
  transform: translateY(-2px);
}

.brand__text {
  font-size: var(--small-font-size);
  color: var(--text-color-dark);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.brand__powered {
  font-weight: var(--font-medium);
  color: var(--text-color-dark);
}

.brand__name {
  font-weight: var(--font-semi-bold);
  color: var(--text-color-dark);
  position: relative;
  transition: var(--transition);
}

.brand__name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-color-dark);
  transition: var(--transition);
}

.brand__name:hover::after {
  width: 100%;
}

.brand__name:hover {
  transform: translateY(-1px);
}

/* Brand section responsive */
@media (max-width: 768px) {
  .brand-section {
    padding: 1rem 0;
  }
  
  .brand__text {
    font-size: var(--smaller-font-size);
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .brand__powered {
    font-size: 0.75rem;
  }
  
  .brand__name {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .brand__text {
    font-size: 0.75rem;
  }
  
  .brand__powered {
    font-size: 0.7rem;
  }
  
  .brand__name {
    font-size: 0.8rem;
  }
}



