:root {
  --primary-color: #4a90e2;
  --secondary-color: #2c3e50;
  --accent-color: #f39c12;
  --text-color: #333333;
  --bg-color: #f8fafc;
  --card-bg: #ffffff;
  --font-main: 'Outfit', sans-serif;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

nav a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
  margin-left: 30px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 24px;
}

.btn-primary:hover {
  background-color: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-large {
  padding: 15px 32px;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  padding: 100px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.hero-image-wrapper {
  flex: 1;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Services */
.services {
  padding: 80px 0;
  background-color: white;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 50px;
}

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

.service-card {
  background-color: var(--bg-color);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* About */
.about {
  padding: 100px 0;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin-top: 30px;
}

.about-text li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Contact */
.contact {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact p {
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  gap: 20px;
}

.form-group input {
  flex: 1;
}

input, textarea {
  padding: 15px;
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-main);
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: 2px solid var(--primary-color);
}

.direct-email {
  margin-top: 30px;
}

.direct-email a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #1a252f;
  color: #7f8c8d;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  nav a:not(.btn) {
    display: none;
  }
}
