/* ============================================
   ÖZEK GMBH - Modern Corporate Website
   CSS Stylesheet
   ============================================ */

/* Root Variables */
:root {
  --color-dark-navy: #0b132b;
  --color-deep-blue: #1c2541;
  --color-muted-blue: #3a506b;
  --color-aqua: #5bc0be;
  --color-white: #ffffff;
  --color-light-gray: #f5f5f5;
  --color-dark-gray: #2a2a2a;

  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Montserrat", sans-serif;

  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-white);
  background-color: var(--color-dark-navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--color-white);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(11, 19, 43, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(91, 192, 190, 0.1);
}

.navbar.scrolled {
  background-color: rgba(11, 19, 43, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-text {
  color: var(--color-aqua);
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.logo-subtext {
  color: var(--color-white);
  font-size: 0.7rem;
  letter-spacing: 3px;
  margin-top: -0.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--color-white);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-aqua);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(91, 192, 190, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--color-aqua);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 0.25rem 0.5rem;
}

.lang-btn.active {
  color: var(--color-aqua);
}

.lang-divider {
  color: var(--color-aqua);
}

/* ============================================
   HERO SECTION WITH CAROUSEL
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  margin-top: 60px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 19, 43, 0.7) 0%,
    rgba(28, 37, 65, 0.7) 100%
  );
  z-index: 2;
}

.hero-background.slide-construction {
  background: linear-gradient(
    135deg,
    var(--color-dark-navy) 0%,
    var(--color-deep-blue) 100%
  );
}

.hero-background.slide-automotive {
  background: linear-gradient(
    135deg,
    var(--color-deep-blue) 0%,
    var(--color-muted-blue) 100%
  );
}

.hero-background.slide-facility {
  background: linear-gradient(
    135deg,
    var(--color-muted-blue) 0%,
    var(--color-dark-navy) 100%
  );
}

.parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.layer-1 {
  background: linear-gradient(
    135deg,
    var(--color-dark-navy) 0%,
    var(--color-deep-blue) 100%
  );
  z-index: 1;
}

.layer-2 {
  background: radial-gradient(
    circle at 20% 50%,
    rgba(91, 192, 190, 0.1) 0%,
    transparent 50%
  );
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.layer-3 {
  background: radial-gradient(
    circle at 80% 80%,
    rgba(58, 80, 107, 0.2) 0%,
    transparent 50%
  );
  z-index: 3;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
  letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
}

.hero-slogan {
  font-size: 1.5rem;
  color: var(--color-aqua);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.4;
  max-width: 80%;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-aqua);
  color: var(--color-dark-navy);
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-slow);
  border: 2px solid var(--color-aqua);
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--color-aqua);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91, 192, 190, 0.3);
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(91, 192, 190, 0.2);
  border: 2px solid var(--color-aqua);
  color: var(--color-aqua);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.carousel-btn:hover {
  background-color: var(--color-aqua);
  color: var(--color-dark-navy);
  transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 20;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(91, 192, 190, 0.3);
  border: 2px solid var(--color-aqua);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--color-aqua);
  transform: scale(1.3);
}

.indicator:hover {
  background-color: var(--color-aqua);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-indicator span {
  font-size: 0.9rem;
  color: var(--color-aqua);
  font-weight: 500;
}

.scroll-indicator i {
  color: var(--color-aqua);
  font-size: 1.2rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  padding: 6rem 0;
  background-color: var(--color-deep-blue);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-aqua),
    transparent
  );
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-white);
  position: relative;
  padding-bottom: 1rem;
}

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

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

.about-text {
  color: var(--color-light-gray);
}

.about-paragraph {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  padding: 6rem 0;
  background-color: var(--color-dark-navy);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-aqua),
    transparent
  );
}

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

.service-card {
  background-color: var(--color-deep-blue);
  padding: 2.5rem;
  border-radius: 10px;
  border: 1px solid rgba(91, 192, 190, 0.2);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(91, 192, 190, 0.1),
    transparent
  );
  transition: var(--transition-slow);
}

.service-card:hover {
  border-color: var(--color-aqua);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(91, 192, 190, 0.2);
}

.service-card:hover::before {
  left: 100%;
}

.service-icon {
  font-size: 3rem;
  color: var(--color-aqua);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-block;
  color: var(--color-aqua);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.service-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-aqua);
  transition: var(--transition);
}

.service-link:hover::after {
  width: 100%;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
  padding: 3rem 0;
  background-color: var(--color-dark-navy);
  position: relative;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-aqua),
    transparent
  );
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 19, 43, 0.8) 0%,
    rgba(91, 192, 190, 0.3) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-slow);
  z-index: 10;
}

.gallery-overlay h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  padding: 6rem 0;
  background-color: var(--color-deep-blue);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-aqua),
    transparent
  );
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-block i {
  font-size: 1.8rem;
  color: var(--color-aqua);
  margin-top: 0.5rem;
  min-width: 30px;
}

.info-block h4 {
  color: var(--color-aqua);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-block p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.info-block a {
  color: var(--color-white);
}

.info-block a:hover {
  color: var(--color-aqua);
}

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

/* Google Maps Section */
.google-maps-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(91, 192, 190, 0.2);
}

