/* Variables */
:root {
  --primary: #ff5e32;
  --secondary: #b9ac38;
  --text: #5c4033;
  --text-light: #8b6b5c;
  --background: #fff9f0;
  --surface: #fffaf5;
  --accent: #ffd1d9;
  --title: #ff88be;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  --border-radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Syne", sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Cursor */

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 249, 240, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 64, 51, 0.1);
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.nav-brand .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -1px;
}

.nav-brand .logo img {
  height: 120px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding-right: var(--spacing-xs);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-social-link {
  color: var(--text);
  font-size: 1.2rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-decoration: none;
}

.nav-social-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 1rem var(--spacing-md); /* Further reduced top padding */
  display: flex;
  align-items: center;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  padding-top: 0;
}

.greeting {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgb(255, 243, 193);
  border-radius: 100px;
  color: rgb(122, 59, 0);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  transform: translateY(30px);
  opacity: 0;
  animation: 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards fadeInUp;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: #2d1f1a;
  text-shadow: 0 2px 8px #fff9f0;
}

.gradient-text {
  background: linear-gradient(135deg, #ff5e32 60%, #ff88be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #2d1f1a;
  text-shadow: 0 2px 8px #fff9f0;
}

.outline-text {
  -webkit-text-stroke: 2px #2d1f1a;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.8;
  filter: blur(40px);
  animation: pulse 8s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 20%;
  animation: float 12s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 30%;
  animation: float 10s ease-in-out infinite;
  animation-delay: -5s;
}

/* Work Section */
.work {
  padding: 3rem var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.work-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 var(--spacing-lg);
  margin-bottom: 2rem;
  width: 100%;
}

.work-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  will-change: transform;
  touch-action: pan-y pinch-zoom;
  position: relative;
}

.work-slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  min-width: 100%;
  width: 100%;
  padding: 0 var(--spacing-md);
  flex-shrink: 0;
  box-sizing: border-box;
}

.work-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: var(--surface);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.work-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  max-height: 250px;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-content {
  padding: var(--spacing-md);
  background: var(--surface);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-category {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3a2200;
  margin-bottom: var(--spacing-xs);
  display: inline-block;
  background: none;
}

.work-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
  transition: var(--transition);
}

.work-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  flex: 1;
}

.work-links {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-top: auto;
}

.work-link {
  color: #b93a00;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.work-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

/* Work Item Hover Effects */
.work-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.work-item:hover .work-image img {
  transform: scale(1.1);
}

.work-item:hover .work-content h3 {
  color: var(--primary);
}

.work-link:hover {
  color: var(--secondary);
}

.work-link:hover i {
  transform: translateX(5px);
}

/* Slider Navigation */
.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 var(--spacing-md);
}

.slider-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--text);
  border-radius: 2rem;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: var(--text-light);
  color: var(--text-light);
}

.slider-nav:not(:disabled):hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(0);
}

.slider-nav.prev:not(:disabled):hover {
  transform: translateX(-5px);
}

.slider-nav.next:not(:disabled):hover {
  transform: translateX(5px);
}

.nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.slider-nav:not(:disabled):hover .nav-arrow {
  transform: scale(1.2);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 2rem;
}

.dot {
  padding: 0;
  width: 2.5rem;
  height: 0.25rem;
  background: var(--text-light);
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.3;
}

.dot.active {
  background: var(--primary);
  width: 3.5rem;
  opacity: 1;
}

