/* Modern CSS Variables */
:root {
    --primary: #f0b78c;
    --primary-dark: #f8c095;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light: #f8f9fa;
    --dark: #2d3436;
    --gray: #6c757d;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.22);
    --border-radius: 2px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

a {
    text-decoration: none;
    color: #fcb986;
}

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

.container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10px;
}

p {
    font-size: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 300;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    max-width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(193, 154, 107, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--light);
    backdrop-filter: blur(25px);
    color: var(--light);
    box-shadow: none;
}

.btn-outline::before {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline:hover {
    color: white;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    padding: 10px 0;
}

#header.transparent {
    background: transparent;
    backdrop-filter: blur(25px);
}

#header.scrolled {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: white;
    transition: color 0.3s ease;
    z-index: 1001;
}

#header.scrolled .logo-text {
    color: #222;
}

.logo-text span {
    font-weight: 400;
    color: #f0b78c;
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

#nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: flex-end;
    padding-right: 10px;
    margin-right: 10px;
}

#nav-menu li {
    margin: 0 20px;
    position: relative;
}

#nav-menu li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
}

#header.scrolled #nav-menu li a {
    color: #333;
}

#nav-menu li a:hover {
    color: #f0b78c;
}

/* Hover Underline Style */
#nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f0b78c;
    transition: width 0.3s ease;
}

#nav-menu li a:hover::after {
    width: 100%;
}

/* Active link style */
#nav-menu li a.active::after {
    width: 100%;
}

#nav-menu li a.active {
    color: var(--primary);
}

/* Book Now Button */
#open-booking-modal {
    background: #f0b78c;
    color: #222;
    border: none;
    padding: 10px 25px;
    border-radius: 0;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    margin-left: auto;
}

#open-booking-modal:hover {
    background: #f8c095;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 155, 95, 0.3);
}

/* Advanced Hamburger Menu */
.hamburger {
    cursor: pointer;
    display: none;
    z-index: 1001;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.5, 0, 0.5, 1);
}

.line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.5, 0, 0.5, 1),
        stroke-dashoffset 600ms cubic-bezier(0.5, 0, 0.5, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

#header.scrolled .hamburger .line {
    stroke: #222;
}

