/* Preloader/Intro Animation */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 1s ease;
}

.logo-animation {
    margin-bottom: 40px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: scaleRotate 2s ease infinite;
    box-shadow: 0 0 40px rgba(227, 57, 70, 0.6);
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(227, 57, 70, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.logo-circle::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(227, 57, 70, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease infinite 0.5s;
}

.logo-circle i {
    font-size: 3rem;
    color: white;
    animation: rotate 3s linear infinite;
}

.salon-name {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 3px;
    animation: fadeIn 1s ease 0.3s both;
    text-transform: uppercase;
}

.salon-tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    animation: fadeIn 1s ease 0.6s both;
    text-transform: uppercase;
    font-weight: 500;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 20px;
    overflow: hidden;
    animation: fadeIn 1s ease 0.9s both;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #e63946, #d62828, #e63946);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loadingBar 2s ease-in-out forwards, shimmer 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(227, 57, 70, 0.8);
}

.loading-text {
    color: var(--text-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: fadeIn 1s ease 1.2s both, blink 1.5s ease infinite;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup box */
.popup-box {
  width: 90%;
  max-width: 440px;
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  position: relative;

  /* 🌟 New Premium Background */
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(163, 162, 162, 0.95)
    ),
    url("https://res.cloudinary.com/dcmbqan7g/image/upload/v1763722498/download_a4lcjl.jpg") center/cover;

  box-shadow: 0 12px 40px rgba(255, 0, 0, 0.35);

  /* Inner soft glow */
  backdrop-filter: blur(6px);

  opacity: 0;
  transform: translateY(25px) scale(0.9);
  animation: popupShow 0.55s ease forwards;
}

/* Close button */
.close-popup {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 30px;
  cursor: pointer;
  color: #222;
}

/* Heading */
.popup-title {
  font-size: 32px;
  font-weight: 800;
  color: #d40000;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Sub text */
.popup-sub {
  font-size: 18px;
  color: #333;
  margin-bottom: 22px;
}

/* Button */
.popup-btn {
  background: linear-gradient(135deg, #d40000, #b10000);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s;
  box-shadow: 0 8px 20px rgba(200, 0, 0, 0.35);
}

.popup-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 26px rgba(200, 0, 0, 0.55);
}

/* Animation */
@keyframes popupShow {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


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

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

@keyframes scaleRotate {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes loadingBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Base Styles - Dark Theme */
:root {
    --primary-color: #e63946;
    --secondary-color: #0a0a0a;
    --accent-color: #d62828;
    --light-color: #1a1a1a;
    --dark-color: #0d0d0d;
    --text-color: #b8b8b8;
    --card-bg: #1e1e1e;
    --border-color: #2a2a2a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

* {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="30 " viewBox="0 0 32 32"><path fill="red" d="M1 1 L1 28 L10 19 L14 28 L17 27 L13 18 L22 18 Z"/></svg>'), auto;
}

body.loading {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.logo-img {
    height: 300px;
    width: 300px;
}

.logo span {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    color: #ffffff;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links .cta-button {
    margin-left: 20px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635844/001_vvedva.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #eee;
}

/* Services Section */
.services {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(227, 57, 70, 0.3);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #ffffff;
}

.service-card p {
    color: var(--text-color);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(227, 57, 70, 0.3);
}

/* Add background images to gallery items - Use your own photos! */
.gallery-item:nth-child(1) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635842/cut3_fmrsxr.jpg');
}

.gallery-item:nth-child(2) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635842/cut2_ai18vp.jpg');
}

.gallery-item:nth-child(3) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635842/cut1_qtsfhg.jpg');
}

.gallery-item:nth-child(4) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635845/d9_mfjtmr.jpg');
}

.gallery-item:nth-child(5) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635844/d6_vf96qt.jpg');
}

.gallery-item:nth-child(6) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635844/d7_sgddfi.jpg');
}
.gallery-item:nth-child(7) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635845/d8_neusjb.jpg');
}
.gallery-item:nth-child(8) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635843/d2_rtz9gg.jpg');
}

.gallery-item:nth-child(9) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635843/d3_gdbhss.jpg');
}

.gallery-item:nth-child(10) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1761635843/d4_kifsjp.jpg');
}
.gallery-item:nth-child(11) {
    background-image: url('https://res.cloudinary.com/dcmbqan7g/image/upload/v1763721822/Screenshot_2025-11-21_161332_w2m0do.png');
}


/* Our Team Section */
.team {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

.team h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team .section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: linear-gradient(135deg, rgba(227, 57, 70, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid rgba(227, 57, 70, 0.2);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 57, 70, 0.2), transparent);
    transition: left 0.5s ease;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(227, 57, 70, 0.3);
}

.team-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d62828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(227, 57, 70, 0.4);
    transition: all 0.4s ease;
}

.team-member:hover .team-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(227, 57, 70, 0.6);
}

.team-icon i {
    font-size: 2.5rem;
    color: white;
}

.team-member h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.team-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
}

/* About Section */
.about {
    background: linear-gradient(rgba(227, 57, 70, 0.1), rgba(227, 57, 70, 0.1)), linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../images/about-background.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 150px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about h2 {
    color: white;
}

.about h2::after {
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    padding: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border-radius: 50%;
    color: #ffffff;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background-color: var(--secondary-color);
    color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: var(--light-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

/* Stats Section */
.stats {
    background-color: var(--card-bg);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Enhanced Service Cards */
.service-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.service-list li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    background-color: var(--secondary-color);
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(227, 57, 70, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

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

.price span {
    font-size: 1rem;
    color: var(--text-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i.fa-check {
    color: var(--primary-color);
}

.pricing-features i.fa-times {
    color: #666;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.pricing-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Team Section */
.team {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(227, 57, 70, 0.3);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 57, 70, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--secondary-color);
    color: white;
}

.team-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.team-exp {
    color: var(--text-color);
    padding-bottom: 20px;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--secondary-color);
    padding: 100px 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 57, 70, 0.2);
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.stars i {
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-author h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(227, 57, 70, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Booking Section */
.booking {
    background-color: var(--secondary-color);
    padding: 100px 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: var(--light-color);
}

.form-group select {
    cursor: pointer;
}

.booking-info {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    height: fit-content;
}

.booking-info h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.info-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Location Section */
.location {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(227, 57, 70, 0.2);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(227, 57, 70, 0.1) 0%, rgba(227, 57, 70, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.location-details h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.location-details p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 5px;
}

.location-details strong {
    color: #ffffff;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.directions-btn:hover {
    background: #d62828;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(227, 57, 70, 0.4);
}

.directions-btn i {
    font-size: 1rem;
}

.map-container {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    filter: grayscale(20%) contrast(1.1);
}

/* Footer Enhancements */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

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

.footer-bottom a {
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-section p i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #aaa;
    padding: 70px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-section p {
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo-img {
        height: 80px !important;
        width: 80px !important;
    }

    nav {
        padding: 15px 5%;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--card-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
        border-right: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1001;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

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

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

    .booking-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .location-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 60px !important;
        width: 60px !important;
    }

    nav {
        padding: 10px 5%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .salon-name {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .salon-tagline {
        font-size: 1rem;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-circle i {
        font-size: 2.5rem;
    }

    .loading-bar {
        width: 250px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
