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

/* CSS Variables */
:root {
  /* Color Palette */
  --background: 36 33% 95%;
  --foreground: 0 0% 8%;
  --card: 36 30% 92%;
  --card-foreground: 0 0% 15%;
  --popover: 36 33% 95%;
  --popover-foreground: 0 0% 15%;
  --primary: 0 0% 15%;
  --primary-foreground: 36 33% 95%;
  --secondary: 36 25% 88%;
  --secondary-foreground: 0 0% 15%;
  --muted: 36 20% 90%;
  --muted-foreground: 0 0% 40%;
  --accent: 43 72% 55%;
  --accent-foreground: 0 0% 10%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 36 20% 85%;
  --input: 36 20% 85%;
  --ring: 43 72% 55%;
  --radius: 0.25rem;
  
  /* Brand Colors */
  --gold: 43 72% 55%;
  --gold-light: 43 60% 70%;
  --gold-dark: 43 80% 40%;
  --cream: 36 33% 95%;
  --cream-dark: 36 25% 88%;
  --charcoal: 0 0% 15%;
  --charcoal-light: 0 0% 30%;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
  --font-brand: 'Poppins', sans-serif;
  
  /* Spacing */
  --container-padding: 2rem;
  --section-spacing: 6rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

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

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

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.nav-logo:hover .brand-text {
  color: hsl(var(--gold));
}

.nav-logo .logo-img {
  height: 48px;
  width: auto;
  transition: height 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.nav-logo .brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #2B2B2B;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: font-size 0.3s ease;
  text-transform: uppercase;
}

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

.nav-link {
  color: #2B2B2B;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #2B2B2B;
}

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

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

.nav-link.active {
  color: #2B2B2B;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: #2B2B2B;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsl(var(--charcoal) / 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--cream-dark));
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: hsl(var(--cream));
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title-gold {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: hsl(var(--gold));
  line-height: 1;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--cream) / 0.8);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

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

.btn-primary:hover {
  background-color: hsl(var(--gold-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  border: 2px solid hsl(var(--cream));
  color: hsl(var(--cream));
}

.btn-secondary:hover {
  background-color: hsl(var(--cream));
  color: hsl(var(--charcoal));
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: hsl(var(--gold));
  color: hsl(var(--charcoal));
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Section Styles */
section {
  padding: var(--section-spacing) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--gold));
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.section-divider {
  width: 4rem;
  height: 2px;
  background-color: hsl(var(--gold));
  margin: 0 auto;
}

.text-gold {
  color: hsl(var(--gold));
}

/* About Section */
.about-section {
  background-color: hsl(var(--background));
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}

.experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: hsl(var(--gold));
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
}

.experience-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--charcoal));
}

.experience-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--charcoal));
}

.about-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.feature-dot {
  width: 8px;
  height: 8px;
  background-color: hsl(var(--gold));
  border-radius: 50%;
  flex-shrink: 0;
}

/* Services Section */
.services-section {
  background-color: hsl(var(--secondary));
}

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

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: hsl(var(--gold));
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  max-width: 100%;
  min-height: 150px;
}

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

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.service-description {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

/* Portfolio Section */
.portfolio-section {
  background-color: hsl(var(--background));
}

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

.portfolio-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, hsl(var(--charcoal) / 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

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

.portfolio-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--cream));
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--cream) / 0.8);
}

/* Process Section */
.process-section {
  background-color: hsl(var(--secondary));
}

.process-timeline {
  display: grid;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

.process-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--gold));
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.process-step p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

/* Testimonials Section */
.testimonials-section {
  background-color: hsl(var(--background));
}

.testimonials-slider {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-slider {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.testimonial-card {
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.testimonial-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Contact Section */
.contact-section {
  background-color: hsl(var(--secondary));
}

.contact-grid {
  display: grid;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
  transition: all 0.3s ease;
}

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

.contact-icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid hsl(var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.contact-link:hover .contact-icon {
  background-color: hsl(var(--gold));
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--gold));
  transition: color 0.3s ease;
}

.contact-link:hover .contact-icon svg {
  color: hsl(var(--charcoal));
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.contact-value {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.map-container {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background-color: hsl(var(--background));
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.contact-form > p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--gold));
  box-shadow: 0 0 0 3px hsl(var(--gold) / 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.error-message {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: hsl(var(--destructive));
  margin-top: 0.25rem;
  min-height: 1rem;
}

/* Footer */
.footer {
  background-color: hsl(var(--charcoal));
  color: hsl(var(--cream));
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-logo p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--cream) / 0.8);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--cream));
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--cream) / 0.8);
  transition: color 0.3s ease;
}

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

.footer-contact p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--cream) / 0.8);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: hsl(var(--cream) / 0.8);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: hsl(var(--gold));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--cream) / 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--cream) / 0.6);
}

/* Call Now Float Button */
.call-float {
  position: fixed;
  bottom: 7.5rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #333333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(51, 51, 51, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(51, 51, 51, 0.4);
  background-color: #000000;
}

.call-float svg {
  width: 1.25rem;
  height: 1.25rem;
}

.call-float span {
  display: none;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: hsl(var(--charcoal));
  color: hsl(var(--cream));
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-content svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--gold));
}

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

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

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

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

/* AOS Animation Classes */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Large Desktop Responsive */
@media (min-width: 1400px) {
  .nav-logo .logo-img {
    height: 52px;
  }
  
  .nav-logo .brand-text {
    font-size: 1.375rem;
  }
  
  .nav-content {
    padding: 1rem var(--container-padding);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .nav-content {
    padding: 0.875rem var(--container-padding);
  }
  
  .nav-logo .logo-img {
    height: 44px;
  }
  
  .nav-logo .brand-text {
    font-size: 1.125rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }

  .footer-logo img {
    height: 55px;
  }
}

/* Medium Tablet Responsive */
@media (max-width: 900px) {
  .nav-logo .logo-img {
    height: 42px;
  }
  
  .nav-logo .brand-text {
    font-size: 1.0625rem;
  }
  
  .nav-menu {
    gap: 1.25rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

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

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-logo .logo-img {
    height: 40px;
  }
  
  .nav-logo .brand-text {
    font-size: 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

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

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

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

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

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

  .footer-logo img {
    height: 50px;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }

  .call-float {
    bottom: 6rem;
    right: 1rem;
    width: 3.25rem;
    height: 3.25rem;
  }

  .call-float svg {
    width: 1.125rem;
    height: 1.125rem;
  }

  .whatsapp-float svg {
    width: 1.375rem;
    height: 1.375rem;
  }

  .toast {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    transform: translateY(-100px);
  }

  .toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hero-title,
  .hero-title-gold {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .nav-logo .logo-img {
    height: 36px;
  }
  
  .nav-logo .brand-text {
    font-size: 0.9375rem;
    letter-spacing: 0.06em;
  }

  .call-float {
    bottom: 5.5rem;
    width: 3rem;
    height: 3rem;
  }

  .call-float svg {
    width: 1rem;
    height: 1rem;
  }

  .whatsapp-float {
    width: 3rem;
    height: 3rem;
  }

  .whatsapp-float svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .footer-logo img {
    height: 45px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .nav-toggle,
  .whatsapp-float,
  .call-float,
  .toast,
  .hero-actions {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  section {
    padding: 2rem 0;
  }

  .footer {
    background-color: transparent;
    color: black;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --gold: 43 72% 40%;
    --cream: 36 33% 85%;
    --charcoal: 0 0% 5%;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