.dot:hover:not(.active) {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .work-slide {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .work-item {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .work-slide {
    padding: 0;
    margin-right: var(--spacing-md);
  }

  .slider-nav {
    padding: 0.75rem;
  }

  .nav-text {
    display: none;
  }

  .dot {
    width: 2rem;
  }

  .dot.active {
    width: 2.5rem;
  }
}

@media (max-width: 480px) {
  .work-slider-container {
    padding: 0 1rem;
    overflow: hidden;
  }
  .work-slide {
    padding: 0;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    min-width: 100%;
    width: 100%;
    margin-right: var(--spacing-md);
    box-sizing: border-box;
  }
  .work-item {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 1.5rem auto;
    box-sizing: border-box;
  }
  .work-image {
    max-height: 180px;
  }
  .work-image img {
    object-fit: cover;
    object-position: top;
  }
  .work-content {
    padding: var(--spacing-sm);
  }
  .work-content h3 {
    font-size: 1.1rem;
  }
  .work-content p {
    font-size: 0.85rem;
  }
  .slider-navigation {
    margin-top: 2rem;
    gap: 1rem;
  }
  .slider-nav {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .slider-dots {
    margin: 0 1rem;
  }
  .dot {
    width: 2rem;
  }
  .dot.active {
    width: 2.5rem;
  }
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--background);
  position: relative;
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-label {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7a3b00;
  background: #fff3c1;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.owner-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.owner-info {
  position: relative;
}

.owner-photo-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  max-height: 450px;
}

.owner-photo-wrapper:hover {
  transform: translateY(-5px);
}

.owner-photo {
  width: 100%;
  height: 450px;
  display: block;
  transition: var(--transition);
  object-fit: cover;
  object-position: top center;
}

.owner-photo:hover {
  transform: scale(1.02);
}

.owner-social {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
  color: var(--background);
  font-size: 1.4rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0.9;
}

.social-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
  opacity: 1;
}

.owner-details {
  margin-top: 2rem;
  text-align: center;
}

.owner-details h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.owner-role {
  display: block;
  font-size: 1.1rem;
  color: #2d1f1a;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px #fff9f0;
}

.owner-quote {
  position: relative;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.owner-quote i {
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.owner-quote p {
  font-style: italic;
  color: var(--text);
}

.owner-message {
  padding: 2rem;
}

.highlight-paragraph {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2rem;
  font-weight: 500;
}

.owner-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(92, 64, 51, 0.1);
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.cta-container {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .owner-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .owner-photo-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .owner-values {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .about {
    padding: 4rem 0;
  }

  .owner-values {
    grid-template-columns: 1fr;
  }

  .cta-container {
    flex-direction: column;
  }

  .highlight-paragraph {
    font-size: 1.2rem;
  }

  .owner-photo-wrapper {
    max-width: 300px;
  }

  .owner-photo {
    height: 400px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .owner-photo-wrapper {
    max-width: 250px;
  }

  .owner-details h3 {
    font-size: 1.6rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* Contact Section */
.contact {
  padding: 3rem var(--spacing-md) 3rem var(--spacing-md);
  background: var(--surface);
  min-height: auto;
}

.contact-container {
  margin: 0 auto;
  background: var(--background);
  border-radius: var(--border-radius);
  padding: 3rem;
  border: 1px solid rgba(92, 64, 51, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #fff3c1;
  color: #7a3b00;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--title));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

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

.contact-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.quick-contact {
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.contact-info p {
  color: var(--text-secondary);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: var(--background-color);
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn i {
  font-size: 1.25rem;
}

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

.social-connect p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--background-color);
  color: var(--text-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form {
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background: var(--background);
  border: 1px solid rgba(92, 64, 51, 0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  transition: var(--transition);
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(255, 94, 50, 0.1);
}

.contact-form .submit-btn {
  background: var(--primary);
  color: var(--background);
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 0.5rem;
}

.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 94, 50, 0.2);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact {
    padding: 2rem var(--spacing-sm);
  }

  .contact-container {
    padding: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border: 2px solid var(--primary);
  text-shadow: none;
}

.btn-primary:hover {
  background: #7a3b00;
  border-color: #7a3b00;
  color: #fff;
}

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

.btn:hover {
  transform: translateY(-2px);
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

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

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1001;
}

.scroll-progress-bar {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-split,
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

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

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

/* Portfolio Section Styles */
.section-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #fff3c1;
  color: #7a3b00;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.work .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.work .section-title {
  font-size: 3.2rem;
  margin: 1rem 0;
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
}

.work-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-filter {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 2rem;
  background: transparent;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-filter .filter-count {
  background: var(--bg-secondary);
  color: var(--text-color);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.category-filter:hover,
.category-filter.active {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--bg-color);
}

.category-filter:hover .filter-count,
.category-filter.active .filter-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--bg-color);
}

.category-filter:hover .filter-count,
.category-filter.active .filter-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--bg-color);
}

/* Slider Navigation */
.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.nav-text {
  font-weight: 500;
}

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

  .slider-nav .nav-text {
    display: none;
  }

  .slider-nav {
    padding: 0.75rem;
  }

  .category-filter {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Footer */
.footer {
  background: var(--surface);
  padding: 2rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(92, 64, 51, 0.1);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--primary), var(--title));
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(80px);
  z-index: 0;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
}

.footer-brand .logo img {
  height: 150px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.footer-brand p {
  color: var(--text-light);
  max-width: 300px;
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: 1rem;
}

.footer-social a {
  color: var(--text);
  font-size: 1.2rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-social i {
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
  padding-top: 40px;
}

.footer-nav {
  display: flex;
  gap: 3rem;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.copyright {
  color: var(--text-light);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links {
    align-items: center;
    gap: 1.5rem;
  }

  .footer-nav {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    gap: 1.5rem;
  }

  .footer-nav a {
    font-size: 1rem;
  }
}

/* Services Help Section */
.services-help {
  padding: 5rem 0;
  background: var(--surface);
}
.services-help-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Services Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 3rem;
  align-items: start;
}

.services-header {
  position: sticky;
  top: 2rem;
  align-self: flex-start;
}

.services-header h2 {
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
}

.services-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 90%;
}

.services-carousel-container {
  position: relative;
}

.services-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

/* Ensure carousel works well on mobile */
@media (max-width: 768px) {
  .services-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding: 0;
  }

  .service-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .services-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0;
  }

  .service-card {
    scroll-snap-align: start;
  }
}

/* Service Cards Styles */
.service-card {
  flex: 0 0 330px;
  scroll-snap-align: start;
  background: var(--background);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(92, 64, 51, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  color: var(--text);
  font-weight: 700;
  transition: color 0.3s ease;
}

.service-desc {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
  transition: color 0.3s ease;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-nav {
  background: var(--background);
  border: 1px solid rgba(92, 64, 51, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  background: var(--primary);
  color: white;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.carousel-dot.active {
  opacity: 1;
}

/* Mobile optimizations for service cards */
@media (max-width: 768px) {
  .service-card {
    flex: 0 0 280px;
    padding: 1.5rem 1rem;
    min-width: 280px;
  }

  .service-icon {
    font-size: 1.8rem;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-desc {
    font-size: 0.95rem;
  }

  .services-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 0 0 260px;
    padding: 1.2rem 0.8rem;
    min-width: 260px;
  }

  .service-icon {
    font-size: 1.6rem;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-desc {
    font-size: 0.9rem;
  }

  .carousel-controls {
    margin-top: 1.5rem;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
  }

  .services-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
}

/* Mobile Responsive Layout */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-header {
    position: static;
    text-align: center;
    margin-bottom: 2rem;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }

  .services-header p {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .services-header .btn {
    margin: 0 auto;
    display: inline-flex;
  }

  .services-carousel {
    gap: 1.5rem;
    padding: 0;
  }

  .services-carousel-container {
    width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .services-help {
    padding: 3rem 0;
  }

  .services-help-content {
    padding: 0 1rem;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }

  .services-header p {
    font-size: 1rem;
  }

  .services-header .btn {
    margin: 0 auto;
    display: inline-flex;
  }

  .services-carousel {
    gap: 1rem;
    padding: 0;
  }

  .services-carousel-container {
    width: 100%;
    overflow: hidden;
  }
}

/* Language Switcher Improved Styles */
.language-switch {
  display: flex;
  background: var(--surface);
  border-radius: 999px;
  padding: 0.15rem 0.1rem;
  box-shadow: 0 1px 4px rgba(92, 64, 51, 0.04);
  align-items: center;
  border: 1px solid rgba(92, 64, 51, 0.08);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 94, 50, 0.08);
}

.lang-btn:not(.active):hover {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 600px) {
  .language-switch {
    padding: 0.1rem 0.15rem;
  }
  .lang-btn {
    font-size: 0.95rem;
    padding: 0.25rem 0.7rem;
  }
}

/* Responsive Design System */
/* Large Desktops (1440px and up) */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .hero-split {
    gap: var(--spacing-xl);
  }

  .section-header h2 {
    font-size: 3.5rem;
  }
}

/* Desktops (1024px to 1439px) */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .hero-visual {
    min-height: 400px;
  }

  .work-slide {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .owner-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .owner-photo-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .owner-values {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-header {
    position: relative;
    top: 0;
    text-align: center;
  }

  .services-header .btn {
    margin: 0 auto;
  }
}

/* Tablets (768px to 1023px) */
@media (max-width: 768px) {
  .main-nav {
    padding: var(--spacing-xs) var(--spacing-sm);
    height: 80px;
    min-height: 80px;
    max-height: 80px;
  }

  .nav-brand .logo img {
    height: 80px;
  }

  .nav-cta {
    gap: var(--spacing-xs);
  }

  .nav-social {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-right: var(--spacing-xs);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-social-link {
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
  }

  .language-switch {
    display: flex;
  }

  .lang-btn {
    font-size: 0.9rem;
    padding: 0.25rem 0.6rem;
  }

  .hero {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

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

  .about {
    padding: 4rem 0;
  }

  .owner-values {
    grid-template-columns: 1fr;
  }

  .cta-container {
    flex-direction: column;
  }

  .highlight-paragraph {
    font-size: 1.2rem;
  }

  .owner-photo-wrapper {
    max-width: 300px;
  }

  .owner-photo {
    height: 400px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    padding: 4rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links {
    align-items: center;
    gap: 1.5rem;
  }

  .footer-nav {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .work-slide {
    padding: 0;
  }

  .slider-nav {
    padding: 0.75rem;
  }

  .nav-text {
    display: none;
  }

  .dot {
    width: 2rem;
  }

  .dot.active {
    width: 2.5rem;
  }
}

/* Large Phones (480px to 767px) */
@media (max-width: 480px) {
  .privacy-policy-container {
    margin: 2rem auto;
  }

  .privacy-policy-card {
    padding: 1.5rem 1rem;
  }

  .privacy-title {
    font-size: 2rem;
  }

  .main-nav {
    padding: var(--spacing-xs);
  }

  .contact {
    padding: 1.5rem var(--spacing-xs);
  }

  .contact-container {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .contact-form .submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  .nav-links,
  .nav-cta > .nav-social {
    display: none !important;
  }
  .nav-cta {
    gap: 0.5rem;
    flex-direction: row;
    align-items: center;
  }
  .language-switch {
    display: flex !important;
    position: static;
    margin: 0 0.5rem;
    box-shadow: none;
    background: var(--surface);
    border-radius: 999px;
    padding: 0.1rem 0.2rem;
    border: 1px solid rgba(92, 64, 51, 0.08);
  }
  .lang-btn {
    font-size: 0.95rem;
    padding: 0.25rem 0.7rem;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 3px 0;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 249, 240, 0.98);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    opacity: 0;
  }
  .mobile-menu.open {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
  }
  .close-mobile-menu {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text);
    margin: 1.2rem 1.5rem 0 0;
    align-self: flex-end;
    cursor: pointer;
    z-index: 1202;
  }
  .mobile-menu-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
    gap: 2.5rem;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    align-items: center;
  }
  .mobile-nav-links .nav-link {
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    padding: 0.5rem 0;
  }
  .mobile-language-switch {
    display: none !important;
  }
  .mobile-nav-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
  }
  .mobile-nav-social .nav-social-link {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    color: var(--text);
    background: none;
  }
}

/* Small Phones (320px to 479px) */
@media (max-width: 320px) {
  .privacy-policy-container {
    margin: 1rem auto;
    padding: 0 1rem;
  }

  .privacy-policy-card {
    padding: 1rem 0.75rem;
  }

  .privacy-title {
    font-size: 1.75rem;
  }

  .privacy-policy-card h2 {
    font-size: 1.2rem;
  }

  .privacy-policy-card p,
  .privacy-policy-card ul {
    font-size: 1rem;
  }

  .privacy-back-btn {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

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

  .section-header h2 {
    font-size: 1.6rem;
  }

  .owner-photo-wrapper {
    max-width: 200px;
  }

  .owner-photo {
    height: 300px;
  }

  .footer-nav {
    gap: 1rem;
  }

  .footer-nav a {
    font-size: 0.9rem;
  }

  .contact {
    padding: 1rem 0.5rem;
  }

  .contact-container {
    padding: 1rem;
  }

  .contact-form {
    padding: 0.75rem;
  }

  .contact-title {
    font-size: 1.75rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .contact-form .submit-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

.hamburger {
  display: none;
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
  }
  .hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #7a3b00;
    border-radius: 2px;
    transition: all 0.3s;
  }
}

@media (min-width: 1025px) {
  .hamburger {
    display: none !important;
  }
}

/* Reduce hero-title font size only for PT version to fit 'com Propósito' on one line */
html[lang="pt-BR"] .hero-title {
  font-size: 2rem;
}

@media (min-width: 600px) {
  html[lang="pt-BR"] .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 900px) {
  html[lang="pt-BR"] .hero-title {
    font-size: 4rem;
  }
}

/* Simple Image Overlay */
.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.image-overlay.show {
  display: flex;
}

.overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.overlay-close:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.overlay-image {
  max-width: 60%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Responsive adjustments for balanced image size */
@media (max-width: 768px) {
  .overlay-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
  }

  .overlay-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .overlay-image {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
  }

  .overlay-close {
    top: 0.25rem;
    right: 0.25rem;
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

/* Portfolio image cursor */
.portfolio-image {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-image:hover {
  transform: scale(1.02);
}

/* Portfolio image zoom indicator */

.work-image::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 5;
}

.work-image:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Mobile zoom indicator adjustments */
@media (max-width: 768px) {
  .work-image::after {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    top: 0.5rem;
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .work-image::after {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
    top: 0.25rem;
    right: 0.25rem;
  }
}

/* Pricing Section Styles */
.packages {
  padding: 4rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.packages::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  opacity: 0.03;
  filter: blur(80px);
  z-index: 0;
}

.packages-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 1;
}

.packages-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.packages-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #fff3c1;
  color: #7a3b00;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 1px;
}

.packages-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--title));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  font-weight: 700;
}

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

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 320px;
  margin: 0 auto;
}

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

.package-card-top {
  position: relative;
  padding: 1.5rem 1.25rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.package-card.starter .package-card-top {
  background: linear-gradient(135deg, var(--title) 0%, var(--accent) 100%);
}

.package-card.pro .package-card-top {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.package-card.shop .package-card-top {
  background: linear-gradient(135deg, var(--primary) 0%, var(--title) 100%);
}

.package-badge {
  background: white;
  color: var(--text);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.package-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.package-icon i {
  color: white;
  font-size: 1rem;
}

.package-card-bottom {
  padding: 1.5rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.package-description {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.package-price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.package-description {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  position: relative;
  padding-left: 0;
}

.package-features li:hover {
  color: var(--primary);
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.hosting-info {
  background: rgba(255, 243, 193, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.hosting-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.hosting-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hosting-info ul {
  list-style: none;
  margin-bottom: 1rem;
}

.hosting-info ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 0.25rem 0;
  line-height: 1.4;
}

.domain-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(92, 64, 51, 0.1);
}

.add-ons-section {
  background: var(--surface);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(92, 64, 51, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.add-ons-section h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 2.5rem;
}

.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.add-on-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--background);
  border-radius: 12px;
  border: 1px solid rgba(92, 64, 51, 0.08);
  transition: all 0.3s ease;
}

.add-on-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.add-on-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.add-on-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.packages-cta {
  padding: 2rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.packages-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}

.cta-text {
  flex: 1;
  max-width: 70%;
}

.packages-cta h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: left;
}

.packages-cta p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 500px;
  text-align: left;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn-primary {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  pointer-events: auto;
}

.cta-buttons .btn-primary:hover {
  background: #e54d1a;
  border-color: #e54d1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 94, 50, 0.3);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  pointer-events: auto;
}

.cta-buttons .btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 94, 50, 0.3);
}

.pricing-note {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(92, 64, 51, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pricing-note h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.pricing-note p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive Design for Pricing Section */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem;
  }

  .packages-title {
    font-size: 2rem;
  }

  .add-ons-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .packages-cta {
    padding: 3rem 2rem;
  }

  .packages-cta h3 {
    font-size: 1.8rem;
  }

  .packages-cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .packages {
    padding: 4rem 0;
  }

  .packages-container {
    padding: 0 var(--spacing-sm);
  }

  .packages-header {
    margin-bottom: 3rem;
  }

  .packages-title {
    font-size: 1.8rem;
  }

  .packages-subtitle {
    font-size: 1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .package-card {
    margin-bottom: 1rem;
  }

  .package-card-top {
    padding: 1.5rem 1rem 1rem;
  }

  .package-card-bottom {
    padding: 1.5rem 1rem;
  }

  .package-name {
    font-size: 1.1rem;
  }

  .price {
    font-size: 2rem;
  }

  .add-ons-section {
    padding: 2rem 1.5rem;
  }

  .add-ons-section h3 {
    font-size: 1.6rem;
  }

  .add-ons-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .packages-cta {
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-text {
    max-width: 100%;
  }

  .packages-cta h3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .packages-cta p {
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .pricing-note {
    padding: 2rem 1.5rem;
  }

  .pricing-note h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .packages {
    padding: 3rem 0;
  }

  .packages-title {
    font-size: 1.6rem;
  }

  .packages-subtitle {
    font-size: 0.95rem;
  }

  .package-card {
    margin-bottom: 0.5rem;
  }

  .package-card-top {
    padding: 1rem 0.75rem 0.75rem;
  }

  .package-card-bottom {
    padding: 1rem 0.75rem;
  }

  .package-name {
    font-size: 1rem;
  }

  .package-badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }

  .package-icon {
    width: 30px;
    height: 30px;
  }

  .package-icon i {
    font-size: 0.9rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .package-intro {
    font-size: 1rem;
  }

  .package-features li {
    font-size: 0.9rem;
  }

  .hosting-info {
    padding: 1rem;
  }

  .add-ons-section {
    padding: 1.5rem 1rem;
  }

  .add-ons-section h3 {
    font-size: 1.4rem;
  }

  .add-on-item {
    padding: 1rem;
  }

  .packages-cta {
    padding: 2rem 1rem;
  }

  .packages-cta h3 {
    font-size: 1.4rem;
  }

  .packages-cta p {
    font-size: 0.95rem;
  }

  .pricing-note {
    padding: 1.5rem 1rem;
  }

  .pricing-note h4 {
    font-size: 1.1rem;
  }

  .pricing-note p {
    font-size: 0.95rem;
  }
}

/* Animation for package cards */
.package-card {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.package-card:nth-child(1) {
  animation-delay: 0.1s;
}

.package-card:nth-child(2) {
  animation-delay: 0.2s;
}

.package-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Hover effects for interactive elements */
.package-features li {
  cursor: pointer;
}

.add-on-item {
  cursor: pointer;
}

/* Focus states for accessibility */
.package-card:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.add-on-item:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .packages {
    background: white;
  }

  .package-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .packages-cta {
    background: #f5f5f5;
    color: black;
  }
}
