/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #dc2626;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(220, 38, 38, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.nav-logo h2::after {
    content: '⚡';
    position: absolute;
    top: -8px;
    right: -15px;
    font-size: 0.8rem;
    animation: sparkle 2s ease-in-out infinite;
}

.nav-logo h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-logo:hover h2::before {
    transform: scaleX(1);
}

.nav-logo:hover h2 {
    transform: translateY(-2px);
    text-shadow: 2px 4px 8px rgba(220, 38, 38, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    background: rgba(26, 26, 26, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #dc2626, transparent, #dc2626);
    border-radius: 52px;
    z-index: -1;
    opacity: 0.3;
    animation: sparkle 3s ease-in-out infinite;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="barber" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23dc2626" opacity="0.1"/><path d="M20 20 L30 30 M30 20 L20 30" stroke="%23dc2626" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23barber)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero::after {
    content: '✂';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 4rem;
    color: #dc2626;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    flex: 1;
    z-index: 2;
    position: relative;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-content::before {
    content: '🏆';
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    max-width: 400px;
}

.hero-vid {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(220, 38, 38, 0.4),
        0 0 0 3px rgba(220, 38, 38, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: fadeInRight 1s ease-out 0.6s both;
    object-fit: cover;
    transition: all 0.3s ease;
}

.hero-vid:hover {
    transform: scale(1.02);
    box-shadow: 
        0 30px 60px rgba(220, 38, 38, 0.5),
        0 0 0 3px rgba(220, 38, 38, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-fallback {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.4);
    object-fit: cover;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '✂';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    padding-left: 50px;
}

.cta-button:hover::before {
    left: 15px;
    opacity: 1;
}

.cta-button:hover::after {
    left: 100%;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #111111;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #dc2626;
}

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

.service-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        #dc2626 0px,
        #dc2626 5px,
        transparent 5px,
        transparent 10px
    );
    opacity: 0.3;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    position: relative;
}

.price::before {
    content: '✂';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.6;
}

/* Gallery Preview */
.gallery-preview {
    padding: 100px 0;
    background: #0a0a0a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 38, 38, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gallery-overlay i {
    font-size: 2rem;
    color: #ffffff;
}

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: #dc2626;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #000000;
    padding: 50px 0 20px;
    border-top: 1px solid #333;
}

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

.footer-section h3,
.footer-section h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #dc2626;
}

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

.social-links a {
    color: #cccccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #dc2626;
}

/* About Page Styles */
.about-hero,
.portfolio-hero,
.booking-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

.about-content {
    padding: 100px 0;
    background: #111111;
}

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

.barber-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.about-text h2 {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.detail-item i {
    font-size: 1.5rem;
    color: #dc2626;
    min-width: 30px;
}

.detail-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: #cccccc;
}

.about-story {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.story-content h2 {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hobbies-section {
    padding: 100px 0;
    background: #111111;
}

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

.hobby-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.hobby-card:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.hobby-card i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.hobby-card h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hobby-card p {
    color: #cccccc;
}

/* Instagram Feed Styles */
.instagram-feed-section {
    padding: 50px 0;
    background: #111111;
    position: relative;
}

.instagram-feed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="instagram" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23dc2626" opacity="0.05"/><rect x="10" y="10" width="5" height="5" fill="none" stroke="%23dc2626" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23instagram)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.instagram-title {
    text-align: center;
    flex: 1;
}

.instagram-title i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.instagram-title h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.instagram-title p {
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.instagram-follow-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.instagram-follow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.instagram-follow-btn:hover::before {
    left: 100%;
}

.instagram-follow-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.instagram-gallery {
    padding: 50px 0 100px;
    background: #0a0a0a;
    position: relative;
}

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

.instagram-placeholder {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.loading-spinner {
    text-align: center;
    color: #cccccc;
}

.loading-spinner i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
    animation: spin 2s linear infinite;
}

.loading-spinner p {
    font-size: 1.1rem;
    font-weight: 500;
}

.instagram-post {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #1a1a1a;
    border: 2px solid #333;
}

.instagram-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(220, 38, 38, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.instagram-post:hover::before {
    opacity: 1;
}

.instagram-post:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #dc2626;
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.85), rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 1.5rem;
    z-index: 3;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.instagram-overlay .post-likes {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-overlay .post-caption {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    max-height: 60px;
    overflow: hidden;
}

.instagram-cta {
    text-align: center;
    margin-top: 2rem;
}

.instagram-cta p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.view-more-btn {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #dc2626;
    transition: left 0.3s ease;
    z-index: -1;
}

.view-more-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.view-more-btn:hover::before {
    left: 0;
}

.view-more-btn i {
    font-size: 1.1rem;
}

.portfolio-cta {
    padding: 100px 0;
    background: #111111;
    text-align: center;
}

.portfolio-cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.portfolio-cta p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Booking Page Styles */
.booking-system {
    padding: 50px 0 100px;
    background: #111111;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #333;
}

.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: #333;
    color: #cccccc;
    transition: all 0.3s ease;
}

.step.active {
    background: #dc2626;
    color: #ffffff;
}

.step-number {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.step-content h2 {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.services-selection {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #222;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover,
.service-option.selected {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.service-icon {
    background: #dc2626;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-details h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-details p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.service-price {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: auto;
}

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

.calendar-section h3,
.time-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.calendar {
    background: #222;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #333;
}

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

.time-slot {
    background: #222;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 500;
}

.time-slot:hover,
.time-slot.selected {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.time-slot.unavailable {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: #222;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.notification-options {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #222;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    position: relative;
}

.radio-option:hover {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #666;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #dc2626;
    background: #dc2626;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.radio-option input[type="radio"]:checked ~ i,
.radio-option input[type="radio"]:checked ~ span:not(.radio-custom) {
    color: #dc2626;
}

.radio-option i {
    font-size: 1.1rem;
    color: #666;
    transition: color 0.3s ease;
}

.radio-option span:not(.radio-custom) {
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.booking-summary {
    background: #222;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #333;
}

.booking-summary h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.summary-item.total {
    border-top: 1px solid #333;
    padding-top: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.summary-item.total span:last-child {
    color: #dc2626;
    font-size: 1.2rem;
}

.step-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.next-step-btn,
.prev-step-btn,
.confirm-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-step-btn,
.confirm-btn {
    background: #dc2626;
    color: #ffffff;
}

.next-step-btn:hover,
.confirm-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.prev-step-btn {
    background: transparent;
    color: #cccccc;
    border: 2px solid #333;
}

.prev-step-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
}

/* Modal Styles */
.modal,
.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid #333;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #cccccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #dc2626;
}

.confirmation-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.confirmation-modal h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.confirmation-modal p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.close-modal-btn {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-modal-btn:hover {
    background: #b91c1c;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(26, 26, 26, 0.95));
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
        border-radius: 0;
        border: none;
        backdrop-filter: blur(20px);
        z-index: 999;
        overflow: hidden;
    }
    
    .nav-menu::before {
        display: none;
    }

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

    .nav-menu a {
        margin: 1.5rem 0;
        font-size: 1.3rem;
        width: 200px;
        text-align: center;
    }

    .hero .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero {
        text-align: center;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-video {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-vid {
        max-width: 320px;
        width: 100%;
    }

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

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

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

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

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .booking-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-buttons {
        flex-direction: column;
    }
    
    .instagram-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .instagram-title h2 {
        font-size: 2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .time-slots {
        grid-template-columns: 1fr;
    }

    .booking-container {
        padding: 1.5rem;
    }
    
    .notification-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-title h2 {
        font-size: 1.8rem;
    }
    
    .instagram-title i {
        font-size: 2.5rem;
    }
}