/* Base Styles */
:root {
  --primary-color: #2d3748; /* Koyu gri-mavi */
  --secondary-color: #4a5568; /* Orta gri-mavi */
  --accent-color: #38b2ac; /* Turkuaz */
  --dark-color: #1a202c; /* Çok koyu gri */
  --light-color: #f7fafc; /* Açık gri */
  --white-color: #fff;
  --gray-color: #718096;
  --border-color: #e2e8f0;
  --success-color: #48bb78;
  --error-color: #f56565;
  --tech-gradient: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px; /* Daha yuvarlak butonlar */
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-light {
  background-color: var(--white-color);
  color: var(--accent-color);
  border: 2px solid var(--white-color);
}

.btn-light:hover {
  background-color: transparent;
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.section-title p {
  color: var(--gray-color);
  font-size: 1.1rem;
}

/* Header */
header {
  background-color: var(--white-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.logo h1::before {
  content: "\f3cd"; /* Telefon ikonu */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--accent-color);
}

.logo span {
  color: var(--accent-color);
}

nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
}

.menu li {
  margin-left: 20px;
}

.menu a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 10px 5px;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

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

.menu a.active {
  color: var(--accent-color);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/placeholder.svg?height=800&width=1200&query=modern phone repair shop with circuit board background") no-repeat
    center center / cover;
  color: var(--white-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 178, 172, 0.3) 0%, rgba(45, 55, 72, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url("/placeholder.svg?height=300&width=300&query=circuit board pattern");
  opacity: 0.05;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-bottom: 4px solid var(--accent-color);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card p {
  color: var(--gray-color);
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

/* Why Choose Us */
.why-us {
  padding: 100px 0;
  background-color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.why-us::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-image: url("/placeholder.svg?height=300&width=300&query=smartphone wireframe pattern");
  opacity: 0.05;
  z-index: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  background-color: var(--light-color);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-right: 25px;
  background-color: rgba(56, 178, 172, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.feature-content p {
  color: var(--gray-color);
}

/* Brands */
.brands {
  padding: 80px 0;
  background-color: var(--light-color);
  position: relative;
}

.brands::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/placeholder.svg?height=500&width=500&query=subtle tech pattern");
  opacity: 0.03;
  z-index: 0;
}

.brand-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.brand {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray-color);
  background-color: var(--white-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.brand i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

/* Contact Info */
.contact-info {
  padding: 100px 0;
  background-color: var(--white-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 15px;
  background-color: var(--light-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  background-color: rgba(56, 178, 172, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-card p {
  color: var(--gray-color);
}

.contact-card a {
  color: var(--accent-color);
  font-weight: 500;
}

/* Map */
.map {
  height: 450px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Call to Action */
.cta {
  background: var(--tech-gradient),
    url("/placeholder.svg?height=800&width=1200&query=smartphone repair close up with circuit board") no-repeat center
    center / cover;
  color: var(--white-color);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 178, 172, 0.7) 0%, rgba(45, 55, 72, 0.7) 100%);
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url("/placeholder.svg?height=300&width=300&query=circuit board pattern");
  opacity: 0.05;
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-logo h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-logo h2::before {
  content: "\f3cd"; /* Telefon ikonu */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--accent-color);
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-logo p {
  color: #a0aec0;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: var(--white-color);
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #a0aec0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links ul li a::before {
  content: "\f105"; /* Sağ ok ikonu */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-links ul li a:hover::before {
  transform: translateX(3px);
}

.footer-contact p {
  margin-bottom: 15px;
  color: #a0aec0;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--accent-color);
  width: 20px;
  text-align: center;
}

.footer-contact a {
  color: #a0aec0;
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: #a0aec0;
}

/* Page Header */
.page-header {
  background: var(--tech-gradient),
    url("/placeholder.svg?height=800&width=1200&query=smartphone repair tools with circuit board background") no-repeat
    center center / cover;
  color: var(--white-color);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 178, 172, 0.7) 0%, rgba(45, 55, 72, 0.7) 100%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* About Page */
.about {
  padding: 100px 0;
  background-color: var(--light-color);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--gray-color);
  font-size: 1.05rem;
}

/* Mission */
.mission {
  padding: 100px 0;
  background-color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url("/placeholder.svg?height=300&width=300&query=smartphone wireframe pattern");
  opacity: 0.05;
  z-index: 0;
}

.mission-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mission-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.mission-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.mission-text p {
  margin-bottom: 30px;
  color: var(--gray-color);
  font-size: 1.05rem;
}

.mission-image img {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Team */
.team {
  padding: 100px 0;
  background-color: var(--light-color);
}

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

.team-member {
  text-align: center;
  background-color: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-image {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.member-image img {
  transition: transform 0.5s ease;
  width: 100%;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 0 5px;
  color: var(--primary-color);
}

.team-member p {
  color: var(--accent-color);
  font-weight: 500;
  padding-bottom: 20px;
}

/* Services Detailed */
.services-detailed {
  padding: 100px 0;
  background-color: var(--light-color);
}

.service-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse .service-details {
  direction: ltr;
}

.service-image img {
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.03);
}

.service-details h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.service-details h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.service-details p {
  margin-bottom: 25px;
  color: var(--gray-color);
  font-size: 1.05rem;
}

.service-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.service-details ul li {
  margin-bottom: 12px;
  color: var(--gray-color);
  position: relative;
  padding-left: 30px;
}

.service-details ul li::before {
  content: "\f058"; /* Check circle icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

/* Pricing */
.pricing {
  padding: 80px 0;
  background-color: var(--white-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-image: url("/placeholder.svg?height=300&width=300&query=subtle tech pattern");
  opacity: 0.03;
  z-index: 0;
}

.pricing-cta {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.pricing-cta .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* Gallery */
.gallery {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url("/placeholder.svg?height=300&width=300&query=circuit board pattern");
  opacity: 0.05;
  z-index: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(45, 55, 72, 0.9) 0%, rgba(45, 55, 72, 0.6) 50%, rgba(45, 55, 72, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.gallery-info {
  text-align: center;
  color: var(--white-color);
  padding: 25px;
  width: 100%;
}

.gallery-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-info p {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-info h3,
.gallery-item:hover .gallery-info p {
  transform: translateY(0);
  opacity: 1;
}

/* Contact Page */
.contact-page {
  padding: 100px 0;
  background-color: var(--light-color);
}

.contact-info-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 15px;
  background-color: var(--white-color);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  background-color: rgba(56, 178, 172, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-info-card p {
  color: var(--gray-color);
}

.contact-info-card a {
  color: var(--accent-color);
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  padding: 100px 0;
  background-color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url("/placeholder.svg?height=300&width=300&query=smartphone wireframe pattern");
  opacity: 0.05;
  z-index: 0;
}

form {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--light-color);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--primary-color);
}

input,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.2);
}

button[type="submit"] {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  margin-top: 15px;
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #2c9d98;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.8rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white-color);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .menu.active {
    left: 0;
  }

  .menu li {
    margin: 15px 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .service-item,
  .service-item.reverse {
    direction: ltr;
    padding: 30px;
  }

  .about-content,
  .mission-content {
    gap: 40px;
  }

  form {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .contact-grid,
  .gallery-filter {
    flex-direction: column;
  }

  form {
    padding: 25px;
  }

  .service-details h2,
  .about-text h2,
  .mission-text h2 {
    font-size: 1.8rem;
  }
}
