/* ================================
   MAKI FASHION DESIGN - MODERN CSS
   Premium Fashion Website Styling
   ================================ */

/* ========== CSS RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --primary-gold: #D4AF37;
  --royal-blue: #1E3A8A;
  --soft-pink: #FFE4E9;
  --deep-black: #0A0A0A;
  --pure-white: #FFFFFF;
  --light-gray: #F5F5F5;
  --mid-gray: #999999;
  --accent-purple: #8B5CF6;
  --accent-coral: #FF6B6B;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  
  /* Transitions */
  --smooth: all 0.3s ease;
  --smooth-long: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--deep-black);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--pure-white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--smooth);
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--smooth);
}

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

.nav-logo a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--royal-blue);
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-letter {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--royal-blue), var(--accent-purple));
  color: var(--primary-gold);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  transition: var(--smooth);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--royal-blue);
  letter-spacing: 2px;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 2px;
}

.nav-logo a:hover .logo-letter {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--deep-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--smooth);
}

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

.nav-link.cta-btn {
  background: linear-gradient(135deg, var(--royal-blue), var(--accent-purple));
  color: var(--pure-white);
  padding: 12px 30px;
  border-radius: 30px;
}

.nav-link.cta-btn::after {
  display: none;
}

.nav-link.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--deep-black);
  border-radius: 3px;
  transition: var(--smooth);
}

/* ========== HERO SECTION ========== */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(139, 92, 246, 0.8)), 
              url('../imgs/banner.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--pure-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 0.95;
}

.hero-main {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--pure-white), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
}

.hero-description {
  font-size: 20px;
  font-weight: 300;
  margin: 30px 0 40px;
  opacity: 0.9;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), #FFD700);
  color: var(--deep-black);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

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

.btn-outline:hover {
  background: var(--pure-white);
  color: var(--royal-blue);
  transform: translateY(-3px);
}

.btn-light {
  background: var(--pure-white);
  color: var(--royal-blue);
}

.btn-light:hover {
  background: var(--primary-gold);
  color: var(--deep-black);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--pure-white);
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: scale(1.05);
}

.btn-call {
  background: var(--royal-blue);
  color: var(--pure-white);
}

.btn-call:hover {
  background: var(--accent-purple);
}

.btn-gold {
  background: var(--primary-gold);
  color: var(--deep-black);
  font-weight: 700;
}

.btn-gold:hover {
  background: #FFD700;
  transform: translateY(-2px);
}

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

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  width: 3px;
  height: 15px;
  background: var(--pure-white);
  border-radius: 3px;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========== FEATURED SECTION ========== */
.featured {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.featured-card {
  background: var(--pure-white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--smooth);
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.featured-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.featured-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--royal-blue);
}

.featured-card p {
  color: var(--mid-gray);
  font-size: 15px;
  line-height: 1.6;
}

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: var(--smooth-long);
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(139, 92, 246, 0.3));
  opacity: 0;
  transition: var(--smooth);
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.about-text.highlight {
  font-size: 20px;
  font-weight: 500;
  color: var(--royal-blue);
  font-style: italic;
  border-left: 4px solid var(--primary-gold);
  padding-left: 25px;
  margin: 30px 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 25px;
  background: var(--light-gray);
  border-radius: 15px;
}

.stat h3 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.stat p {
  font-size: 14px;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== COLLECTIONS SECTION ========== */
.collections {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--pure-white), var(--soft-pink));
}

.collection-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  border: 2px solid var(--royal-blue);
  color: var(--royal-blue);
  background: transparent;
  transition: var(--smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--royal-blue);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.collection-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--smooth);
}

.collection-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.collection-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--smooth-long);
}

.collection-item:hover .collection-image img {
  transform: scale(1.2);
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 30px;
  opacity: 0;
  transition: var(--smooth);
  color: var(--pure-white);
}

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

.collection-overlay h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: var(--smooth);
}

.collection-overlay p {
  font-size: 15px;
  margin-bottom: 20px;
  transform: translateY(20px);
  transition: var(--smooth);
  transition-delay: 0.1s;
}

.collection-overlay .view-btn {
  transform: translateY(20px);
  transition: var(--smooth);
  transition-delay: 0.2s;
}

.collection-item:hover .collection-overlay h3,
.collection-item:hover .collection-overlay p,
.collection-item:hover .collection-overlay .view-btn {
  transform: translateY(0);
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: var(--section-padding);
  background: var(--light-gray);
}

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

.service-card {
  background: var(--pure-white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--smooth-long);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-gold), var(--royal-blue));
  transition: var(--smooth);
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--royal-blue);
}

.service-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin: 25px 0;
}

.service-features li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #555;
  font-size: 14px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 18px;
}

