* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Navigation */
.navbar {
    background: white;
    color: #333;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #f0f0f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #e3f2fd;
    color: #1E88E5;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-image {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-img {
    width: 100%;
    height: auto;
    min-height: 500px;
    max-height: 600px;
    object-fit: cover;
    display: block;
    -ms-interpolation-mode: bicubic;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
}

.btn-secondary {
    background: white;
    color: #1E88E5;
    border: 2px solid #1E88E5;
}

.btn-secondary:hover {
    background: #e3f2fd;
    color: #1565C0;
    border-color: #1565C0;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.feature-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    -ms-interpolation-mode: bicubic;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Image Gallery Styles */
.service-image-gallery,
.feature-image-gallery {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.feature-image-gallery {
    height: 300px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    -ms-interpolation-mode: bicubic;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
    pointer-events: none;
}

.gallery-image.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 136, 229, 0.8);
    color: white;
    border: none;
    padding: 1rem 1.2rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: background 0.3s;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(30, 136, 229, 1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active,
.dot:hover {
    background: rgba(255, 255, 255, 1);
}

.before-after-label {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.label-before,
.label-after {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.label-before.active,
.label-after.active {
    color: rgba(255, 255, 255, 1);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #1E88E5;
    margin: 1.5rem 1.5rem 1rem;
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1E88E5;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Services Content */
.services-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-item.request-only {
    border: 2px solid #ffa726;
    position: relative;
}

.service-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    -ms-interpolation-mode: bicubic;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-item h2 {
    color: #1E88E5;
    margin: 1.5rem 1.5rem 1rem;
}

.service-item p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.service-note {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.service-note.request-badge {
    background: #fff3e0;
    padding: 0.75rem 1.5rem;
    margin: 1rem 1.5rem 1.5rem;
    border-radius: 5px;
    color: #e65100;
    font-weight: 500;
    display: inline-block;
}

.pricing-box {
    background: #f5f5f5;
    padding: 1.5rem;
    margin: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1E88E5;
}

.pricing-box h3 {
    color: #1E88E5;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    padding: 0.5rem 0;
    color: #333;
    line-height: 1.6;
}

.pricing-list li strong {
    color: #1E88E5;
}

.pricing-note {
    text-align: center;
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    color: #1976d2;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 3rem;
}

.contact-section h2 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.contact-info {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.contact-info p {
    margin: 0.75rem 0;
    font-size: 1.1rem;
    color: #333;
}

.contact-info a {
    color: #1E88E5;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #1565C0;
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Service Selection Section */
.service-selection-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.service-selector {
    margin-bottom: 1.5rem;
}

.service-selector label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #333;
}

.service-selector select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s;
    cursor: pointer;
}

.service-selector select:focus {
    outline: none;
    border-color: #1E88E5;
}

.service-pricing-display {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1E88E5;
    margin-top: 1rem;
}

.service-pricing-display h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-pricing-display h4 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.pricing-display-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-display-list li {
    padding: 0.5rem 0;
    color: #333;
    line-height: 1.6;
}

.request-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fff3e0;
    border-radius: 5px;
    color: #e65100;
    font-size: 0.9rem;
}

/* Calendar Section */
.calendar-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .calendar-section {
        grid-template-columns: 1fr;
    }
}

.calendar-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-header h2 {
    color: #1E88E5;
    font-size: 1.5rem;
}

.calendar-nav {
    background: #1E88E5;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.calendar-nav:hover {
    background: #1565C0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: bold;
    color: #1E88E5;
    padding: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    position: relative;
}

.calendar-day:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.calendar-day.other-month {
    color: #ccc;
    background: #f9f9f9;
}

.calendar-day.today {
    background: #e3f2fd;
    border-color: #1E88E5;
    font-weight: bold;
}

.calendar-day.selected {
    background: #1E88E5;
    color: white;
}

.calendar-day.unavailable {
    background: #ffebee;
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day-number {
    font-size: 1rem;
}

.calendar-day-price {
    font-size: 0.7rem;
    margin-top: 0.2rem;
    color: #666;
}

.calendar-day.selected .calendar-day-price {
    color: rgba(255,255,255,0.9);
}

/* Schedule Info */
.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-panel {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-panel h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.time-slot {
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: #f5f5f5;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.time-slot:hover {
    background: #e3f2fd;
    border-color: #1E88E5;
}

.time-slot.selected {
    background: #1E88E5;
    color: white;
}

.time-slot.unavailable {
    background: #ffebee;
    color: #ccc;
    cursor: not-allowed;
}

/* Booking Form */
.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form h3 {
    color: #1E88E5;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E88E5;
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s;
    cursor: pointer;
}

.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
}

.form-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #ff6f00;
    font-style: italic;
}

/* Unique Requests Section */
.unique-requests-section {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.unique-requests-section h2 {
    color: #1E88E5;
    margin-bottom: 1rem;
    text-align: center;
}

.unique-requests-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.unique-request-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .calendar-grid {
        gap: 0.25rem;
    }

    .calendar-day {
        font-size: 0.8rem;
    }
}

