/* Yaholy Corp - Glassmorphism Website Styles */

/* Base Styles & Variables */
:root {
  /* Glassmorphism Colors */
  --primary-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --secondary-gradient: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: rgba(0, 0, 0, 0.2);
  
  /* Text Colors */
  --text-light: #f5f5dc; /* Light cream */
  --text-dark: #1e1e1e;
  --text-muted: rgba(245, 245, 220, 0.7); /* Light cream with opacity */
  
  /* Other Variables */
  --border-radius: 16px;
  --card-padding: 2rem;
  --transition: all 0.3s ease;
  --blur-amount: 12px;
}

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--primary-gradient);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: #1a1a1a; /* Fallback if gradient doesn't work */
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* Glassmorphism Utility Classes */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  padding: var(--card-padding);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px 0 var(--glass-shadow);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--secondary-gradient);
  color: var(--text-light);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--text-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Navigation */
.glass-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.logo img {
  max-height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  font-weight: 500;
  position: relative;
}

.nav-links a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--text-light);
  transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.stat h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--text-muted);
}

/* Decorative Shapes */
.shape {
  position: absolute;
  z-index: -1;
  filter: blur(70px);
  opacity: 0.5;
}

.shape1 {
  width: 500px;
  height: 500px;
  background: #2d2d2d;
  top: -100px;
  right: -200px;
  border-radius: 50%;
}

.shape2 {
  width: 300px;
  height: 300px;
  background: #333333;
  bottom: -50px;
  left: -100px;
  border-radius: 50%;
}

.shape3 {
  width: 400px;
  height: 400px;
  background: #262626;
  top: 50%;
  left: -200px;
  border-radius: 50%;
}

.shape4 {
  width: 350px;
  height: 350px;
  background: #1e1e1e;
  bottom: -100px;
  right: -150px;
  border-radius: 50%;
}

.shape5 {
  width: 450px;
  height: 450px;
  background: #2a2a2a;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-card {
  text-align: center;
}

.about-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-story h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-story .btn-secondary {
  margin-top: 1.5rem;
}

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

.service-card {
  text-align: center;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.investment {
  margin: 1.5rem 0;
}

.investment span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.investment h4 {
  font-size: 1.8rem;
  margin: 0.5rem 0;
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  text-align: center;
}

.portfolio-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Impact Section */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.impact-stat h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.impact-stat p {
  color: var(--text-muted);
}

/* Privacy Policy Section */
.privacy-policy {
  padding-top: 120px; /* Extra padding to account for the fixed navbar */
  padding-bottom: 5rem;
}

.privacy-content {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  padding: var(--card-padding);
  margin-top: 2rem;
}

.privacy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.privacy-content h3:first-child {
  margin-top: 0;
}

.privacy-content p, .privacy-content ul {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.privacy-content ul {
  padding-left: 2rem;
  list-style-type: disc;
}

.privacy-content ul li {
  margin-bottom: 0.5rem;
}

.privacy-content a {
  color: var(--text-light);
  text-decoration: underline;
  transition: var(--transition);
}

.privacy-content a:hover {
  opacity: 0.8;
}

/* Testimonials Section */
.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  position: relative;
}

.quote {
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.2;
}

.testimonial p {
  margin: 2rem 0;
}

.client {
  display: flex;
  align-items: center;
}

.client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-gradient);
  margin-right: 1rem;
  border: 1px solid var(--glass-border);
}

.client-info h4 {
  margin-bottom: 0.2rem;
}

.client-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.toggle {
  font-size: 1.5rem;
}

.faq-answer {
  margin-top: 1rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .toggle {
  transform: rotate(45deg);
}

/* Action Plan Section */
.plan-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.plan-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--secondary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.contact-item .icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

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

.footer-logo h2 {
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 0.8rem;
}

.footer-newsletter form {
  display: flex;
  margin-top: 1.5rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 8px 0 0 8px;
  color: var(--text-light);
}

.footer-newsletter button {
  border-radius: 0 8px 8px 0;
  padding: 0 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

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

.social-links {
  display: flex;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-gradient);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #1a1a1a;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 999;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .social-links {
    margin-top: 1.5rem;
    justify-content: center;
  }
  
  .social-links a {
    margin: 0 0.5rem;
  }
}

@media (max-width: 576px) {
  .glass-card {
    padding: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
}
