/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Barbershop Theme Colors */
:root {
    --primary-red: #E63946;
    --primary-blue: #1D3557;
    --primary-white: #F1FAEE;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f9fa;
    --text-dark: #212529;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Typography */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-family: 'Bebas Neue', cursive;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Image */
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 80px;
    width: auto;
    max-width: 120px; /* Prevents the logo from becoming too wide */
    height: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 60px; /* Reduced from 100px */
    width: auto;
    max-width: 150px; /* Reduced from 250px */
    margin: 10px 0;
    object-fit: contain;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
    box-shadow: var(--shadow);
    min-height: 120px; /* Increased minimum height */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1000;
    height: 120px; /* Fixed height */
}

.nav-logo {
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1; /* Allow logo to take available space */
    max-width: 300px; /* Prevent from becoming too wide */
}

.nav-logo img {
    height: 80px;
    width: auto;
    max-width: 100%; /* Allow image to fill the container */
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

.nav-link {
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Bebas Neue', cursive;
    color: var(--primary-white);
    text-decoration: none;
    height: 100%;
    padding: 5px 15px; /* Added horizontal padding */
    display: flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: calc(100% - 30px); /* Account for padding */
    height: 2px;
    bottom: 0;
    left: 15px; /* Match the padding */
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    background-color: var(--primary-red);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto; /* Push menu to the right */
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 5px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Oswald', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--primary-white);
}

.btn-primary:hover {
    background: #d62828;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--primary-white);
}

.btn-secondary:hover {
    background: #152747;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-blue) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 5rem;
}

.hero-text h2 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.hero-text p {
    color: var(--primary-white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Image with browser compatibility */
.hero-image {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease, -moz-box-shadow 0.3s ease;
    -o-transition: -o-transform 0.3s ease, -o-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-image i {
    font-size: 4rem;
    color: var(--primary-white);
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.hero-image i:nth-child(2) {
    animation-delay: 1s;
}

.hero-image i:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--primary-white);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary-red);
}

.text-center {
    text-align: center;
}

/* Page Headers */
.page-header {
    margin-top: 70px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-gray) 100%);
    text-align: center;
}

.page-header h1 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--primary-white);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-gray) 100%);
    color: var(--primary-white);
}

.service-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--primary-red);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    margin-bottom: 0.25rem;
}

.service-duration {
    font-size: 0.9rem;
    opacity: 0.8;
}

.service-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary-red);
}

.service-description {
    padding: 1.5rem;
}

.service-description p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description ul {
    list-style: none;
}

.service-description li {
    padding: 0.25rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.cta-section {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.form-step {
    padding: 2rem;
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

/* Service Selection */
.service-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.service-option:hover,
.service-option.selected {
    border-color: var(--primary-red);
    background: rgba(230, 57, 70, 0.05);
}

.service-option .service-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.service-option h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.service-option p {
    color: var(--text-dark);
}

/* Date Selection */
.date-selection {
    text-align: center;
    margin-bottom: 2rem;
}

.date-selection input {
    padding: 12px 20px;
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
}

.date-selection input:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-slot {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-white);
}

.time-slot:hover:not(.disabled) {
    border-color: var(--primary-blue);
    background: rgba(29, 53, 87, 0.05);
}

.time-slot.selected {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: var(--primary-white);
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--light-gray);
}

/* Customer Form */
.customer-form {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Step Buttons */
.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.step-buttons .btn {
    flex: 1;
}

.step-buttons .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Confirmation Message */
.confirmation-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.confirmation-message h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.booking-summary {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.booking-summary h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.confirmation-text {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: var(--primary-white);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: var(--primary-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    padding: 1.5rem;
    color: var(--primary-white);
}

.overlay-content h3 {
    margin-bottom: 0.5rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: var(--primary-white);
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
}

.lightbox-caption {
    margin-top: 1rem;
    color: var(--primary-white);
}

.lightbox-caption h3 {
    margin-bottom: 0.5rem;
}

/* About Section */
.about-story {
    padding: 80px 0;
    background: var(--primary-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.story-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-shop-image {
    width: 100%;
    height: 100%;
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.about-shop-image:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-gray) 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-white);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.values-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.team-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-gray) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-image .image-placeholder {
    width: 120px;
    height: 120px;
    background: var(--primary-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
}

.member-image .image-placeholder i {
    font-size: 3rem;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-red);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-skills span {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.testimonials-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-red);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-red);
    position: absolute;
    left: -2rem;
    top: -1rem;
    opacity: 0.3;
}

.testimonial-author {
    text-align: right;
}

.author-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-red);
    min-width: 50px;
    text-align: center;
}

.contact-details h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-red);
}

