/* CSS Variables */
:root {
  --primary: #2c3e50;
  --secondary: #3498db;
  --accent: #e74c3c;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --text: #333;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --gray: #95a5a6;
  --success: #2ecc71;
  --warning: #f39c12;
  --gradient: linear-gradient(135deg, #3498db, #9b59b6);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--secondary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

/* Background Shapes */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  top: 10%;
  left: 5%;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 60%;
  right: 10%;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--success);
  bottom: 10%;
  left: 20%;
}

/* Top Bar */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .links a {
  color: var(--light);
  margin-right: 20px;
}

.top-bar .links a:hover {
  color: var(--accent);
}

.top-bar .phone {
  display: flex;
  align-items: center;
}

.top-bar .phone i {
  margin-right: 8px;
  color: var(--accent);
}


/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.close-btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
}

.floating-element:nth-child(2) {
  top: 60%;
  left: 5%;
}

.floating-element:nth-child(3) {
  top: 30%;
  right: 10%;
}

.floating-element:nth-child(4) {
  top: 70%;
  right: 15%;
}

.floating-element:nth-child(5) {
  top: 50%;
  left: 50%;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  margin: 0 15px 10px;
  color: var(--text-light);
}

.hero-highlights i {
  color: var(--success);
  margin-right: 8px;
}

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

/* Packages Section */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.plan {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.plan.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.plan.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
}

.plan-header h3 {
  margin-bottom: 15px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.price span {
  font-size: 1rem;
  color: var(--text-light);
}

.plan-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.plan ul {
  list-style: none;
  margin-bottom: 30px;
}

.plan li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.plan li i {
  margin-right: 10px;
  width: 20px;
}

.plan li i.fa-check {
  color: var(--success);
}

.plan li i.fa-times {
  color: var(--gray);
}

.plan .btn {
  width: 100%;
  text-align: center;
}

/* Service Details */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.detail-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: all 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.detail-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.5rem;
}

.detail-card h3 {
  margin-bottom: 15px;
}

.detail-card p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.detail-card ul {
  list-style: none;
}

.detail-card li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.detail-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.step {
  display: flex;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-light);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.benefit h3 {
  margin-bottom: 15px;
}

.benefit p {
  color: var(--text-light);
}

/* Case Studies */
.cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.case {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: all 0.3s ease;
}

.case:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.case h3 {
  margin-bottom: 15px;
  color: var(--secondary);
}

.case p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.case .btn {
  display: inline-block;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 15px;
  overflow: hidden;
}

summary {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--secondary);
  transition: all 0.3s ease;
}

details[open] summary::after {
  content: '-';
}

details p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

/* CTA Contact Section */
.cta-contact {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
}

.cta-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--text-light);
}

.contact {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact h2 {
  margin-bottom: 20px;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
}

.contact input,
.contact select,
.contact textarea {
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #e1e1e1;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.contact button {
  padding: 12px 30px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.contact button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-col a {
  display: block;
  color: var(--light);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-col p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-col p i {
  margin-right: 10px;
  color: var(--accent);
  width: 20px;
}

.footer-col.social h3 {
  margin-bottom: 15px;
}

.footer-col.social div:first-child {
  display: flex;
  margin-bottom: 20px;
}

.footer-col.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--light);
  transition: all 0.3s ease;
}

.footer-col.social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.newsletter h4 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1rem;
}

.newsletter form {
  display: flex;
}

.newsletter input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: 'Poppins', sans-serif;
}

.newsletter button {
  padding: 0 15px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--gray);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .cta-contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .plan.featured {
    transform: scale(1);
  }
  
  .plan.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .close-btn {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  nav.active {
    right: 0;
  }
  
  nav a {
    margin: 10px 0;
    font-size: 1.1rem;
  }
  
  .menu {
    width: 100%;
  }
  
  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  
  .top-bar .links {
    margin-bottom: 10px;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .plans {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-highlights {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-highlights li {
    margin: 0 0 10px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter input {
    border-radius: var(--radius);
    margin-bottom: 10px;
  }
  
  .newsletter button {
    border-radius: var(--radius);
    padding: 10px 15px;
  }
}