:root {
  --primary-orange: #FF6B35;
  --primary-gold: #F7931E;
  --primary-light: #FFB74D;
  --dark-bg: #1a1a1a;
  --light-text: #ffffff;
  --gray-text: #cccccc;
  --section-padding: 80px 0;
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background: var(--dark-bg);
  overflow-x: hidden;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-gold) 50%, var(--primary-light) 100%);
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

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

.logo {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.cta-button {
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1810 50%, var(--dark-bg) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 50%, rgba(255, 183, 77, 0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--gray-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Dynamic Shapes */
.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.triangle-1 {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid var(--primary-orange);
  top: 15%;
  left: 8%;
  animation-delay: 0s;
  opacity: 0.15;
}

.triangle-2 {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid var(--primary-gold);
  bottom: 25%;
  right: 12%;
  animation-delay: 3s;
  opacity: 0.12;
}

.hexagon-1 {
  width: 120px;
  height: 104px;
  background: var(--primary-orange);
  position: relative;
  top: 45%;
  left: 75%;
  animation-delay: 1s;
  opacity: 0.1;
}

.hexagon-1:before,
.hexagon-1:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
}

.hexagon-1:before {
  bottom: 100%;
  border-bottom: 30px solid var(--primary-orange);
}

.hexagon-1:after {
  top: 100%;
  border-top: 30px solid var(--primary-orange);
}

.hexagon-2 {
  width: 80px;
  height: 69px;
  background: var(--primary-gold);
  position: relative;
  top: 70%;
  left: 20%;
  animation-delay: 4s;
  opacity: 0.08;
}

.hexagon-2:before,
.hexagon-2:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
}

.hexagon-2:before {
  bottom: 100%;
  border-bottom: 20px solid var(--primary-gold);
}

.hexagon-2:after {
  top: 100%;
  border-top: 20px solid var(--primary-gold);
}

.diamond-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
  transform: rotate(45deg);
  top: 25%;
  right: 25%;
  animation-delay: 2s;
  opacity: 0.12;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Dividers */
.section-divider {
  height: 100px;
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  margin: -1px 0;
}

/* Services Section */
.services {
  padding: var(--section-padding);
  background: var(--dark-bg);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.services-grid-diverse {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, minmax(200px, auto));
  gap: 20px;
  margin-top: 50px;
}

.service-card.large {
  grid-column: span 8;
  grid-row: span 2;
  display: flex;
  align-items: center;
  gap: 30px;
}

.service-card.medium {
  grid-column: span 6;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.small {
  grid-column: span 4;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-image {
  width: 50%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.service-image-small {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
  margin-top: 15px;
}

.service-image-tiny {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 15px;
}

.service-content {
  flex: 1;
  padding: 20px;
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

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

.service-card p {
  color: var(--gray-text);
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1810 50%, #1a1a1a 100%);
}

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

.team-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: scale(1.05);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background: var(--dark-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.contact-info p {
  color: var(--gray-text);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-gold);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.8);
  color: var(--light-text);
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(247, 147, 30, 0.3);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* Footer */
footer {
  background: #111;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
  color: var(--gray-text);
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  color: var(--gray-text);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid-diverse {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .service-card.large,
  .service-card.medium,
  .service-card.small {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .service-card.large {
    flex-direction: column;
  }
  
  .service-image {
    width: 100%;
    height: 200px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

/* Pricing Page Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.pricing-card.featured {
  border: 2px solid var(--primary-gold);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-gold);
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--light-text);
  margin-bottom: 5px;
}

.pricing-card .price-period {
  color: var(--gray-text);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--gray-text);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary-gold);
  font-weight: bold;
  margin-right: 10px;
}
