/* CSS Variables */
:root {
  --font-size: 16px;
  --background: #fffbf5;
  --foreground: #2c2c2c;
  --card: #fff;
  --card-foreground: #2c2c2c;
  --popover: oklch(1 0 0);
  --popover-foreground: #2c2c2c;
  --primary: #c9a050;
  --primary-foreground: #fff;
  --secondary: #f5efe6;
  --secondary-foreground: #2c2c2c;
  --muted: #f5efe6;
  --muted-foreground: #6b6b6b;
  --accent: #c9a050;
  --accent-foreground: #fff;
  --destructive: #d4183d;
  --destructive-foreground: #fff;
  --border: rgba(201, 160, 80, 0.2);
  --input: transparent;
  --input-background: #fff;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: #c9a050;
  --radius: 0.625rem;
  --spacing: 0.25rem;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: var(--font-weight-medium);
}

/* Container */
.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 40rem) {
  .container {
    max-width: 40rem;
  }
}

@media (min-width: 48rem) {
  .container {
    max-width: 48rem;
  }
}

@media (min-width: 64rem) {
  .container {
    max-width: 64rem;
  }
}

@media (min-width: 80rem) {
  .container {
    max-width: 80rem;
  }
}

@media (min-width: 96rem) {
  .container {
    max-width: 96rem;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo h3 {
  font-size: 1.25rem;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header.scrolled .logo h3 {
  color: var(--foreground);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 48rem) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: color 0.3s ease;
}

.header.scrolled .nav-link {
  color: var(--foreground);
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (min-width: 48rem) {
  .mobile-menu-btn {
    display: none;
  }
}

.header.scrolled .mobile-menu-btn {
  color: var(--foreground);
}

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  background: white;
  border-top: 1px solid var(--border);
  transition: max-height 0.3s ease;
}

.mobile-nav.open {
  max-height: 300px;
}

.mobile-nav-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  background: none;
  border: none;
  text-align: left;
  padding: 0.5rem 0;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(201, 160, 80, 0.3);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  text-align: left;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.chef-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  animation: wiggle 2s infinite;
  animation-delay: 3s;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

.hero-badge span {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.hero-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

@media (min-width: 48rem) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle span {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 48rem) {
  .hero-subtitle span {
    font-size: 1.5rem;
  }
}

.separator {
  color: var(--primary);
  margin: 0 0.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 40rem) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid white;
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 9999px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1.5rem 2rem;
  font-size: 1rem;
}

.btn-primary:hover {
  background: rgba(201, 160, 80, 0.9);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
  padding: 1.5rem 2rem;
  font-size: 1rem;
}

.btn-outline:hover {
  background: white;
  color: var(--foreground);
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 1.5rem 2rem;
  font-size: 1rem;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  width: 100%;
  padding: 0.75rem 1rem;
}

.btn-whatsapp:hover {
  background: #128c7e;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
  font-size: 0.875rem;
}

.section-title {
  font-size: 2.25rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 48rem) {
  .section-title {
    font-size: 3rem;
  }
}

.section-divider {
  width: 6rem;
  height: 4px;
  background: var(--primary);
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: white;
}

.about-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 48rem) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
}

.image-decoration {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 12rem;
  height: 12rem;
  background: rgba(201, 160, 80, 0.1);
  border-radius: 0.5rem;
  z-index: -1;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.quote-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  max-width: 20rem;
}

