/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: #0a0a0a;
  overflow-x: hidden;
}

/* Sunflower decorative element */
.sunflower-accent {
  position: absolute;
  font-size: 40px;
  opacity: 0.15;
  color: #ffd700;
  z-index: 0;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ===========================
   BUTTONS
   =========================== */
.btn-primary,
.btn-cta,
.btn-service {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff1493 0%, #9c27b0 100%);
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
  background: linear-gradient(135deg, #ff1493 0%, #ba68c8 100%);
}

.btn-cta {
  background: linear-gradient(135deg, #ff1493 0%, #9c27b0 100%);
  color: white;
  font-size: 18px;
  padding: 15px 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
  border: 1px solid rgba(255, 20, 147, 0.3);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
  background: linear-gradient(135deg, #ff1493 0%, #ba68c8 100%);
}

.btn-service {
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
  color: white;
  font-size: 14px;
  padding: 10px 25px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(156, 39, 176, 0.4);
  background: linear-gradient(135deg, #ba68c8 0%, #9c27b0 100%);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: 1000;
}

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

.logo img {
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.8));
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu li a {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ff1493;
  text-shadow: 0 0 8px rgba(255, 20, 147, 0.6);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0520 50%, #0a0a0a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.08) 0%, transparent 50%);
  opacity: 0.8;
}

.hero::after {
  content: '🌻';
  position: absolute;
  font-size: 120px;
  opacity: 0.03;
  top: 15%;
  right: 10%;
  transform: rotate(-15deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 20px 50px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #ff1493 50%, #ba68c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.3)) drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8));
  position: relative;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
}

.services-section::before {
  content: '🌻';
  position: absolute;
  font-size: 80px;
  opacity: 0.05;
  bottom: 10%;
  left: 5%;
  transform: rotate(25deg);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff1493 0%, #ba68c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: none;
  position: relative;
  display: inline-block;
}

.section-header {
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff1493, transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid rgba(156, 39, 176, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 400px 1fr;
}

.service-card-wide .service-image {
  height: 100%;
  min-height: 300px;
}

.service-card-wide .service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

@media (max-width: 968px) {
  .service-card-wide {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  
  .service-card-wide .service-image {
    height: 250px;
    min-height: 250px;
  }
  
  .service-card-wide .service-content {
    padding: 25px;
  }
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
  border-color: rgba(255, 20, 147, 0.5);
}

.service-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
}

.service-content {
  padding: 25px;
  text-align: center;
}

.service-content h3 {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff1493 0%, #ba68c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.service-content p {
  color: #b0b0b0;
  margin-bottom: 20px;
  font-size: 16px;
}

/* ===========================
   EMBRACE YOUR STYLE SECTION
   =========================== */
.embrace-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0520 0%, #2d0a3f 50%, #1a0520 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 20, 147, 0.2);
  border-bottom: 1px solid rgba(255, 20, 147, 0.2);
}

.embrace-section::before {
  content: '🌻';
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  pointer-events: none;
}

.embrace-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.embrace-content {
  position: relative;
  z-index: 1;
}

.embrace-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.embrace-content p {
  font-size: 22px;
  margin-bottom: 30px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===========================
   TWO COLUMN SECTION
   =========================== */
.two-column-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: white;
  text-align: center;
}

.column-left {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.7), rgba(10, 10, 10, 0.95)),
              url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=800') center/cover;
  border-right: 1px solid rgba(255, 20, 147, 0.2);
}

.column-right {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(156, 39, 176, 0.7)),
              url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=800') center/cover;
}

.column-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.column-content p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
}

.about-section::before {
  content: '🌻';
  position: absolute;
  font-size: 100px;
  opacity: 0.04;
  top: 20%;
  right: 8%;
  transform: rotate(15deg);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-video {
  position: relative;
}

.video-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #0a0a0a, #1a0520);
  border: 2px solid rgba(156, 39, 176, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff1493;
  font-size: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(156, 39, 176, 0.2);
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '🌻';
  position: absolute;
  font-size: 150px;
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.video-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255, 20, 147, 0.4);
  border-color: rgba(255, 20, 147, 0.6);
}

.about-content h2 {
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff1493 0%, #ba68c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
}

.about-list {
  margin-bottom: 30px;
}

.about-list li {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d0d0d0;
}

.about-list i {
  color: #ff1493;
  font-size: 20px;
  filter: drop-shadow(0 0 3px rgba(255, 20, 147, 0.4));
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  position: relative;
}

.process-section::after {
  content: '🌻';
  position: absolute;
  font-size: 90px;
  opacity: 0.04;
  top: 15%;
  left: 8%;
  transform: rotate(-25deg);
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 968px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-card {
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  color: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.process-card.teal {
  background: linear-gradient(135deg, #1a0520, #0a0a0a);
  border: 1px solid rgba(255, 20, 147, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.process-card-wide {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 50px 60px;
}

.process-card-wide h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.process-card-wide p {
  font-size: 18px;
  margin-bottom: 25px;
}

@media (max-width: 968px) {
  .process-card-wide {
    grid-column: 1;
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  
  .process-card-wide h3 {
    font-size: 24px;
  }
  
  .process-card-wide p {
    font-size: 16px;
  }
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
  border-color: rgba(255, 20, 147, 0.6);
}

.process-card.teal:hover {
  border-color: rgba(255, 20, 147, 0.7);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
}

.process-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-card p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  text-align: center;
  position: relative;
}

.testimonials-section::before {
  content: '🌻';
  position: absolute;
  font-size: 110px;
  opacity: 0.04;
  bottom: 15%;
  right: 10%;
  transform: rotate(20deg);
  pointer-events: none;
}

.testimonials-section h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff1493 0%, #ba68c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 50px;
}

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

.testimonial-card {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(156, 39, 176, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 20, 147, 0.4);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.testimonial-avatar {
  font-size: 60px;
  background: linear-gradient(135deg, #ff1493, #ba68c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.3));
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #b0b0b0;
  margin-bottom: 15px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: #ff1493;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000 0%, #1a0a1f 50%, #000000 100%);
  color: white;
  text-align: center;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

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

.contact-info {
  text-align: left;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 30px;
  color: #ff1493;
  min-width: 30px;
  filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.6));
}

.contact-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  font-size: 16px;
  opacity: 0.9;
}

.contact-item a:hover {
  color: #ff69b4;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
}

.contact-map {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  padding: 40px;
}

.map-placeholder p {
  font-size: 24px;
  margin-top: 20px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: #ff1493;
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.8;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: #ff69b4;
  padding-left: 5px;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.6);
}

.social-links {
  display: flex;
  gap: 15px;
  font-size: 24px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 20, 147, 0.2);
  border: 1px solid #ff1493;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff1493;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* ===========================
   MODAL
   =========================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  padding: 50px;
  border-radius: 20px;
  max-width: 500px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 20, 147, 0.3);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

.modal-content h2 {
  background: linear-gradient(135deg, #ff1493 0%, #ba68c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 32px;
  margin-bottom: 20px;
}

.modal-content p {
  color: #b0b0b0;
  margin-bottom: 25px;
  font-size: 18px;
}

.modal-note {
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px !important;
  margin-top: 20px !important;
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 20, 147, 0.3);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 968px) {
  .nav-menu {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .about-grid,
  .contact-grid,
  .two-column-section {
    grid-template-columns: 1fr;
  }
  
  .column {
    min-height: 400px;
  }
  
  .services-grid,
  .process-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .section-header h2,
  .testimonials-section h2,
  .contact-section h2 {
    font-size: 32px;
  }
  
  .btn-cta {
    font-size: 16px;
    padding: 12px 30px;
  }
  
  .modal-content {
    padding: 30px 20px;
  }
}
