/* ==================== */
/* Google Fonts Import */
/* ==================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ==================== */
/* CSS Variables */
/* ==================== */
:root {
  --primary-dark: #1a1a2e;
  --secondary-dark: #16213e;
  --accent-blue: #0f3460;
  --gold: #c9a227;
  --gold-light: #d4b135;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #a0a0a0;
  --border-color: #2a2a4a;
}

/* ==================== */
/* Reset & Base Styles */
/* ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--primary-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ==================== */
/* Typography */
/* ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.section-subtitle {
  color: var(--gold);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* ==================== */
/* Animations */
/* ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== */
/* Top Bar */
/* ==================== */
.top-bar {
  background-color: var(--secondary-dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--white);
}

.top-bar-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.top-bar-right svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* ==================== */
/* Header / Navbar */
/* ==================== */
.header {
  background-color: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--white);
}

.logo-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--white);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.social-link.facebook { background-color: #1877f2; }
.social-link.twitter { background-color: #1da1f2; }
.social-link.youtube { background-color: #ff0000; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.soundcloud { background-color: #ff5500; }

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--secondary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .social-links {
    margin-top: 2rem;
  }
}

/* ==================== */
/* Hero Section */
/* ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 52, 96, 0.8) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 4rem 20px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: slideInRight 1s ease-out;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  max-width: 400px;
}

/* Floating Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* ==================== */
/* Services Section */
/* ==================== */
.services {
  padding: 5rem 0;
  background-color: var(--gray-light);
}

.services .container {
  text-align: center;
}

.services .section-title {
  color: var(--primary-dark);
}

.services-description {
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--secondary-dark);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(201, 162, 39, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.service-card:hover .service-icon {
  background-color: var(--gold);
}

.service-card:hover .service-icon svg {
  color: var(--primary-dark);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* ==================== */
/* eBook Section */
/* ==================== */
.ebook {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
}

.ebook .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.ebook-content {
  flex: 1;
}

.ebook-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ebook-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.ebook-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.ebook-btn svg {
  width: 20px;
  height: 20px;
}

.ebook-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ebook-image img {
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.ebook-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .ebook .container {
    flex-direction: column;
    text-align: center;
  }

  .ebook-image {
    order: -1;
  }
}

/* ==================== */
/* Video Section */
/* ==================== */
.video-section {
  padding: 5rem 0;
  background-color: var(--gray-light);
  text-align: center;
}

.video-section .section-title {
  color: var(--primary-dark);
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.video-title {
  font-size: 1.5rem;
  color: var(--white);
}

.mute-btn {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--white);
}

.mute-btn:hover {
  background-color: var(--gold);
  color: var(--primary-dark);
}

.mute-btn svg {
  width: 24px;
  height: 24px;
}

/* ==================== */
/* About Section */
/* ==================== */
.about {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.about .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.about-card {
  background-color: var(--secondary-dark);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-card-image {
  position: relative;
}

.about-card-image::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 12px;
}

.about-card-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}

.about-card h3 {
  font-size: 1.75rem;
  font-style: italic;
}

.about-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .about .container {
    grid-template-columns: 1fr;
  }
}

/* ==================== */
/* Popular Services & News */
/* ==================== */
.popular-services {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.popular-services .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.services-list h3,
.news-list h3 {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.services-list h3::after,
.news-list h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--gold);
}

.service-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-item:hover {
  padding-left: 1rem;
  border-color: var(--gold);
}

.service-item h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.news-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-item:hover {
  padding-left: 1rem;
}

.news-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.news-item-content h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.news-item:hover h4 {
  color: var(--gold);
}

.news-item-content span {
  font-size: 0.8125rem;
  color: var(--gray);
}

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

/* ==================== */
/* Testimonials Section */
/* ==================== */
.testimonials {
  padding: 5rem 0;
  background-color: var(--gray-light);
  text-align: center;
}

.testimonials .section-title {
  color: var(--primary-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #333;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: var(--primary-dark);
}

.testimonial-author-info span {
  font-size: 0.875rem;
  color: var(--gray);
}

/* ==================== */
/* Newsletter Section */
/* ==================== */
.newsletter {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  text-align: center;
}

.newsletter h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.newsletter p {
  color: var(--primary-dark);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background-color: var(--primary-dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ==================== */
/* Footer */
/* ==================== */
.footer {
  background-color: var(--secondary-dark);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--gold);
}

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==================== */
/* Utility Classes */
/* ==================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
