/* Studio Hair Habits Salon - Main Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #2c2c2c;
    --accent: #8b7355;
    --accent-pink: #ff6b9d;
    --accent-purple: #a855f7;
    --accent-blue: #3b82f6;
    --accent-teal: #14b8a6;
    --text: #333;
    --text-light: #666;
    --bg: #f8f8f8;
    --bg-light: #fafafa;
    --white: #fff;
    --black: #000000;
    --border: #e0e0e0;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-colorful: linear-gradient(135deg, #ff6b9d 0%, #a855f7 50%, #3b82f6 100%);
}

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

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Preloader Styles */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000; /* Dark luxury background */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
.loader-content {
  text-align: center;
}
.loader-logo {
  max-width: 150px;
  margin-bottom: 20px;
  animation: pulse 2s infinite ease-in-out;
}
.loading-text {
  color: #d4af37; /* Gold/Premium accent color */
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.progress-bar {
  width: 200px;
  height: 2px;
  background: #333;
  margin: 0 auto;
  overflow: hidden;
}
.progress-fill {
  width: 0%;
  height: 100%;
  background: #d4af37;
  animation: loadProgress 3s ease-out forwards;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}
/* Class added via JS to fade out */
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--accent);
}

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

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

/* Header */
.header {
    background: var(--black);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    order: 1;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--white);
    display: none;
}

.logo .tagline {
    font-size: 0.875rem;
    color: var(--primary);
    margin: 0;
    font-style: italic;
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    order: 3;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.main-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    order: 4;
}

.main-nav.active {
    max-height: 500px;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
}

.nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--white);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-colorful);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    order: 2;
    margin-left: auto;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    font-weight: 500;
}

.btn-call:hover {
    background: var(--gradient-colorful);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn-call svg {
    width: 20px;
    height: 20px;
}

.btn-call .call-text {
    display: none;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #25d366;
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.call-text {
    display: none;
}

@media (min-width: 768px) {
    .call-text {
        display: inline;
    }
}

.btn-book-now {
    display: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: var(--gradient-colorful);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

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

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

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

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mobile-fallback {
    display: none;
}

.hero-mobile-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-mobile-fallback {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 2;
        transition: opacity 0.65s ease;
    }

    .hero-media.hero-video-ready .hero-mobile-fallback {
        opacity: 0;
        pointer-events: none;
    }
}

@media (min-width: 769px) {
    .hero-video {
        display: none;
    }
}

.hero-image {
    display: none;
    width: 100%;
    height: 100%;
}

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

@media (min-width: 769px) {
    .hero-image {
        display: block;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.18));
    color: var(--white);
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-style: italic;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-colorful);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2);
    background: var(--white);
    border-color: var(--primary);
}

.service-card:nth-child(1):hover {
    border-color: var(--accent-pink);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.3);
}

.service-card:nth-child(2):hover {
    border-color: var(--accent-purple);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
}

.service-card:nth-child(3):hover {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.service-card:nth-child(4):hover {
    border-color: var(--accent-teal);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.3);
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
    font-size: 3rem;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--gradient-colorful);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.service-card.active .service-details {
    max-height: 1000px;
    opacity: 1;
}

.service-description {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

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

.service-cta {
    margin-top: 1.5rem;
    display: inline-block;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--bg);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-colorful);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-item:nth-child(1)::before {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
}

.stat-item:nth-child(2)::before {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
}

.stat-item:nth-child(3)::before {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
}

.stat-item:nth-child(4)::before {
    background: linear-gradient(90deg, var(--accent-teal), var(--primary));
}

.stat-item h3 {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.timings-section {
    margin-top: 3rem;
    text-align: center;
}

.timings-section h3 {
    margin-bottom: 1.5rem;
}

.timings-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.timing-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.day {
    font-weight: 600;
    color: var(--secondary);
}

.time {
    color: var(--text-light);
}

/* Franchise Section */
.franchise-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(168,85,247,0.05) 100%);
}

.franchise-content {
    max-width: 900px;
    margin: 0 auto;
}

.franchise-text {
    text-align: center;
}

.franchise-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.franchise-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.franchise-benefits li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.franchise-benefits li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.franchise-cta {
    margin-top: 2rem;
}

