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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-secondary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2563eb;
}

.nav-contact .phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #dc2626;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-contact .phone-btn:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #4b5563;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    background-color: rgba(0, 0, 255, 0.3); /* Semi-translucent blue background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white; /* Ensure text is white */
}

.hero-title,
.hero-subtitle {
    color: white !important; /* Force white color for hero text */
    text-shadow: none; /* Remove text shadow as box provides contrast */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    background-color: #f9fafb;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

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

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
}

/* Trust Signals */
.trust-signals {
    background-color: #1f2937;
    color: white;
}

.trust-signals .section-header h2 {
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.trust-item h3 {
    color: white;
    font-size: 1.125rem;
}

/* Testimonials */
.testimonials {
    background-color: #f9fafb;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.testimonial-author strong {
    color: #1f2937;
    display: block;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Location & Contact */
.location-contact {
    background-color: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h2 {
    color: #1f2937;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #2563eb;
    font-size: 1.25rem;
    margin-top: 4px;
    min-width: 20px;
}

.contact-item strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: #4b5563;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.location-map {
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Promotions */
.promotions {
    background-color: #f9fafb;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.promotion-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.promotion-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.promotion-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.promotion-card .discount-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.promotion-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.promotion-card .btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
    margin-top: auto;
}

.promotion-card .btn:hover {
    background-color: #1d4ed8;
}

.promotion-card .expiry-date {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-contact i {
    color: #2563eb;
    min-width: 16px;
}

.footer-contact a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .testimonial-card,
    .promotion-card {
        padding: 1.5rem;
    }
}



/* Contact Page Specific Styles */
.contact-info {
    background-color: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 2rem;
}

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

.contact-method {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    background-color: #e0e7ff;
    color: #2563eb;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-info h3 {
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-size: 1.125rem;
}

.method-info p {
    margin: 0;
    color: #4b5563;
}

.method-info a {
    color: #2563eb;
    text-decoration: none;
}

.method-info span {
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-form-section {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.contact-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    color: #374151;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .checkbox-group {
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    color: #4b5563;
}

.contact-form .checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    transform: scale(1.2);
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.125rem;
}

.map-section {
    background-color: white;
    padding-top: 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.map-container {
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    text-align: center;
    color: #6b7280;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.map-placeholder h3 {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    margin-bottom: 1rem;
}

.location-details {
    background-color: #f3f4f6;
    padding: 2.5rem;
    border-radius: 12px;
}

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

.location-item h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-item h3 i {
    color: #2563eb;
    font-size: 1.25rem;
}

.location-item p {
    color: #4b5563;
    margin: 0;
}

.emergency-contact {
    background-color: #1f2937;
    color: white;
}

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

.emergency-info h2 {
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-info h2 i {
    color: #ef4444;
    font-size: 2rem;
}

.emergency-info p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.emergency-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.emergency-btn {
    background-color: #dc2626;
    border-color: #dc2626;
    color: white;
    padding: 15px 30px;
    font-size: 1.125rem;
}

.emergency-btn:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.emergency-note {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
}

.emergency-services h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.emergency-services ul {
    list-style: none;
    padding: 0;
}

.emergency-services li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.emergency-services li i {
    color: #2563eb;
    font-size: 1rem;
}

.contact-faq {
    background-color: #f9fafb;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1f2937;
}

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

.contact-faq .faq-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-faq .faq-item h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.contact-faq .faq-item p {
    color: #4b5563;
    margin: 0;
}

.contact-faq .faq-cta {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
}

.contact-faq .faq-cta a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-faq .faq-cta a:hover {
    text-decoration: underline;
}

.contact-cta {
    background-color: #2563eb;
    color: white;
    text-align: center;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-option {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px;
}

.contact-option:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-option span {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.contact-option strong {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Book Now Page Specific Styles */
.booking-options {
    background-color: #f9fafb;
}

.booking-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.booking-method {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.booking-method:hover {
    transform: translateY(-5px);
}

.booking-method .method-icon {
    margin: 0 auto 1.5rem;
}

.booking-method h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.booking-method p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.appointment-booking {
    background-color: white;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.booking-form-section {
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.booking-form-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.appointment-form .form-step {
    display: none;
}

.appointment-form .form-step.active {
    display: block;
}

.appointment-form h3 {
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #e0e7ff;
    padding-bottom: 0.75rem;
}

.appointment-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.appointment-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    color: #374151;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.appointment-form textarea {
    resize: vertical;
    min-height: 80px;
}

.appointment-form .form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.appointment-form .form-buttons .btn {
    min-width: 120px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h3 i {
    color: #2563eb;
    font-size: 1.5rem;
}

.hours-list,
.expectation-list,
.bring-list {
    list-style: none;
    padding: 0;
}

.hours-list .hour-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.expectation-list li,
.bring-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.expectation-list li i,
.bring-list li i {
    color: #2563eb;
    font-size: 1rem;
}

.emergency-card {
    background-color: #dc2626;
    color: white;
}

.emergency-card h3 {
    color: white;
}

.emergency-card h3 i {
    color: white;
}

.emergency-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.emergency-card .emergency-btn {
    background-color: white;
    color: #dc2626;
    border-color: white;
    width: 100%;
}

.emergency-card .emergency-btn:hover {
    background-color: #f3f4f6;
    color: #b91c1c;
}

.service-packages {
    background-color: #f3f4f6;
}

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

.package-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.package-card.featured {
    border: 2px solid #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #2563eb;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.package-features li i {
    color: #2563eb;
    font-size: 1rem;
}

.package-card .btn {
    margin-top: auto; /* Pushes button to the bottom */
    width: 80%;
}

/* Responsive adjustments for Contact and Book Now pages */
@media (max-width: 1024px) {
    .contact-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section,
    .booking-form-section {
        padding: 2rem;
    }
    
    .booking-info {
        order: -1; /* Move info cards above form on smaller screens */
    }
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.5rem;
    }
    
    .emergency-content {
        grid-template-columns: 1fr;
    }
    
    /* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: abs.hero-title,
.hero-subtitle {
    color: #FFFFFF !important; /* Force white color for hero text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Stronger text shadow */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%); /* Even darker overlay */
    z-index: -1;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.85); /* Even darker semi-transparent background for text */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white; /* Ensure text is white */
}ansform: translateY(-5px);
}

.service-detail-header {
    display: flex;
    align-items: center;
    padding: 25px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.service-detail-header .service-icon {
    font-size: 36px;
    color: #0056b3; /* Primary color */
    margin-right: 20px;
}

.service-detail-header .service-title h3 {
    margin: 0;
    font-size: 22px;
    color: #333;
}

.service-detail-header .service-title .service-price {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
    display: block;
}

.service-detail-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #28a745; /* Success color */
    margin-right: 10px;
}

.service-detail-content .btn {
    margin-top: auto; /* Pushes button to the bottom */
    align-self: flex-start;
}




/* Promotions Page Specific Styles */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.coupon-card {
    background-color: #ffffff;
    border: 2px dashed #0056b3; /* Primary color border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coupon-card:hover {
    transform: translateY(-5px);
}

.coupon-card::before {
    content: '✂️'; /* Scissor icon for coupon */
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #ffc107;
    border-radius: 50%;
    padding: 5px;
    font-size: 20px;
    line-height: 1;
    transform: rotate(-20deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.coupon-card h3 {

.coupon-card .discount-text {
    font-size: 36px;
    font-weight: 700;
    color: #28a745; /* Success color */
    margin-bottom: 15px;
}

.coupon-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.coupon-card .btn {
    background-color: #ffc107; /* Warning color */
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.coupon-card .btn:hover {
    background-color: #e0a800;
}

.coupon-card .expiry-date {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
}

/* Responsive adjustments for Promotions page */
@media (max-width: 768px) {
    .prom.hero-title,
.hero-subtitle {
    color: white !important; /* Revert to white text */
    text-shadow: 2px 2px 8px rgba(0, 0, 0.hero-title,
.hero-subtitle {
    color: white !important; /* Force white color for hero text */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Stronger text shadow */
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%); /* Even darker overlay */
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.85); /* Even darker semi-transparent background for text */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white; /* Ensure text is white */
}

/* Services Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-detail {
    background-color: #f9fafb;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    color: #4b5563;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-detail-header {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-detail-header .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.service-title h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.service-price {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 600;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.service-features li i {
    color: #2563eb;
    font-size: 1rem;
    width: 16px;
}

.service-guarantee {
    background-color: white;
}

.guarantee-content h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.guarantee-item {
    text-align: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.guarantee-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.guarantee-item p {
    color: #4b5563;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.btn-white {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

.btn-white:hover {
    background-color: #f3f4f6;
    color: #1d4ed8;
    border-color: #f3f4f6;
}

/* Responsive adjustments for Services page */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .service-detail-card {
        margin-bottom: 1rem;
    }
}



/* Form Submission Messages */
.loading-message,
.confirmation-message,
.error-message {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    padding: 2rem;
    text-align: center;
    border-left: 5px solid #2563eb;
    animation: slideIn 0.3s ease-out;
}

.error-message {
    border-left-color: #dc2626;
}

.loading-content,
.confirmation-content,
.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.loading-content i,
.confirmation-content i,
.error-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.error-content i {
    color: #dc2626;
}

.loading-content h3,
.confirmation-content h3,
.error-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.loading-content p,
.confirmation-content p,
.error-content p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.confirmation-content a,
.error-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.confirmation-content a:hover,
.error-content a:hover {
    text-decoration: underline;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spinner animation */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

