/* ========================================
   TINY TANGLES SALON - MAIN STYLES
   ======================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Nunito:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  
  --white: #ffffff;
  --black: #000000;
  
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  --shadow-soft: 0 4px 20px -2px rgba(236, 72, 153, 0.15);
  --shadow-soft-blue: 0 4px 20px -2px rgba(34, 211, 238, 0.15);
  --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--cyan-50) 50%, var(--pink-50) 100%);
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo img {
  height: 50px;
  width: auto;
}

/* Desktop Navigation */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-link {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--pink-500);
  background: var(--pink-50);
}

.navbar-cta {
  margin-left: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-500));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

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

.btn-outline:hover {
  background: var(--cyan-50);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Burger Menu - Mobile Only */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: var(--pink-500);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu .navbar-link {
  display: block;
  padding: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1.1rem;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

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

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite 1s;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  color: var(--pink-500);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--pink-500), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon.pink {
  background: var(--pink-100);
  color: var(--pink-500);
}

.stat-icon.cyan {
  background: var(--cyan-100);
  color: var(--cyan-500);
}

.stat-text h4 {
  font-size: 1rem;
  color: var(--gray-800);
}

.stat-text p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: bounce-soft 2s ease-in-out infinite;
}

.hero-floating-card .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section {
  padding: 5rem 0;
}

.section-white {
  background: var(--white);
}

.section-gradient {
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--cyan-50) 50%, var(--pink-50) 100%);
}

.section-rewards {
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--white) 50%, var(--cyan-50) 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-badge.cyan {
  background: var(--cyan-100);
  color: var(--cyan-600);
}

.section-title {
  font-size: 2.5rem;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.section-title .highlight {
  color: var(--pink-500);
}

.section-title .highlight-cyan {
  color: var(--cyan-500);
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

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

.about-images {
  position: relative;
}

.about-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-images-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-images-grid img:last-child {
  margin-top: 2rem;
}

.about-story-card {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 280px;
}

.about-story-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.about-story-card h4 svg {
  color: var(--pink-500);
}

.about-story-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-style: italic;
}

.about-story-card .author {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
  font-style: normal;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pink-200);
  background: rgba(253, 242, 248, 0.5);
}

.feature-card.cyan {
  border-color: var(--cyan-200);
  background: rgba(236, 254, 255, 0.5);
}

.feature-card svg {
  width: 32px;
  height: 32px;
  color: var(--pink-500);
  margin-bottom: 0.75rem;
}

.feature-card.cyan svg {
  color: var(--cyan-500);
}

.feature-card h4 {
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.service-header {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-header.pink {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
}

.service-header.cyan {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
}

.service-header h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.service-header svg {
  color: var(--white);
  width: 20px;
  height: 20px;
}

.service-list {
  padding: 0.5rem 0;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  color: var(--gray-700);
  font-size: 0.95rem;
}

.service-price {
  font-weight: 700;
  font-size: 0.95rem;
}

.service-price.pink {
  color: var(--pink-500);
}

.service-price.cyan {
  color: var(--cyan-500);
}

.payment-info {
  margin-top: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.payment-info-icon {
  width: 50px;
  height: 50px;
  background: var(--pink-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-500);
  flex-shrink: 0;
}

.payment-info h4 {
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.payment-info p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

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

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

.gallery-overlay {
  position: relative;
  inset: 0;
  background: linear-gradient(to top, rgba(236, 72, 153, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-interior {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.gallery-interior-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-interior-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-interior-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem;
  color: var(--white);
}

.gallery-interior-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.gallery-interior-overlay p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   REWARDS SECTION
   ======================================== */

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

.reward-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.reward-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reward-header.pink {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
}

.reward-header.cyan {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
}

.reward-header svg {
  color: var(--white);
}

.reward-header h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.reward-content {
  padding: 1.5rem;
}

.reward-content > p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.reward-list {
  space-y: 1rem;
}

.reward-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.reward-item:last-child {
  border-bottom: none;
}

.reward-item svg {
  color: var(--pink-500);
  flex-shrink: 0;
}

.reward-item strong {
  color: var(--gray-800);
}

.reward-item span {
  color: var(--gray-600);
}

.reward-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.reward-footer.pink {
  color: var(--pink-500);
}

.reward-footer.cyan {
  color: var(--cyan-500);
}

.referral-level {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.referral-level:last-child {
  border-bottom: none;
}

.referral-number {
  width: 35px;
  height: 35px;
  background: var(--cyan-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cyan-600);
  flex-shrink: 0;
}

/* ========================================
   POLICY SECTION
   ======================================== */

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

.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.policy-header {
  padding: 1.25rem 1.5rem;
}

.policy-header.pink {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
}

.policy-header.cyan {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
}

.policy-header svg {
  color: var(--white);
  margin-right: 0.5rem;
}

.policy-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.policy-content {
  padding: 1.5rem;
}

.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.policy-item:last-child {
  border-bottom: none;
}

.policy-item svg {
  color: var(--pink-500);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.policy-item.cyan svg {
  color: var(--cyan-500);
}

.policy-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.policy-item strong {
  color: var(--pink-600);
}

.policy-item.cyan strong {
  color: var(--cyan-600);
}

.bank-details {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--pink-50), var(--cyan-50));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.bank-details-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bank-details-header svg {
  color: var(--pink-500);
}

.bank-details-header h4 {
  color: var(--gray-800);
}

.bank-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bank-detail p:first-child {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.bank-detail p:last-child {
  font-weight: 600;
  color: var(--gray-800);
}

.bank-reference {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.contact-icon.pink {
  background: var(--pink-100);
  color: var(--pink-500);
}

.contact-icon.cyan {
  background: var(--cyan-100);
  color: var(--cyan-500);
}

.contact-card:hover .contact-icon.pink {
  background: var(--pink-500);
  color: var(--white);
}

.contact-card:hover .contact-icon.cyan {
  background: var(--cyan-500);
  color: var(--white);
}

.contact-card h4 {
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link.facebook {
  background: #1877f2;
  color: var(--white);
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

.social-link.tiktok {
  background: var(--black);
  color: var(--white);
}

.social-link:hover {
  transform: scale(1.1);
}

.contact-banner {
  margin-top: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-banner img {
  width: 100%;
  height: auto;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.footer-links ul li {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--pink-400);
}

.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.footer-contact ul li svg {
  color: var(--pink-400);
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

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

.footer-social a {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--pink-400);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

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

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    margin: 0 auto 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-images {
    order: 2;
  }
  
  .about-content {
    order: 1;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Show burger menu on mobile */
  .burger-menu {
    display: flex;
  }
  
  /* Hide desktop menu */
  .navbar-menu {
    display: none;
  }
  
  /* Show mobile menu when active */
  .mobile-menu.active {
    display: block;
  }
  
  .hero {
    min-height: auto;
    padding: 120px 0 4rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-interior {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-interior-item:last-child {
    grid-column: span 0;
  }
  
  .rewards-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .bank-details-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand img {
    margin: 0 auto 1rem;
  }
  
  .footer-contact ul li {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    height: 70px;
  }
  
  .navbar-logo img {
    height: 40px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .about-images-grid {
    grid-template-columns: 1fr;
  }
  
  .about-images-grid img:last-child {
    margin-top: 0;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--pink-50);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pink-500), var(--cyan-400));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--pink-600), var(--cyan-500));
}