/* Brands Section */
.brands-section {
    position: relative;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.brands-fixed-bg {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background-image: url("../images/brands-background.jpg");
    background-image: image-set(
        url("../images/brands-background.avif") type("image/avif"),
        url("../images/brands-background.jpg") type("image/jpeg")
    );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.brands-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
    z-index: 1;
}

.brands-content {
    position: relative;
    z-index: 2;
    margin-top: -100vh;
    padding: 6rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.brands-text h2 {
    color: var(--white);
}

.brands-intro {
    max-width: 620px;
    margin: 1rem auto 1.5rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
}

.brands-highlight {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.brands-highlight a {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.brands-highlight a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.brands-collage {
    display: flex;
    justify-content: center;
    width: 100%;
}

.brands-collage img {
    width: min(360px, 80%);
    height: auto;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(900px) rotateY(-10deg) translateZ(20px);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.brands-section:hover .brands-collage img {
    transform: perspective(900px) rotateY(-2deg) translateZ(30px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

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

    .brands-collage img {
        transform: none;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: var(--bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2);
    border-left-color: var(--accent-purple);
}

.testimonial-card:nth-child(1):hover {
    border-left-color: var(--accent-pink);
}

.testimonial-card:nth-child(2):hover {
    border-left-color: var(--accent-blue);
}

.testimonial-card:nth-child(3):hover {
    border-left-color: var(--accent-teal);
}

.testimonial-rating {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.contact-info {
    background: var(--bg);
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info address {
    font-style: normal;
    margin-bottom: 1rem;
}

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

.social-links a {
    padding: 0.75rem 1.25rem;
    background: var(--gradient-primary);
    border-radius: 8px;
    color: var(--white);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.social-links a:nth-child(1):hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
    transform: translateY(-2px);
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(135deg, #e4405f, #f77737);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.4);
    transform: translateY(-2px);
}

.social-links a:nth-child(3):hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15), 0 4px 15px rgba(168, 85, 247, 0.1);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-colorful);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
}

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

.rating {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}

/* Fresha Modal */
.fresha-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.fresha-modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fresha-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.fresha-modal-header h3 {
    margin: 0;
}

.fresha-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fresha-close:hover {
    color: var(--primary);
}

.fresha-modal-body {
    padding: 2rem;
    text-align: center;
}

.fresha-modal-body p {
    margin-bottom: 1.5rem;
}

.fresha-modal-body .btn {
    margin: 0.5rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .header-inner {
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
    }

    .main-nav {
        order: 2;
    }

    .header-actions {
        order: 3;
        margin-left: 0;
    }

    .btn-call {
        padding: 0.75rem 1.25rem;
        width: auto;
        height: auto;
    }

    .btn-call .call-text {
        display: inline;
    }

    .btn-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        width: auto;
        max-height: none;
        overflow: visible;
    }

    .nav-menu {
        flex-direction: row;
        gap: 0;
        padding: 0;
    }

    .nav-link {
        padding: 0.5rem 1rem;
    }

    .btn-book-now {
        display: inline-block;
        margin-left: auto;
    }

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

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

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

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

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

    .timings-grid {
        flex-direction: row;
        justify-content: center;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

/* Desktop Styles */
@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }

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

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

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

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Instagram Section */
.instagram-section {
    padding: 4rem 0;
    background: var(--white);
}

.instagram-hashtags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.instagram-hashtags span {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.instagram-description {
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 2rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.instagram-feed-wrapper {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
}

.instagram-feed {
    width: 100%;
    min-height: 400px;
}

.instagram-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* Custom Instagram Grid - Smash Balloon Style (Clean Thumbnails Only) */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg);
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
    aspect-ratio: 1;
    display: block;
}

.instagram-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.instagram-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.instagram-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    object-position: center;
    /* Ensure full image is visible, no cropping */
}

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

/* Play icon overlay for reels */
.instagram-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    pointer-events: none;
}

.instagram-play-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.instagram-item:hover .instagram-play-icon {
    background: rgba(212, 175, 55, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Mobile-specific styles to prevent cropping */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }
    
    .instagram-thumbnail {
        overflow: hidden;
    }
    
    .instagram-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .instagram-play-icon {
        width: 40px;
        height: 40px;
    }
    
    .instagram-play-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        gap: 0.3rem;
    }
    
    .instagram-thumbnail img {
        object-fit: cover;
        object-position: center;
    }
}

/* Placeholder for loading */
.instagram-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: var(--text-light);
    font-size: 0.9rem;
    aspect-ratio: 1;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}

.instagram-placeholder svg {
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.instagram-loading-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    font-size: 0.9rem;
}

.instagram-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
    text-align: center;
    color: var(--text-light);
}

.instagram-error-item {
    background: var(--bg);
}

.instagram-empty {
    text-align: center;
    padding: 3rem;
    background: var(--bg);
    border-radius: 8px;
}

.instagram-empty code {
    background: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--primary);
}


/* Instagram Responsive Styles - 3 columns on all devices */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }
    
    .instagram-hashtags {
        gap: 0.4rem;
        font-size: 0.85rem;
    }
    
    .instagram-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }
    
    .instagram-hashtags {
        gap: 0.3rem;
        font-size: 0.8rem;
    }
    
    .instagram-play-icon {
        width: 40px;
        height: 40px;
    }
    
    .instagram-play-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .instagram-grid {
        gap: 0.25rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: rgba(212, 175, 55, 1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Franchise page */
.franchise-page-hero {
    padding: 4.5rem 0 3.5rem;
    background: linear-gradient(135deg, #1a1208 0%, #2c1f3d 45%, #0f172a 100%);
    color: var(--white);
    text-align: center;
}

.franchise-page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.franchise-page-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.franchise-page-lead {
    max-width: 720px;
    margin: 1.25rem auto 2rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

.franchise-page-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.franchise-page-stats {
    padding: 2.5rem 0;
    background: var(--secondary);
    color: var(--white);
}

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

.franchise-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
}

.franchise-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.franchise-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.5rem;
    display: block;
}

.franchise-page-section {
    padding: 4rem 0;
    background: var(--white);
}

.franchise-page-section-alt {
    background: linear-gradient(160deg, #1e1b2e 0%, #0f172a 100%);
    color: var(--white);
}

.franchise-page-section-alt h2,
.franchise-page-section-alt h3 {
    color: var(--white);
}

.franchise-page-section-alt .franchise-prose {
    color: rgba(255, 255, 255, 0.85);
}

.franchise-section-header-light .section-subtitle,
.franchise-subtitle-light {
    color: rgba(255, 255, 255, 0.75);
}

.franchise-section-header-light h2 {
    color: var(--white);
}

.franchise-page-section#support-focus {
    background: linear-gradient(160deg, #1e1b2e 0%, #0f172a 100%);
    color: var(--white);
}

.franchise-page-section#support-focus h2 {
    color: var(--white);
}

.franchise-bar-chart {
    max-width: 720px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.franchise-bar-row {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) 4fr auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.franchise-bar-row:last-child {
    margin-bottom: 0;
}

.franchise-bar-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.franchise-bar-track {
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.franchise-bar-fill {
    display: block;
    height: 100%;
    width: var(--w);
    border-radius: 999px;
    background: linear-gradient(90deg, #d4af37, #a855f7);
    transform: scaleX(0);
    transform-origin: left center;
    animation: franchiseBarGrow 1s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes franchiseBarGrow {
    to {
        transform: scaleX(1);
    }
}

.franchise-bar-pct {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    min-width: 2.5rem;
    text-align: right;
}

.franchise-chart-note,
.franchise-chart-caption {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 1.25rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.franchise-page-section-alt .franchise-chart-caption {
    color: rgba(255, 255, 255, 0.55);
}

.franchise-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: start;
}

.franchise-line-chart-wrap {
    margin-top: 2rem;
}

.franchise-line-chart {
    width: 100%;
    max-height: 220px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.franchise-donut-wrap h3 {
    margin-bottom: 0.5rem;
}

.franchise-donut-visual {
    max-width: 220px;
    margin: 0 auto;
}

.franchise-donut-visual svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.franchise-legend {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.franchise-legend li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.franchise-legend-swatch {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.franchise-timeline {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 800px;
    counter-reset: step;
}

.franchise-timeline li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.franchise-timeline li:last-child {
    border-bottom: none;
}

.franchise-timeline-step {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.franchise-timeline h3 {
    margin-bottom: 0.35rem;
    font-size: 1.2rem;
}

.franchise-timeline p {
    margin: 0;
    color: var(--text-light);
}

.franchise-compare-section {
    background: var(--bg);
}

.franchise-compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.franchise-compare-card {
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.franchise-compare-independent {
    background: var(--white);
    border: 2px solid var(--border);
}

.franchise-compare-brand {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(168, 85, 247, 0.1));
    border: 2px solid var(--primary);
}

.franchise-compare-card h3 {
    margin-bottom: 1rem;
}

.franchise-compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.franchise-compare-card li {
    padding: 0.65rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.franchise-compare-card li:last-child {
    border-bottom: none;
}

.franchise-compare-independent li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-light);
}

.franchise-compare-brand li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.franchise-page-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #d4af37 0%, #a855f7 50%, #3b82f6 100%);
    color: var(--white);
    text-align: center;
}

.franchise-page-cta h2 {
    color: var(--white);
}

.franchise-page-cta p {
    max-width: 560px;
    margin: 1rem auto 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.franchise-page-cta .btn-primary {
    background: var(--white);
    color: var(--secondary);
}

.franchise-page-cta .btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
}

.franchise-page-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.franchise-page-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
}

@media (max-width: 600px) {
    .franchise-bar-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .franchise-bar-pct {
        text-align: left;
    }
}

/* Performance */
