/**
* Professional Life Coaching Website Styles
* Enhanced for Jagadish V Chalam - Hopes Life Coaching Academy
*/

/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #2c5aa0;
  --primary-light: #3d6bb5;
  --primary-dark: #1e4088;
  --secondary-color: #f39c12;
  --accent-color: #e67e22;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --text-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
  --shadow-light: 0 2px 15px rgba(44, 90, 160, 0.1);
  --shadow-medium: 0 5px 25px rgba(44, 90, 160, 0.15);
  --shadow-heavy: 0 10px 40px rgba(44, 90, 160, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 10px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

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

a:hover {
  color: var(--primary-light);
}

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

.section-padding {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  color: var(--text-white);
}

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

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

/* ===== HEADER ===== */
#header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  z-index: 997;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
}

.logo span {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar ul {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar a {
  padding: 10px 15px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary-color);
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 60%;
}

.mobile-nav-toggle {
  color: var(--primary-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.9) 0%, rgba(61, 107, 181, 0.8) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(61, 107, 181, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  padding: 60px 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.experience-badge .years {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.experience-badge .text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-content {
  padding-left: 40px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--text-light);
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-white);
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.service-link:hover {
  color: var(--primary-light);
}

/* ===== TEAM CARDS ===== */
.team-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .social-links {
  opacity: 1;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.position {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  display: block;
}

.team-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.author-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

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

/* ===== CONTACT SECTION ===== */
.contact-info {
  padding-right: 30px;
}

.contact-info h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

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

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.contact-form .row {
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(44, 90, 160, 0.1);
}

/* ===== FOOTER ===== */
.footer-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #34495e 100%);
  color: var(--text-white);
  padding: 60px 0 0;
}

.footer-info h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-links h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-newsletter h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--gradient-secondary);
  color: var(--text-white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

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

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

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

.footer-bottom {
  margin-top: 40px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
}

.credits {
  color: rgba(255, 255, 255, 0.8);
}

.credits a {
  color: var(--secondary-color);
}

/* ===== GALLERY STYLES ===== */
.gallery-hero {
  background: var(--gradient-primary);
  padding: 150px 0 100px;
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.gallery-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-filters {
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  margin: 0 10px 10px 0;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

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

.gallery-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  background: var(--bg-white);
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.gallery-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.gallery-link:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: scale(1.1);
}

/* ===== VIDEO SECTION ===== */
.video-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.video-info {
  padding: 25px;
}

.video-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.video-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.video-meta {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.video-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.gallery-cta {
  background: var(--bg-light);
  padding: 60px 40px;
  border-radius: var(--border-radius);
  margin-top: 60px;
}

.gallery-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.gallery-cta p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: 30px;
  z-index: 996;
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}

.back-to-top i {
  font-size: 24px;
  color: var(--text-white);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--gradient-secondary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

/* Tablet Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .navbar {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    z-index: 999;
  }
  
  .navbar.navbar-mobile {
    top: 70px;
  }
  
  .navbar ul {
    flex-direction: column;
    padding: 20px 0;
  }
  
  .navbar a {
    padding: 15px 30px;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  
  .hero-section {
    padding: 100px 0 60px;
    background-attachment: scroll;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .gallery-hero {
    padding: 120px 0 80px;
  }
  
  .gallery-hero-title {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .filter-btn {
    margin: 0 5px 10px 0;
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .gallery-cta {
    padding: 40px 20px;
  }
  
  .gallery-cta h3 {
    font-size: 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .service-card,
  .team-card,
  .testimonial-card {
    margin-bottom: 20px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

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

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out;
}

/* Print Styles */
@media print {
  .navbar,
  .mobile-nav-toggle,
  .back-to-top,
  .hero-section,
  .gallery-filters,
  .video-wrapper {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  .section-padding {
    padding: 20px 0;
  }
}