.service-link {
  color: var(--royal-blue);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  margin-top: 15px;
  transition: var(--smooth);
}

.service-link:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--royal-blue), var(--accent-purple));
  color: var(--pure-white);
}

.testimonials .section-label,
.testimonials .section-title {
  color: var(--pure-white);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.testimonial-stars {
  font-size: 24px;
  color: var(--primary-gold);
  margin-bottom: 25px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

.testimonial-author h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pure-white);
  color: var(--royal-blue);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--smooth);
}

.testimonial-btn:hover {
  background: var(--primary-gold);
  color: var(--deep-black);
  transform: scale(1.1);
}

/* ========== VISION SECTION ========== */
.vision {
  padding: var(--section-padding);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.vision-content .highlight {
  font-size: 20px;
  font-weight: 500;
  color: var(--royal-blue);
  font-style: italic;
  border-left: 4px solid var(--primary-gold);
  padding-left: 25px;
  margin: 30px 0;
}

.vision-cta {
  margin-top: 30px;
}

.vision-video {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.vision-video video {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* ========== BOOKING SECTION ========== */
.booking {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: var(--pure-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--royal-blue);
}

.info-card p {
  color: #555;
  line-height: 1.8;
}

.info-card a {
  color: var(--royal-blue);
  font-weight: 500;
  transition: var(--smooth);
}

.info-card a:hover {
  color: var(--primary-gold);
}

.quick-buttons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.quick-buttons .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 140px;
  justify-content: center;
  padding: 14px 20px;
}

.quick-buttons .btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.booking-form-container {
  background: var(--pure-white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--deep-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 2px solid #E5E5E5;
  border-radius: 10px;
  transition: var(--smooth);
  background: var(--pure-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

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

/* ========== NEWSLETTER SECTION ========== */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--royal-blue), var(--accent-purple));
  color: var(--pure-white);
  text-align: center;
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: 42px;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 18px 25px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--deep-black);
  color: var(--pure-white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 25px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  opacity: 0.8;
  transition: var(--smooth);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary-gold);
  transform: translateX(5px);
  display: inline-block;
}

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

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

.social-links a:hover {
  background: var(--primary-gold);
  transform: translateY(-5px);
}

.social-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  opacity: 0.7;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.footer-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-btn.whatsapp-btn {
  background: #25D366;
  color: var(--pure-white);
}

.footer-btn.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.footer-btn.call-btn {
  background: var(--primary-gold);
  color: var(--deep-black);
}

.footer-btn.call-btn:hover {
  background: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--smooth);
  animation: pulse 2s infinite;
}

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

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: var(--pure-white);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8); }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
  opacity: 0;
}

.delay-2 {
  animation-delay: 0.4s;
  opacity: 0;
}

.delay-3 {
  animation-delay: 0.6s;
  opacity: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: var(--smooth-long);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: var(--smooth-long);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: var(--smooth-long);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

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

/* Tablets */
@media (max-width: 968px) {
  :root {
    --section-padding: 70px 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--pure-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: var(--smooth);
    padding: 50px 0;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-main {
    font-size: 60px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  .about-grid,
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-main {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .testimonial-card {
    padding: 30px 25px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .nav-logo a {
    font-size: 26px;
  }
  
  .logo-letter {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .hero-main {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .collection-image {
    height: 300px;
  }
  
  .booking-form-container {
    padding: 30px 20px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .whatsapp-float,
  .scroll-indicator,
  .testimonial-controls {
    display: none;
  }
}
  from {
    opacity: 0;
    left: 0px;
  }
  to {
    opacity: 1;
    left: 10%;
  }
}

#s1 h2 {
  font-family: 'Heebo', sans-serif;
  font-size: 4vmin;
  line-height: 6vmin;
  font-weight: 400;
  letter-spacing: .3em;
  margin-bottom: 1.6em;
}

#s1 h1 {
  font-size: 9vmin;
  line-height: 10vmin;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
}

/* === IPAD AND IPHONE VIEW: NAV INFO === */

.overlay1 {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 11;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 100px;
}

.overlay-content {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.overlay1 a:link, .overlay1 a:visited {
  padding: 15px 8px;
  text-decoration: none;
  font-size: 18px;
  color: white;
  display: block;
  font-family: sans-serif;
  font-weight: bold;
  transition: 0.3s;
}

.overlay1 a:hover, #trigger:hover {
  color: #FCD22E;
}

.overlay1 .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px !important;
  margin-left: 50px;
}

#trigger {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 36px;
  cursor: pointer;
}

#nav {
  display: none;
}

/* === SECTION_2 INFO HERE === */

#s2 {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  min-height: 100%;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

#s2 article {
  background: #FFF3D5;
  flex: 1;
  padding: 10px 3vw 50px;
  max-width: 980px;
  margin: 0 auto;
  border: 20px solid white;
}

#s2 h3, #s3 h3, #s4 h3, #s5 h3, #s6 h3 {
  max-width: 320px;
  margin: 0 auto;
  padding-top: 62px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .20em;
  margin-bottom: 40px;
  line-height: 30px;
  font-size: 28px;
  text-align: center;
  font-family: 'Heebo', sans-serif;
}