.quote-text {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.quote-author {
  text-align: right;
  font-family: 'Playfair Display', serif;
}

.about-text h3 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: rgba(44, 44, 44, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.education-section {
  margin-top: 5rem;
}

.education-section h3 {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 3rem;
}

.education-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 48rem) {
  .education-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.education-card {
  background: var(--secondary);
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
}

.education-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.education-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.education-card h4 {
  margin-bottom: 0.5rem;
}

.education-card p {
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 0.5rem;
}

.education-year {
  color: var(--primary);
}

/* Experience Section */
.experience-section {
  background: var(--secondary);
}

.experience-timeline {
  max-width: 64rem;
  margin: 0 auto 5rem;
}

.experience-item {
  margin-bottom: 3rem;
}

.experience-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.experience-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.experience-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.experience-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.experience-info {
  flex: 1;
}

.experience-title-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

@media (min-width: 48rem) {
  .experience-title-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.experience-title-row h3 {
  font-size: 1.5rem;
}

.experience-period {
  color: var(--primary);
}

.experience-info h4 {
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 1rem;
}

.experience-card p {
  color: rgba(44, 44, 44, 0.8);
  margin-bottom: 1rem;
}

.achievements {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.achievement-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.achievement-item p {
  color: rgba(44, 44, 44, 0.7);
  margin: 0;
}

.projects-section {
  margin-bottom: 5rem;
}

.projects-section h3 {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 3rem;
}

.projects-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 48rem) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.project-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.project-card h4 {
  margin-bottom: 0.5rem;
}

.project-org {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.project-card p:last-child {
  color: rgba(44, 44, 44, 0.7);
}

.certifications-section {
  margin-bottom: 5rem;
}

.certifications-section h3 {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 3rem;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 64rem;
  margin: 0 auto;
}

.certification-badge {
  background: white;
  color: var(--foreground);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: default;
}

.certification-badge:hover {
  background: var(--primary);
  color: white;
}

.impact-highlight {
  background: var(--primary);
  color: white;
  padding: 3rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.impact-highlight h3 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 48rem) {
  .impact-highlight h3 {
    font-size: 3rem;
  }
}

.impact-highlight p {
  font-size: 1.25rem;
}

.photo-gallery h3 {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 48rem) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 160, 80, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(201, 160, 80, 0.2);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--secondary);
}

.testimonials-container {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

@media (min-width: 48rem) {
  .testimonial-card {
    padding: 3rem;
  }
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.star.filled {
  fill: var(--primary);
}

.testimonial-text {
  font-size: 1.25rem;
  color: rgba(44, 44, 44, 0.8);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.625;
}

.testimonial-author h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--primary);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--primary);
  color: white;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  width: 2rem;
}

/* Company Section */
.company-section {
  background: white;
}

.mission-vision {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 48rem) {
  .mission-vision {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mission-card,
.vision-card {
  background: var(--secondary);
  padding: 2rem;
  border-radius: 0.5rem;
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
  color: rgba(44, 44, 44, 0.8);
  line-height: 1.625;
}

.services-section {
  margin-bottom: 4rem;
}

.services-section h3 {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 48rem) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  border: 2px solid var(--border);
  padding: 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(201, 160, 80, 0.1);
  color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(44, 44, 44, 0.7);
}

.facilities-section {
  margin-bottom: 4rem;
}

.facilities-section h3 {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 3rem;
}

.facilities-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 48rem) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.facility-card {
  position: relative;
  height: 20rem;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.facility-card:hover {
  transform: scale(1.02);
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-card:hover img {
  transform: scale(1.1);
}

.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.facility-overlay h4 {
  color: white;
  font-size: 1.25rem;
}

.enrollment-cta {
  background: linear-gradient(to right, var(--primary), rgba(201, 160, 80, 0.8));
  color: white;
  padding: 3rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.enrollment-cta h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 48rem) {
  .enrollment-cta h3 {
    font-size: 2.25rem;
  }
}

.enrollment-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 48rem) {
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-info-card {
  background: var(--secondary);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

.contact-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin: 0 auto 0.75rem;
}

.contact-info-card h4 {
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: rgba(44, 44, 44, 0.7);
}

/* Contact Section */
.contact-section {
  background: white;
}

.contact-content {
  display: grid;
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 48rem) {
  .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info h3 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(201, 160, 80, 0.1);
  color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail h4 {
  margin-bottom: 0.5rem;
}

.contact-detail p {
  color: rgba(44, 44, 44, 0.7);
  margin: 0;
}

.download-cv-btn {
  width: 100%;
  margin-bottom: 2rem;
}

@media (min-width: 40rem) {
  .download-cv-btn {
    width: auto;
  }
}

.social-links h4 {
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(201, 160, 80, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-medium);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: var(--input-background);
  font-size: 1rem;
  transition: all 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 1.5rem;
  font-size: 1rem;
}

.whatsapp-contact {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(37, 211, 102, 0.1);
  border: 2px solid rgba(37, 211, 102, 0.2);
  border-radius: 0.5rem;
}

.whatsapp-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #25d366;
}

.whatsapp-header h4 {
  color: #166534;
}

.whatsapp-contact p {
  color: #15803d;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--foreground);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 48rem) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.footer-brand h3 {
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.625;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: left;
}

.footer-links button:hover {
  color: var(--primary);
}

.footer-contact h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.heart-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  fill: var(--primary);
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  background: #10b981;
}

.toast.error {
  background: var(--destructive);
}

.toast.info {
  background: #3b82f6;
}

/* Animations */
@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);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation classes */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.5s ease-out;
}

/* Responsive Design */
@media (max-width: 47.99rem) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .testimonial-nav {
    margin-top: 1.5rem;
  }
  
  .nav-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
  border-color: var(--destructive);
  box-shadow: 0 0 0 3px rgba(212, 24, 61, 0.1);
}

.field-error {
  color: var(--destructive);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* Icon styles */
.chef-icon,
.education-icon,
.experience-icon,
.project-icon,
.service-icon,
.card-icon,
.contact-icon,
.contact-detail-icon,
.footer-icon,
.whatsapp-icon,
.social-icon span,
.heart-icon {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
}

.chef-icon {
  font-size: 3rem;
  animation: wiggle 2s infinite;
  animation-delay: 3s;
}

.education-icon,
.experience-icon,
.project-icon {
  font-size: 3rem;
}

.service-icon,
.card-icon {
  font-size: 4rem;
}

.contact-icon,
.contact-detail-icon {
  font-size: 2rem;
}

.footer-icon {
  font-size: 2rem;
}

.whatsapp-icon {
  font-size: 1.5rem;
}

.social-icon span {
  font-size: 1.25rem;
}

.heart-icon {
  font-size: 1rem;
}

/* Star rating styles */
.star {
  font-size: 1.5rem;
  color: var(--primary);
}

.star.filled {
  color: var(--primary);
}

/* Navigation button styles */
.nav-btn span {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Mobile menu icons */
.menu-icon,
.close-icon {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Focus styles for accessibility */
button:focus,
[role="button"]:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary: #000;
    --background: #fff;
    --foreground: #000;
    --border: #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .particle {
    display: none;
  }
  
  .chef-icon {
    animation: none;
  }
}

/* Print styles */
@media print {
  .header,
  .hero-section,
  .testimonials-section,
  .footer,
  .particles,
  .scroll-indicator,
  .btn,
  .mobile-menu-btn,
  .testimonial-nav,
  .testimonial-dots {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: none;
    padding: 0;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }
}
