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

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin-left: 0;
}

main {
    padding-top: 90px;
}

.skip-link {
    position: fixed;
    top: 16px;
    left: -999px;
    padding: 10px 16px;
    background-color: #ff6b35;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1101;
    transition: left 0.2s ease;
}

.skip-link:focus {
    left: 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Top Header Navigation */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
    gap: 20px;
    position: relative;
}

.top-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-menu-toggle:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.top-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.top-logo i {
    color: #ff6b35;
    font-size: 24px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.top-nav-link:hover {
    color: #ff6b35;
}

.top-nav-link.active {
    color: #ff6b35;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-login,
.top-signup {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.top-login:hover,
.top-signup:hover {
    color: white;
    border-color: #ff6b35;
}

.top-cta {
    background: #ff6b35;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.top-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
}


/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    
    padding-left: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-subtitle {
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: #ff6b35;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.45);
}

.hero-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
}

.hero-btn.secondary:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.scroll-indicator {
    margin-top: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Visit Section */
.visit-section {
    min-height: 70vh;
    background: #fdf7f4;
    padding: 100px 40px 80px;
    margin-left: 0;
    padding-left: 40px;
}

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

.visit-title {
    font-size: 60px;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.visit-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 50px;
    font-weight: 400;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.visit-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.visit-card i {
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.visit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.visit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 40px;
    margin-left: 0;
    padding-left: 40px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: center;
}

.about-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.about-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85) contrast(1.1);
}

.about-content {
    background: white;
    padding: 80px 60px;
    position: relative;
    margin-left: -50px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 70px;
    color: #ff6b35;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

/* Services Section */
.services-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 40px 80px;
    margin-left: 0;
    padding-left: 40px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-title {
    font-size: 70px;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.services-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 60px;
    font-weight: 400;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c5a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-title {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-pricing {
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.price-from {
    font-size: 14px;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #ff6b35;
}

.service-book-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.service-book-btn:active {
    transform: translateY(0);
}

/* Stylists Section */
.stylists-section {
    min-height: 100vh;
    background: white;
    padding: 120px 40px 80px;
    margin-left: 0;
    padding-left: 40px;
}

.stylists-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stylists-title {
    font-size: 70px;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.stylists-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 60px;
    font-weight: 400;
}

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

.stylist-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.stylist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stylist-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.stylist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

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

.stylist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.stylist-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.stylist-social a:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.stylist-info {
    padding: 30px;
}

.stylist-name {
    font-size: 26px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #2c2c2c;
    margin: 0 0 5px 0;
}

.stylist-title {
    font-size: 16px;
    color: #ff6b35;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stylist-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.star-rating-small {
    display: flex;
    gap: 3px;
}

.star-rating-small i {
    color: #ffc107;
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.stylist-experience {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.stylist-experience i {
    color: #ff6b35;
    font-size: 16px;
}

.stylist-skills {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.stylist-skills h4 {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #2c2c2c;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stylist-book-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stylist-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.stylist-book-btn:active {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 120px 40px 80px;
    margin-left: 0;
    padding-left: 40px;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 107, 53, 0.02) 50px,
            rgba(255, 107, 53, 0.02) 100px
        );
    pointer-events: none;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-title {
    font-size: 70px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.testimonials-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 60px;
    font-weight: 400;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 107, 53, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff6b35;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #2c2c2c;
    margin: 0 0 5px 0;
}

.testimonial-service {
    font-size: 14px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0;
}

.star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.star-rating i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.before-after-item {
    text-align: center;
}

.ba-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ba-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.ba-image:hover {
    transform: scale(1.05);
    border-color: #ff6b35;
}

.ba-before {
    filter: grayscale(0.3);
}

.ba-after {
    border-color: #ff6b35;
}

/* Gallery Section */
.gallery-section {
    min-height: 100vh;
    background: white;
    padding: 120px 40px 80px;
    margin-left: 0;
    padding-left: 40px;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 80px;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 5px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-image:hover::before {
    opacity: 1;
}

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

.gallery-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-image:hover .gallery-label {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px),
        linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    padding: 120px 40px 80px;
    position: relative;
    margin-left: 0;
    padding-left: 40px;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M30 50 Q35 35, 40 50 Q45 65, 50 50 Q55 35, 60 50" stroke="rgba(255,255,255,0.03)" stroke-width="1" fill="none"/></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-title {
    font-size: 80px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-btn {
    display: block;
    width: 200px;
    margin: 30px auto 0;
    padding: 15px 40px;
    background-color: #2c2c2c;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.contact-social {
    margin-top: 40px;
    text-align: center;
}

.contact-social-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 15px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background: #fff;
    color: #ff6b35;
    transform: translateY(-2px);
}

/* Footer Section */
.footer-section {
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 80px 40px 30px;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
}

.footer-text {
    margin: 15px 0 20px;
    color: #cfcfcf;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.footer-links h3,
.footer-contact h3,
.footer-cta h3 {
    margin-bottom: 16px;
    font-size: 18px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: #cfcfcf;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-contact p {
    margin: 0 0 12px;
    color: #cfcfcf;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-cta p {
    margin: 0 0 18px;
    color: #cfcfcf;
    line-height: 1.6;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #ff6b35;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: #9b9b9b;
    font-size: 14px;
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    * {
        max-width: 100%;
    }
    
    html, body {
        margin-left: 0;
        width: 100%;
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .top-header {
        left: 0;
        width: 100%;
    }

    .top-header-inner {
        padding: 16px 20px;
    }

    .top-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .top-menu {
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: rgba(44, 44, 44, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        display: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }

    .top-header.menu-open .top-menu {
        display: flex;
    }

    .top-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .top-nav-link {
        font-size: 14px;
        padding: 8px 10px;
        border-radius: 6px;
    }

    .top-nav-link:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .top-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .top-login,
    .top-signup {
        display: inline-flex;
        justify-content: center;
    }
    
    .top-cta {
        text-align: center;
    }
    
    .hero-section,
    .visit-section,
    .about-section,
    .services-section,
    .stylists-section,
    .testimonials-section,
    .gallery-section,
    .contact-section {
        margin-left: 0 !important;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 60px;
    }

    .hero-actions {
        flex-direction: column;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        margin-left: 0;
        margin-top: -50px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
}

/* Tablet View */
@media (min-width: 769px) and (max-width: 992px) {
    .service-book-btn,
    .stylist-book-btn {
        width: auto;
        display: inline-block;
        min-width: 160px;
        max-width: 45%;
        margin: 0 auto;
    }
    
    .stylist-image {
        height: 400px;
    }
    
    .stylist-image img {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }
    
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 40px;
        word-wrap: break-word;
    }

    .hero-tagline {
        font-size: 14px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title,
    .services-title,
    .stylists-title,
    .testimonials-title,
    .gallery-title,
    .contact-title {
        font-size: 36px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .about-container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .services-subtitle,
    .stylists-subtitle,
    .testimonials-subtitle {
        font-size: 14px;
        padding: 0 10px;
        word-wrap: break-word;
    }

    .visit-title {
        font-size: 32px;
        padding: 0 10px;
    }

    .visit-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card-title {
        font-size: 22px;
    }
    
    .service-description {
        font-size: 14px;
        min-height: auto;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .stylists-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stylist-image {
        height: 300px;
    }
    
    .stylist-info {
        padding: 25px 20px;
    }
    
    .stylist-name {
        font-size: 22px;
    }
    
    .testimonials-container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonials-title {
        font-size: 32px;
        letter-spacing: 1px;
        padding: 0 5px;
    }
    
    .testimonials-subtitle {
        padding: 0 5px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-name {
        font-size: 18px;
        word-wrap: break-word;
    }
    
    .testimonial-text {
        font-size: 14px;
        word-wrap: break-word;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-title {
        font-size: 32px;
        padding: 0 10px;
    }
    
    .contact-title {
        font-size: 32px;
        padding: 0 10px;
    }
    
    .contact-container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .services-container,
    .stylists-container,
    .gallery-container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .services-title,
    .stylists-title {
        padding: 0 10px;
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