#s2 p, #s3 p {
  font-family: 'Abel', sans-serif;
  font-size: 22px;
  font-weight: 250;
  line-height: 1.5em;
  text-align: justify;
  text-indent: 2em;
}

#s2 figure {
  flex: 1 100%;
  height: 560px;
  text-align: center;
  margin: 0 auto;
  background: url(../imgs/step1.png) no-repeat center center;
  background-size: contain;
  transition: background 1s;
}

#s2 figure:hover {
  background: url(../imgs/step2.png) no-repeat center;
  background-size: contain;
}

/* === SECTION_3 INFO HERE === */

#s3 {
  min-height: 100%;
  text-align: center;
  margin: 0 auto;
  background: url(../imgs/bg3.png) repeat left top;
  overflow-x: hidden;
}

#s3 article {
  height: 50%;
  padding: 0px 10vw 4.5vmax;
  text-align: center;
}

#s3 #icon {
  margin: 0 auto;
  max-width: 1200px;
}

#s3 .ic {
  width: 215px;
  height: 215px;
  display: inline-block;
  vertical-align: top;
  margin: 20px 20px 20px 10px;
  position: relative;
  transition: background 1s;
}

.ic a {
  display: block;
  width: 215px;
  height: 215px;
}

.im {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 1s ease;
}

.ic:hover .overlay {
  bottom: 0;
  height: 100%;
}

/* === SECTION_4 INFO HERE === */

#s4 {
  min-height: 100%;
  background: #F4E4D5;
  border: 20px solid white;
  text-align: center;
}

#s4 #pic {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}

#s4 .p {
  flex: 0 1 auto;
  margin-bottom: 1%;
  width: 260px;
  height: 260px;
  /*width: 300px;
  height: 300px;*/
  overflow: hidden;
}

#s4 .p1 {
  background: url(../imgs/1.jpg) no-repeat center;
  background-size: cover;
}

#s4 .p1:hover {
  background: url(../imgs/5.jpg) no-repeat center;
  background-size: cover;
}

#s4 .p2 {
  background: url(../imgs/2.jpg) no-repeat center;
  background-size: cover;
}

#s4 .p2:hover {
  background: url(../imgs/6.jpg) no-repeat center;
  background-size: cover;
}

#s4 .p3 {
  background: url(../imgs/3.jpg) no-repeat center;
  background-size: cover;
}

#s4 .p3:hover {
  background: url(../imgs/7.jpg) no-repeat center;
  background-size: cover;
}

#s4 .p4 {
  background: url(../imgs/4.jpg) no-repeat center;
  background-size: cover;
}

#s4 .p4:hover {
  background: url(../imgs/8.jpg) no-repeat center;
  background-size: cover;
}

/* === SECTION_5 INFO HERE === */

#s5 {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  min-height: 100%;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background: url(../imgs/bg5.png) repeat left top;
  border-width: 0px 20px;
  border-style: solid;
  padding: 20px 0px 0px 10px;
  border-color: white;
}

#s5 article {
  flex: 1;
  padding: 10px 3vw 20px;
  max-width: 980px;
  margin: 0 auto;
}

#s5 article h3 {
  color: #FCD330;
  text-shadow: 3px 3px 3px #999;
  padding-top: 50px;
}

#s5 p {
  font-family: 'Abel', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5em;
  text-align: justify;
  text-indent: 2em;
  padding: 2vw 6vw 2vw 2vw;
}

#vd {
  flex: 1 100%;
  text-align: center;
  margin: 0 auto;
  margin: 0 10vw 0 0;
  background-color: rgba(252, 211, 48, .2);
  border: 20px solid rgba(252, 211, 48, .1);
  box-shadow: 10px 10px 20px #AB867D;
}

#vd>video {
  width: 65vw;
  height: 280px;
}

/* === SECTION_6 INFO HERE === */

#s6 {
  min-height: 65%;
  background: #FFF3D5;
  padding: 5px 50px 20px;
  border-width: 20px;
  border-style: solid;
  border-color: white;
}

.form .f1, .form .f2 {
  padding-right: 15px;
  width: 100%;
}

input[type=text], input[type=email], select {
  width: 100%;
  padding: 5px 30px;
  height: 45px;
  font-size: 14px;
  /*line-height: 1.43px;*/
  margin-bottom: 15px;
  background-color: #f9f9f5;
  border: 1px solid transparent;
  transition: all .3s;
}