.google-maps-section h4 {
  color: var(--color-aqua);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

.google-maps-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.google-maps-container iframe {
  transition: var(--transition);
}

.google-maps-container:hover iframe {
  transform: scale(1.02);
}

.maps-directions-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--color-aqua);
  color: var(--color-dark-navy);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.maps-directions-btn:hover {
  background-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(91, 192, 190, 0.3);
}

/* Full Width Google Maps Section */
.google-maps-section-full {
  margin-top: 4rem;
  text-align: center;
}

.maps-header {
  margin-bottom: 2rem;
}

.maps-header h3 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.maps-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.google-maps-container-full {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.google-maps-container-full iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  transition: var(--transition);
}

.google-maps-container-full:hover iframe {
  transform: scale(1.01);
}

.maps-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.maps-directions-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  background-color: var(--color-aqua);
  color: var(--color-dark-navy);
  text-decoration: none;
  border-radius: 35px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid var(--color-aqua);
  margin: 0 auto;
}

.maps-directions-btn-large:hover {
  background-color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91, 192, 190, 0.4);
}

.maps-directions-btn-large i {
  font-size: 1.2rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(91, 192, 190, 0.1);
  border: 2px solid var(--color-aqua);
  border-radius: 50%;
  color: var(--color-aqua);
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-icon:hover {
  background-color: var(--color-aqua);
  color: var(--color-dark-navy);
  transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(91, 192, 190, 0.3);
  border-radius: 5px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-aqua);
  background-color: rgba(91, 192, 190, 0.1);
  box-shadow: 0 0 10px rgba(91, 192, 190, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  padding: 1rem 2rem;
  background-color: var(--color-aqua);
  color: var(--color-dark-navy);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-slow);
  font-family: var(--font-primary);
}

.submit-btn:hover {
  background-color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91, 192, 190, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* ============================================
    WATERFALL BANNER SECTION
    ============================================ */

.waterfall-banner {
  padding: 3rem 0;
  background-color: var(--color-dark-navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.waterfall-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-aqua),
    transparent
  );
}

.waterfall-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-aqua),
    transparent
  );
}

.waterfall-banner-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waterfall-banner-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: contain;
  animation: fadeInUp 0.8s ease-out;
}

/* ============================================
    FOOTER
    ============================================ */

.footer {
  background-color: var(--color-dark-navy);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(91, 192, 190, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-slogan {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .language-switcher {
    margin-top: 0.5rem;
  }

  .hero {
    margin-top: 120px;
  }

  .hero-content {
    max-width: 95%;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
  }

  .hero-slogan {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .about-paragraph {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .info-block {
    gap: 1rem;
  }

  .form-input {
    padding: 0.8rem;
  }

  .submit-btn {
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.3rem;
  }

  .hero-content {
    max-width: 98%;
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
  }

  .hero-slogan {
    font-size: 0.9rem;
    max-width: 95%;
    line-height: 1.3;
  }

  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.9rem;
  }
}
