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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* ===== PREMIUM HEADER ===== */

.main-header {
  background: linear-gradient(135deg, #0f2027, #1c3b47, #2c5364);
  padding: 15px 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

/* Left side */
.logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  width: 152px;
  height: 68px;
  border-radius: 14%;
  padding: 6px;
  /*background: rgba(255,255,255,0.15);*/
  transition: 0.4s ease;
}

.logo:hover {
  transform: rotate(8deg) scale(1.05);
}

.brand-text h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.brand-text p {
  font-size: 13px;
  color: #dcdcdc;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* Optional Navigation */
/* Navigation */
.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ffd700;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-container {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    margin-top: 10px;
  }

  .nav-links a {
    margin-left: 15px;
  }
}

/* SECTION COMMON */
section {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

/* ABOUT */
.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.about-image img {
  width: 350px;
  border-radius: 12px;
}

.about-content p {
  margin-bottom: 15px;
  color: #555;
}

.about-highlights {
  list-style: none;
}

.about-highlights li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* PORTFOLIO */
.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.photo-box img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.photo-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===== ATTRACTIVE DOWNLOAD BUTTON ===== */

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: white;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  box-shadow: 0 10px 25px rgba(255, 75, 43, 0.4);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Animation */
.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 75, 43, 0.6);
}

/* Icon Animation */
.download-icon {
  font-size: 18px;
  transition: 0.4s ease;
}

.download-btn:hover .download-icon {
  transform: translateY(4px);
}

/* ========================= */
/* PRICING SECTION */
/* ========================= */

.pricing {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
}

.pricing h2 {
  margin-bottom: 50px;
}

/* GRID LAYOUT */
.package-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.package {
  padding: 40px 25px;
  border-radius: 20px;
  background: rgb(143 255 99 / 23%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: 0.4s ease;
  position: relative;
}

.package:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.gold {
  background: linear-gradient(145deg, #8f7a22, #d4af37);
  color: #111;
}

.platinum {
  background: linear-gradient(145deg, #6c8a99, #b0c4de);
  color: #111;
}

.package h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.price {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
}

.package ul {
  list-style: none;
  margin-bottom: 30px;
}

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

/* BUTTON */
.book-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  background: white;
  color: #111;
  transition: 0.3s ease;
}

.book-btn:hover {
  background: #003619;
  color: white;
}

/* POPULAR TAG */
.popular-tag {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #bb4c4cc9;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}


/* Contact Toggle Button */
.contact-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(45deg,#C13584,#E1306C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  z-index: 1001;
  transition: 0.3s ease;
}

.contact-toggle:hover {
  transform: scale(1.1);
}

/* Contact Card */
.contact-detail-card {
  position: fixed;
  bottom: 100px;
  right: -350px;
  width: 300px;
  border-radius: 20px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: 0.5s ease;
  z-index: 1000;
}

.contact-detail-card.active {
  right: 25px;
}

.card-header {
  padding: 15px;
  background: #7847c5;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px 20px 0 0;
}

.card-header span {
  cursor: pointer;
  font-size: 20px;
}

.card-body {
  padding: 20px;
}

.card-body p {
  margin-bottom: 12px;
  font-size: 14px;
}

/* ===== PREMIUM FOOTER ===== */

.premium-footer {
  background: #111;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.premium-footer a {
  color: #00c6ff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.premium-footer a:hover {
  color: #ffd700;
}

.insta-png img {
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: 0.4s ease;
}

.insta-png img:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(225,48,108,0.6);
}

/* WHATSAPP FIXED */
.whatsapp-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .package-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 100%;
  }

  .package-row {
    grid-template-columns: 1fr;
  }
}