input[type=text]:hover, input[type=email]:hover, select:hover, textarea:hover, input[type=text]:focus, input[type=email]:focus, select:focus, textarea:focus {
  border: 3px solid #FCD330;
}

textarea {
  width: 100%;
  height: 150px;
  font-size: 16px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #f9f9f5;
  resize: none;
  margin-bottom: 15px;
  transition: all .3s;
}

input[type=submit] {
  background: #FCD330;
  padding: 16px;
  font-size: 18px;
  color: white;
  font-size: bold;
}

/* === FOOTER INFO HERE === */

footer {
  min-height: 30%;
  width: 100%;
  background: black;
  color: white;
  overflow: hidden;
}

#footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0 0px 0;
}

.logo {
  display: none;
}

.info1, .info2 {
  font-size: 12px;
  line-height: 30px;
  text-transform: uppercase;
  padding: 5px 25px 5px 50px;
  letter-spacing: .13em;
}

.info1 {
  margin-right: 2%;
  color: #FCD330;
}

.info1 a, #contact>a {
  color: #FCD330 !important;
  text-decoration: none;
  transition: all .5s;
}

.info1 a:hover, #contact>a:hover {
  color: #5e4352 !important;
}

/* === SOCIAL ICONS INFO HERE === */

#social {
  position: fixed;
  bottom: 68px;
  right: 25px;
  width: 33px;
  height: 130px;
  z-index: 3;
  transition-delay: 1.5s;
}

#social a {
  display: block;
  width: 33px;
  height: 33px;
  background-color: #000;
  overflow: hidden;
  margin-top: 15px;
  border-radius: 50%;
}

#social a:hover {
  background-color: #FCD330;
}

.facebook {
  background: url(../imgs/facebook.png) no-repeat center center;
  background-size: cover;
}

.instagram {
  background: url(../imgs/instagram.png) no-repeat center center;
  background-size: cover;
}

.pinterest {
  background: url(../imgs/pinterest.png) no-repeat center center;
  background-size: cover;
}

/* === DESKTOP_1 VIEW === */

@media all and (min-width: 780px) {
  /* === section_1 header view === */
  .header {
    display: block;
  }
  /* === section_1 nav view === */
  #nav {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    text-align: center;
    background: black;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  #nav a:link, a:visited {
    padding: 15px;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    color: white;
    flex: 1;
    transition: all .3s;
  }
  #nav a:hover {
    color: #FCD22E;
  }
  #iphonenav, #trigger {
    display: none;
  }
  /* === section_2 figure view === */
  #s2 h3, #s3 h3, #s4 h3, #s5 h3 {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 80px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .23em;
    margin-bottom: 40px;
    line-height: 44px;
    font-size: 46px;
    text-align: center;
    font-family: 'Heebo', sans-serif;
  }
  #s2 figure {
    flex: 1 auto;
  }
  /* === section_4 picture view === */
  #s4 .p {
    width: 300px;
    height: 300px;
  }
  /* === section_5 video and article will show in the same row === */
  #s5 {
    flex-flow: row nowrap;
  }
  #s5 #vd, #s5 article {
    flex: 1;
  }
  #s5 p {
    padding: 2vw;
  }
  #vd {
    margin: 0 auto;
  }
  #vd video {
    width: 100%;
    height: 100%;
  }
  /* === section_6 forms will show in two side ===  */
  #s6 h3 {
    letter-spacing: .20em;
    margin-bottom: 30px;
    line-height: 44px;
    font-size: 44px;
  }
  .form .f1, .form .f2 {
    padding-right: 15px;
    float: left;
    width: 50%;
  }
  /* === footer view === */
  .info1, .info2 {
    float: left;
    width: 35vw;
    max-width: 350px;
    padding-top: 20px;
    margin-left: 50px;
  }
}

/* === DESTOP_2 VIEW === */

/* === footer view === */

@media all and (min-width:1000px) {
  .logo {
    display: block;
    width: 30vw;
    max-width: 300px;
    float: left;
  }
  .logo h1 {
    display: block;
    color: white;
    font-family: 'Great Vibes', cursive;
    font-size: 76px;
    padding-left: 2.5vw;
    padding-top: 8%;
    margin-bottom: 22%;
    text-shadow: 3px 3px 3px #FCD330;
  }
  .info1, .info2 {
    float: left;
    width: 35vw;
    max-width: 350px;
    padding-top: 20px;
    margin-left: 0px;
  }
  /* === BIG DESKTOP VIEW === */
  @media all and (min-width:1440px) {
    #s4 .h3, #s4 #pic {
      height: 40vmin;
    }
  }