/* Enhanced Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    padding: 40px;
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    position: absolute;
    top: 40px;
    left: 40px;
}

.mobile-logo-text {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    color: white;
}

.mobile-logo-text span {
    font-weight: 400;
    color: #f0b78c;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.mobile-nav-menu li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

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

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(3) {
    transition-delay: 0.5s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(4) {
    transition-delay: 0.55s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(7) {
    transition-delay: 0.5s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(8) {
    transition-delay: 0.55s;
}

.mobile-nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 10px 0;
}

.mobile-nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #f0b78c;
    transition: width 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: #f0b78c;
    transform: translateX(10px);
}

.mobile-nav-menu li a:hover::before {
    width: 100%;
}

.mobile-book-btn {
    background: #f0b78c;
    color: #222;
    border: none;
    padding: 15px 30px;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
}

.mobile-nav-overlay.active .mobile-book-btn {
    opacity: 1;
    transform: translateY(0);
}

.mobile-book-btn:hover {
    background: #f8c095;
    transform: translateY(-2px);
}

.mobile-nav-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 30px;
    }

    #nav-menu li {
        margin: 0 15px;
    }
}

@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    #nav-menu {
        display: none;
    }

    .hamburger {
        display: block !important;
    }

    #open-booking-modal {
        display: none;
    }

    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 24px;
    }

    .header-container {
        padding: 0 15px;
    }

    .mobile-nav-menu li a {
        font-size: 20px;
    }

    .mobile-nav-header {
        top: 20px;
        left: 20px;
    }

    .mobile-nav-overlay {
        padding: 20px;
    }

    .mobile-nav-footer {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 22px;
    }

    .mobile-nav-menu li a {
        font-size: 18px;
    }

    .mobile-logo-text {
        font-size: 20px;
    }

    .hamburger svg {
        height: 2.5em;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease, transform 2s ease;
    transform: translateY(20px);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.slide-1 .slide-bg {
    background-image: linear-gradient(rgba(56, 56, 56, 0.5), rgba(58, 57, 57, 0.5)), url('https://img.grouponcdn.com/deal/S7fLxozsTT3DF4jAf9XTNhNc5gC/S7-2048x1229/v1/t2001x1212.webp');
}

.slide-2 .slide-bg {
    background-image: linear-gradient(rgba(56, 56, 56, 0.5), rgba(58, 57, 57, 0.5)), url('https://images.squarespace-cdn.com/content/v1/589139a5e3df28c01a2fbd16/1485987264461-AV8NAGEZN2XGAVFYIIVY/beautiful-girl-long-hair-wide.jpg?format=2500w');
}

.slide-3 .slide-bg {
    background-image: linear-gradient(rgba(56, 56, 56, 0.5), rgba(58, 57, 57, 0.5)), url('https://salon360.com.sg/wp-content/uploads/2020/07/banner3.jpg');
}

.vertical-text {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 8px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.vertical-text::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
}

.vertical-text::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
}

.vertical-line-middle {
    position: absolute;
    left: 50%;
    top: 115px;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    margin: 15px 0;
}

.hero-content {
    text-align: left;
    color: white;
    top: 40px;
    max-width: 700px;
    margin: 50px;
    position: relative;
    border-radius: 20px;
    background: transparent;
    backdrop-filter: blur(2px);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.salon-tag {
    display: inline-block;
    background: rgba(231, 185, 185, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 3px solid #f0b78c;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 12px;
    letter-spacing: 3px;
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn i {
    font-size: 12px;
}

.btn-primary {
    background: #f0b78c;
    color: #222;
    border: none;
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #f0b78c;
}

.stat-text {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.carousel-nav {
    position: absolute;
    bottom: 100px;
    left: 205px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-line.active {
    background: #f0b78c;
    width: 60px;
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content {
        margin: 30px;
    }

    .carousel-nav {
        left: 30px;
        bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 30px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .vertical-text {
        left: 15px;
        font-size: 10px;
        letter-spacing: 5px;
    }

    .hero-stats {
        gap: 30px;
    }

    .carousel-nav {
        left: 20px;
        bottom: 30px;
    }

    .salon-tag {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .hero-content {
        margin: 15px;
        max-width: calc(100% - 30px);
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .vertical-text {
        display: none;
    }

    .container {
        padding: 0 15px;
    }

    .carousel-nav {
        left: 15px;
        bottom: 20px;
    }

    .hero-btns {
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* About Section */
.about {
    background-color: white;
}

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

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.about-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 5px solid var(--primary);
    top: -20px;
    left: -20px;
    z-index: -1;
    border-radius: var(--border-radius);
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* About Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-image::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-text h3 {
        font-size: 1.5rem;
    }

    .feature {
        gap: 10px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Services Section */
.services {
    background-color: #fcfafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1400px;
}

.service-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    height: 520px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 60%;
    overflow: hidden;
    position: relative;
}

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

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

.service-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background: linear-gradient(135deg, #f0b78c, #f0b78c);
    color: white;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.price-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 10px;
    color: #2c2c2c;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.price-overlay span {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    display: block;
    margin-top: 2px;
}

.service-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    flex: 1;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-icons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.service-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 10px;
    min-width: 0;
}

.icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    color: #f0b78c;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-icon:hover .icon-circle {
    background: #f0b78c;
    color: white;
    transform: scale(1.1);
}

.icon-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.book-service-btn {
    padding: 14px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 10px;
    border: none;
    width: 100%;
    background: linear-gradient(135deg, #fcb986, #f0b78c);
    color: white;
    box-shadow: 0 4px 15px rgba(184, 148, 77, 0.3);
}

.book-service-btn:hover {
    box-shadow: 0 6px 20px rgba(184, 148, 77, 0.4);
    transform: translateY(-2px);
}

/* Services Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        height: auto;
        min-height: 480px;
    }

    .service-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        min-height: 460px;
    }

    .service-icons {
        gap: 5px;
    }

    .icon-label {
        font-size: 10px;
    }

    .icon-circle {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .service-icon {
        gap: 5px;
    }

    .price-overlay {
        font-size: 16px;
        padding: 8px 14px;
        bottom: 10px;
        right: 10px;
    }

    .price-overlay span {
        font-size: 11px;
    }
}

/* Gallery Section */
.gallery {
    background-color: white;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
}

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

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

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

/* Promotions Section */
.promotions {
    position: relative;
    background-image: url('https://images.fresha.com/locations/location-profile-images/152460/2275541/394db692-c5c7-403c-bb61-2d000bd5e6db-MagicHands-US-NewYork-Yonkers-NortheastYonkers-Fresha.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    z-index: 0;
}

.promotions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 58, 58, 0.85);
    z-index: -1;
}

