/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  overflow-x: hidden;
  background-color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.skewed-header {
  background: linear-gradient(135deg, #f39c12, #f1c40f);
  transform: skewY(-4deg);
  padding: 2rem 0;
  margin-bottom: 4rem;
}

.skewed-header .container {
  transform: skewY(4deg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  color: #fff;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.7;
}

/* Hero */
.hero {
  background: url('https://images.unsplash.com/photo-1518717758536-85ae29035b6d?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: #fff;
  text-align: left;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-text {
  max-width: 600px;
  background: rgba(0,0,0,0.4);
  padding: 2rem;
  border-radius: 10px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #fff;
  color: #f39c12;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #fdf0d0;
}

/* Services */
.diagonal-bg {
  background: #fdf0d5;
  transform: skewY(-3deg);
  padding: 5rem 0;
}

.diagonal-bg > * {
  transform: skewY(3deg);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #f39c12;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  flex: 1 1 250px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

/* Split Layout */
.split-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.split-layout .text,
.split-layout .image {
  flex: 1 1 50%;
  min-height: 400px;
}

.split-layout .text {
  background: #fff8e7;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-layout .text h2 {
  color: #f39c12;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.split-layout .image {
  background: url('pk.gif') center/cover no-repeat;
}

/* CTA */
.cta {
  background: #f39c12;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  background: url('https://cdn-icons-png.flaticon.com/512/616/616408.png') no-repeat center;
  background-size: 200px;
  opacity: 0.1;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta p {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta .btn-dark {
  background: #fff;
  color: #f39c12;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.cta .btn-dark:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .hero {
    text-align: center;
    justify-content: center;
  }

  .hero-text {
    background: rgba(0,0,0,0.6);
  }

  .split-layout {
    flex-direction: column;
  }

  .service-card img {
    height: 160px;
  }
}
