/* Base styles */
:root {
  --primary-pink: #E0017D;
  --primary-purple: #4D1F7E;
  --dark: #131313;
  --dark-lighter: #1E1E1E;
  --foreground: 255, 255, 255;
  --background-start: 20, 20, 20;
  --background-end: 10, 10, 10;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: rgb(var(--foreground));
  background: linear-gradient(
      to bottom,
      transparent,
      rgb(var(--background-end))
    )
    rgb(var(--background-start));
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary-pink), var(--primary-purple));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #F02997, #6532A3);
}

/* Utilities */
.gradient-text {
  background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(224, 1, 125, 0.3);
}

.gradient-border {
  position: relative;
}

.gradient-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
  transition: width 0.3s ease;
}

.gradient-border:hover::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
  color: white;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-gradient {
  background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
  color: white;
}

.btn-gradient:hover {
  box-shadow: 0 5px 15px rgba(224, 1, 125, 0.4);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 36rem;
  margin: 0 auto;
  color: #ccc;
}

.hidden {
  display: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromLeft {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease forwards;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header.scrolled {
  background-color: var(--dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
}

.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #ccc;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background-color: var(--dark-lighter);
  padding: 1rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  transition: all 0.3s ease;
  border-radius: 0.25rem;
}

.mobile-nav a:hover {
  color: #ccc;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(19, 19, 19, 0.8), rgba(19, 19, 19, 0.7));
}

.hero-content {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6rem;
}

.hero-text {
  text-align: center;
  width: 100%;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  display: block;
}

.hero-text p {
  font-size: 1.125rem;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-graphic {
  display: none;
}

.clients-preview {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(to bottom right, rgba(224, 1, 125, 0.2), rgba(77, 31, 126, 0.2));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.blur-circle-1 {
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(224, 1, 125, 0.3);
}

.blur-circle-2 {
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(77, 31, 126, 0.3);
}

.clients-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.clients-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.client-box {
  background-color: rgba(255, 255, 255, 0.1);
  height: 4rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-box span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 1.5s infinite;
}

.scroll-indicator span {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(10px) translateX(-50%); }
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--dark-lighter);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.service-card {
  background-color: var(--dark);
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card.featured {
  position: relative;
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-pink);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
}

.glow-effect {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 10rem;
  height: 10rem;
  background-color: rgba(224, 1, 125, 0.2);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.service-card p {
  color: #999;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}

.price-note {
  font-size: 0.875rem;
  color: #999;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}

.features-list {
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: #ccc;
}

.features-list i {
  color: var(--primary-pink);
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.custom-options {
  margin-bottom: 2rem;
}

.option-group {
  margin-bottom: 1rem;
}

.option-group label {
  display: block;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.option-group select {
  width: 100%;
  background-color: var(--dark-lighter);
  border: 1px solid #444;
  border-radius: 0.375rem;
  color: white;
  padding: 0.5rem 0.75rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.option-group select:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 2px rgba(224, 1, 125, 0.3);
}

.services-icons {
  margin-top: 4rem;
  text-align: center;
}

.services-icons h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

/* New Services Detailed Grid */
#packages .services-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#packages .service-detailed-box {
  background-color: var(--dark-lighter);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid #333;
  text-align: left;
}

#packages .service-detailed-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(224, 1, 125, 0.3);
}

#packages .service-detailed-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(45deg, var(--primary-pink), var(--primary-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

#packages .service-detailed-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

#packages .service-detailed-box p {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Original icons grid styles for reference */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.icon-box {
  text-align: center;
}

.icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(45deg, var(--primary-pink), var(--primary-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
  color: white;
}

.icon-box h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

/* Portfolio Section */
.portfolio {
  padding: 5rem 0;
  background-color: var(--dark);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  background-color: var(--dark-lighter);
  color: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #333;
}

.filter-btn.active {
  background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.portfolio-item {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--dark-lighter);
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(224, 1, 125, 0.3);
}

.portfolio-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--dark), transparent);
  opacity: 0.7;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.portfolio-content p {
  color: #999;
  margin-bottom: 1rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags span {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background-color: var(--dark);
  color: var(--primary-pink);
  border: 1px solid rgba(224, 1, 125, 0.3);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--dark-lighter);
}

.testimonial-slider {
  max-width: 64rem;
  margin: 0 auto;
}

.testimonial-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-container {
  margin: 0 3rem;
}

.testimonial {
  display: none;
  background-color: var(--dark);
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.quote-icon {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  font-size: 3rem;
  color: var(--primary-pink);
  opacity: 0.2;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-pink);
  flex-shrink: 0;
  margin: 0 auto;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
}

.testimonial-text p {
  font-size: 1.125rem;
  color: #ccc;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.rating {
  display: flex;
  margin-bottom: 0.25rem;
}

.rating i {
  color: #FFD700;
  margin-right: 0.25rem;
}

.testimonial-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.company {
  color: var(--primary-pink);
  font-size: 0.875rem;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  border: 1px solid #444;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-arrow:hover {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
}

.testimonial-arrow.prev {
  left: 0;
}

.testimonial-arrow.next {
  right: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #444;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background-color: #666;
}

.dot.active {
  background-color: var(--primary-pink);
}

.client-logos h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2.5rem;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  opacity: 0.7;
}

.logo-box {
  background-color: var(--dark);
  border: 1px solid #333;
  border-radius: 0.375rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--dark);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form {
  background-color: var(--dark-lighter);
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}

.success-icon {
  font-size: 3rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

.form-success h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: var(--dark);
  border: 1px solid #444;
  border-radius: 0.375rem;
  color: white;
  padding: 0.75rem 1rem;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 2px rgba(224, 1, 125, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background-color: var(--dark-lighter);
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--dark);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-icon i {
  color: var(--primary-pink);
}

.info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.info-content a,
.info-content p {
  color: #ccc;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: white;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
}

.check-mark {
  color: var(--primary-pink);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.benefits-list p {
  color: #ccc;
}

/* Footer */
.footer {
  background-color: var(--dark);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid #333;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info {
  max-width: 20rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-info p {
  color: #999;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--dark-lighter);
  border-radius: 50%;
  color: #ccc;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-pink);
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.links-column h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.links-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links-column li {
  color: #999;
  transition: color 0.3s ease;
}

.links-column a:hover {
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #999;
}

.contact-item i {
  color: var(--primary-pink);
  margin-right: 0.75rem;
}

.contact-item a {
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  color: #666;
}

/* News Section in Footer */
.latest-news {
  padding: 2rem 0;
  border-top: 1px solid #333;
  margin-top: 2rem;
}

.latest-news h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
}

.news-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.news-preview {
  background-color: var(--dark-lighter);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.news-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(224, 1, 125, 0.3);
}

.news-preview-date {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.news-preview h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.news-preview h4 a {
  color: white;
  transition: color 0.3s ease;
}

.news-preview h4 a:hover {
  color: var(--primary-pink);
}

.news-preview p {
  color: #ccc;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-pink);
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: white;
}

.read-more i {
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
}

/* Article Page Styles */
.article-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1rem 3rem;
}

.news-article {
  background-color: var(--dark-lighter);
  border-radius: 0.5rem;
  border: 1px solid #333;
  overflow: hidden;
}

.article-header {
  padding: 2rem 2rem 1rem;
}

.article-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 1rem;
}

.article-category {
  color: var(--primary-pink);
  font-weight: 500;
}

.featured-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 2rem;
}

.article-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.article-content p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.article-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin: 2.5rem 0 1.25rem;
}

.article-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin: 2rem 0 1rem;
}

.article-content .article-list {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.article-content .article-list li {
  margin-bottom: 0.75rem;
  color: #ccc;
}

.article-content .article-list.numbered {
  list-style-type: decimal;
}

.article-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-section {
  background-color: var(--dark-lighter);
  border-radius: 0.5rem;
  border: 1px solid #333;
  padding: 1.5rem;
}

.sidebar-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}

.sidebar-section p {
  color: #ccc;
  margin-bottom: 1.25rem;
}

.sidebar-articles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-articles li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.sidebar-articles li a:hover {
  color: var(--primary-pink);
}

/* Media Queries */
@media (min-width: 640px) {
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #packages .services-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .testimonial-content {
    flex-direction: row;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .article-header h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .icons-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 3fr 2fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .article-container {
    grid-template-columns: 3fr 1fr;
  }
  
  .news-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  #packages .services-detailed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Introduction Section */
.introduction {
  padding: 4rem 0;
  background-color: var(--dark);
}

.intro-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.intro-text {
  text-align: left;
}

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.intro-content {
  max-width: 100%;
}

.intro-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.intro-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-image img {
  max-width: 100%;
  height: auto;
}

/* CTA inside introduction */
.intro-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 1rem;
}

.intro-cta h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Responsive design for introduction section */
@media (min-width: 768px) {
  .intro-flex {
    flex-direction: row;
    align-items: center;
  }
  
  .intro-text {
    flex: 1;
    padding-right: 2rem;
  }
  
  .intro-image {
    flex: 1;
  }
}

/* CTA Section - No longer needed as it's now part of the introduction
.cta-section {
  padding: 3rem 0;
  background-color: var(--dark-lighter);
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
}
*/