.promotions .section-header h2 {
    color: white;
}

.promotions .section-header h2::after {
    background: white;
}

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

.promo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.promo-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.promo-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.promo-badge {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Promotions Responsive */
@media (max-width: 768px) {
    .promotions {
        background-attachment: scroll;
    }

    .promo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .promo-card h3 {
        font-size: 1.3rem;
    }

    .promo-icon {
        font-size: 2.5rem;
    }
}

/* Products Section */
.products {
    background-color: var(--light);
}

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

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

@media (max-width: 580px) {
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .product-price {
        margin-bottom: 0;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Blog Section */
.blog {
    background-color: white;
}

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

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.7rem;
    color: var(--gray);
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-tag {
    background: var(--light);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 20px 15px;
    }

    .blog-image {
        height: 180px;
    }
}

/* FAQ Section */
.faq {
    background-color: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(193, 154, 107, 0.05);
}

.faq-question i {
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* FAQ Responsive */
@media (max-width: 480px) {
    .faq-question {
        padding: 15px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    width: 240px;
    height: 280px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary);
    position: relative;
    max-width: 100%;
}

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

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

.member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(204, 143, 93, 0.8);
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-member:hover .member-social {
    transform: translateY(0);
}

.team-member h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #fff;
}

.team-member p {
    font-size: 0.8rem;
}

/* Team Responsive */
@media (max-width: 580px) {
    .member-image {
        width: 100%;
        max-width: 280px;
        height: 260px;
    }

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

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    opacity: 0.4;
    transition: opacity 0.5s ease;
    box-sizing: border-box;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: #d4af7a;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid #f8f5ee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

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

.client-details h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.client-details p {
    font-size: 14px;
    color: #d4af7a;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    color: #333;
    font-size: 18px;
    pointer-events: all;
}

.carousel-arrow:hover {
    background: #d4af7a;
    color: white;
    transform: scale(1.1);
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-text p {
        font-size: 16px;
    }

    .carousel-arrows {
        display: none;
    }

    .testimonial-slide {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
    }

    .client-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .client-details h4 {
        font-size: 18px;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 0.8rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-text p {
    color: var(--gray);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light);
    border-radius: 50%;
    color: var(--secondary);
    transition: var(--transition);
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

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

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.8rem;
    transition: var(--transition);
    background: var(--light);
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Contact Responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px 15px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .social-link,
    .social-links {
        gap: 10px;
    }

    .social-link a,
    .social-links a {
        width: 40px;
        height: 40px;
    }
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 20px;
    overflow-x: hidden;
}

/* Footer Link Underline Animation */
.footer-link-underline {
    position: relative;
}

.footer-link-underline::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

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

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

.footer-column p {
    opacity: 0.8;
    margin-bottom: 20px;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .btn {
    width: 40%;
    margin-top: 5px;
    padding: 12px 20px;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

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

/* Footer Responsive */
@media (max-width: 768px) {
    footer {
        padding: 60px 0 20px;
    }

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

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }

    .footer-newsletter .btn {
        width: auto;
    }
}

/* Booking Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 3% auto;
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalFadeIn 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px 25px;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.3rem;
    cursor: pointer;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.step.active .step-circle {
    background-color: var(--primary);
    color: white;
}

.step.completed .step-circle {
    background-color: var(--primary);
    color: white;
}

.step.completed .step-circle::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7rem;
}

.step-text {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.step.active .step-text {
    color: var(--primary);
}

/* Step Content */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
    text-align: center;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.service-option {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 6px 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: white;
    height: 50px;
    width: 100%;
    overflow: hidden;
}

.service-option:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.service-option.selected {
    border-color: var(--primary);
    background-color: rgba(187, 125, 74, 0.15);
}

.service-icon {
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 12px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.service-name {
    margin-left: -30%;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--secondary);
}

.service-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 12px;
    flex-shrink: 0;
}

.service-duration {
    font-size: 0.75rem;
    color: var(--gray);
    background-color: rgba(0, 0, 0, 0.05);
    padding: 3px 6px;
    border-radius: 10px;
    margin-right: 8px;
    flex-shrink: 0;
}

.service-badges {
    background: var(--primary);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-left: 8px;
}

.selected-indicator {
    color: var(--primary);
    margin-left: 8px;
    opacity: 0;
    transition: var(--transition);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-option.selected .selected-indicator {
    opacity: 1;
}

/* Personal Information Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Date and Time Selection */
.datetime-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.calendar {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px;
    background: var(--light);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calendar-month {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 0.8rem;
    padding: 4px;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.calendar-weekday,
.calendar-day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    font-size: 0.8rem;
}

.calendar-weekday {
    font-weight: 600;
    color: var(--gray);
    font-size: 0.75rem;
}

.calendar-day {
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.calendar-day:hover {
    background-color: rgba(193, 154, 107, 0.1);
}

.calendar-day.selected {
    background-color: var(--primary);
    color: white;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background-color: transparent;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 8px 6px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light);
    font-size: 0.8rem;
}

.time-slot:hover {
    border-color: var(--primary);
}

.time-slot.selected {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.time-slot.disabled {
    color: #ccc;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

/* Confirmation Step */
.confirmation-details {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
    gap: 10px;
}

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

.confirmation-label {
    font-weight: 500;
    color: var(--secondary);
    flex-shrink: 0;
}

.confirmation-value {
    color: var(--dark);
    text-align: right;
    word-break: break-word;
}

.confirmation-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
}

/* Modal Footer */
.modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border-top: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.btn-prev {
    background: transparent;
    color: var(--gray);
    border: 1px solid #e0e0e0;
}

.btn-prev:hover {
    background: #f0f0f0;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 3px 10px rgba(193, 154, 107, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(193, 154, 107, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.btn-submit:hover {
    box-shadow: 0 6px 15px rgba(39, 174, 96, 0.4);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 30px 15px;
}

.success-icon {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.success-message h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.success-message p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Modal Responsive - Desktop */
@media (min-width: 769px) {
    .modal-content {
        margin-top: 4%;
        max-height: 85vh;
    }

    .modal-body {
        max-height: calc(85vh - 130px);
    }
}

/* Modal Responsive - Tablet */
@media (max-width: 768px) {
    .modal-content {
        margin: 2% auto;
        width: 96%;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .service-option {
        height: 45px;
        padding: 5px 10px;
    }

    .service-icon {
        font-size: 1.1rem;
        margin-right: 10px;
    }

    .service-name {
        font-size: 0.85rem;
        margin-left: 0;
    }

    .service-price {
        font-size: 0.85rem;
        margin-right: 10px;
    }

    .service-duration {
        font-size: 0.7rem;
        margin-right: 5px;
    }

    .service-badges {
        font-size: 0.6rem;
        padding: 2px 5px;
    }

    .datetime-selection {
        grid-template-columns: 1fr;
    }

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

    .confirmation-item {
        flex-direction: column;
        gap: 2px;
    }

    .confirmation-value {
        text-align: left;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 15px;
    }
}

/* Modal Responsive - Mobile */
@media (max-width: 480px) {
    .modal-content {
        margin: 0;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-body {
        max-height: calc(100vh - 120px);
        padding: 12px;
    }

    .service-options {
        gap: 8px;
    }

    .service-option {
        height: 42px;
        padding: 4px 8px;
    }

    .service-icon {
        font-size: 1rem;
        margin-right: 8px;
    }

    .service-name {
        font-size: 0.8rem;
        margin-left: 0;
    }

    .service-price {
        font-size: 0.8rem;
    }

    .service-duration {
        font-size: 0.65rem;
        padding: 2px 4px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-text {
        font-size: 0.65rem;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .time-slot {
        padding: 6px 4px;
        font-size: 0.75rem;
    }

    .calendar-day,
    .calendar-weekday {
        height: 24px;
        font-size: 0.7rem;
    }

    .modal-footer {
        padding: 10px 15px;
    }

    .btn-prev,
    .btn-next,
    .btn-submit {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* CONTACT US PAGE STYLES */
/* Contact Page Hero */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Main Section */
.contact-main {
    background-color: white;
}

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

.social-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light);
    border-radius: 50%;
    color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.39);
    transition: var(--transition);
}

.social-link a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--light);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

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

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

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

@media (max-width: 576px) {
    .contact-hero {
        padding: 150px 0 80px;
    }

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Global Section Responsive */
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }
}

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

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.8rem;
    }
}

/* Back to top responsive */
@media (max-width: 480px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}