.contact-form-container h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-gray) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-white);
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.map-placeholder h3 {
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.map-placeholder .btn {
    background: var(--primary-red);
    color: var(--primary-white);
}

.map-placeholder .btn:hover {
    background: #d62828;
}

/* Quick Actions */
.quick-actions {
    padding: 80px 0;
    background: var(--primary-white);
}

.quick-actions h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: var(--text-dark);
}

.action-card.whatsapp-action:hover {
    background: #25d366;
    color: var(--primary-white);
}

.action-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.action-card.whatsapp-action .action-icon {
    color: #25d366;
}

.action-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.action-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.action-card.whatsapp-action:hover h3,
.action-card.whatsapp-action:hover p {
    color: var(--primary-white);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128c7e;
}

/* Social Media Float Buttons */
.social-floats {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000; /* Increased z-index to ensure visibility */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* Increased from 50px */
    height: 60px; /* Increased from 50px */
    border-radius: 50%;
    color: white;
    font-size: 28px; /* Increased from 24px */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float { background-color: #25D366; }
.linkedin-float { background-color: #0077B5; }
.facebook-float { background-color: #3B5998; }
.tiktok-float { background-color: #000000; }

.social-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover { background-color: #128C7E; }
.linkedin-float:hover { background-color: #005f91; }
.facebook-float:hover { background-color: #2d4373; }
.tiktok-float:hover { background-color: #333; }

/* Responsive adjustments for social media buttons */
@media (max-width: 768px) {
    .social-floats {
        bottom: 20px;
        right: 20px;
    }
    
    .social-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--primary-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    color: var(--primary-red);
}

.footer-section p {
    color: var(--primary-white);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--primary-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-red);
}

.footer-section i {
    color: var(--primary-red);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-gray);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }


    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Story Content */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image .image-placeholder {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    /* Confirmation Actions */
    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }

    .confirmation-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Step Buttons */
    .step-buttons {
        flex-direction: column;
    }

    /* Service Selection */
    .service-selection {
        grid-template-columns: 1fr;
    }

    /* Time Slots */
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    /* Actions Grid */
    .actions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image i {
        font-size: 3rem;
    }

    .service-selection {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-filters {
        justify-content: center;
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Admin Styles */
.admin-link {
    color: #ff6b6b !important;
}

.admin-login {
    margin-top: 120px;
    padding: 80px 0;
    background: var(--light-gray);
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.login-form-container {
    max-width: 400px;
    margin: 0 auto;
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.login-form-container h1 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 0.75rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
}

.admin-dashboard {
    margin-top: 120px;
    padding: 40px 0;
    min-height: calc(100vh - 120px);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.admin-header h1 {
    color: var(--primary-blue);
    margin: 0;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: var(--primary-blue);
    margin: 0;
}

.booking-filters {
    display: flex;
    gap: 1rem;
}

.booking-filters select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

/* Tables */
.services-table, .bookings-table {
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.services-table table, .bookings-table table {
    width: 100%;
    border-collapse: collapse;
}

.services-table th, .bookings-table th,
.services-table td, .bookings-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.services-table th, .bookings-table th {
    background: var(--primary-blue);
    color: var(--primary-white);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.services-table tr:hover, .bookings-table tr:hover {
    background: var(--light-gray);
}

.action-btn {
    padding: 0.25rem 0.75rem;
    margin: 0 0.25rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.edit-btn {
    background: var(--primary-blue);
    color: var(--primary-white);
}

.delete-btn {
    background: var(--primary-red);
    color: var(--primary-white);
}

.action-btn:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--primary-white);
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-blue);
}

.close {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--primary-red);
}

.modal form {
    padding: 1.5rem;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

/* Branch Selection */
.branch-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.branch-option {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.branch-option:hover,
.branch-option.selected {
    border-color: var(--primary-red);
    background: rgba(230, 57, 70, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.branch-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    min-width: 60px;
    text-align: center;
}

.branch-details h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.branch-details p {
    color: var(--text-dark);
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.branch-details i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

/* Time Slot Enhancements */
.time-slot.booked {
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
    opacity: 0.7;
}

.time-slot.booked:hover {
    background: #f8d7da;
    border-color: var(--border-color);
    transform: none;
}

.time-slot.booked::after {
    content: 'BOOKED';
    display: block;
    font-size: 0.7rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

/* Responsive Design for Admin */
@media (max-width: 768px) {
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .booking-filters {
        flex-direction: column;
    }

    .admin-tabs {
        flex-direction: column;
    }

    .tab-btn {
        text-align: center;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .tab-btn.active {
        border-left-color: var(--primary-red);
        border-bottom: none;
    }

    .services-table, .bookings-table {
        overflow-x: auto;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .branch-selection {
        grid-template-columns: 1fr;
    }

    .branch-option {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-table th, .bookings-table th,
    .services-table td, .bookings-table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .action-btn {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }
}
