* { margin: 0; padding: 0; box-box: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background-color: #f9f9f9; color: #333; }

/* Navigation */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 10%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.logo { font-size: 1.5rem; font-weight: bold; color: #007bff; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; }

/* Hero Section */
.hero { background: linear-gradient(rgba(0,123,255,0.8), rgba(0,123,255,0.8)), url('hero-bg.jpg'); background-size: cover; color: white; text-align: center; padding: 80px 20px; }
.hero h1 { font-size: 2.5rem; margin-bottom: 10px; }

/* Services Grid */
.services-container { padding: 50px 10%; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

.service-card { background: white; padding: 30px; border-radius: 10px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-card .icon { font-size: 3rem; margin-bottom: 15px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: #666; font-size: 0.9rem; margin-bottom: 20px; }

.book-btn { background: #007bff; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: bold; }
.book-btn:hover { background: #0056b3; }

.contact-section {
    padding: 80px 10%;
    background: #f4f7f6;
    min-height: 80vh;
}

.contact-container {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
    flex: 1;
    background: #007bff;
    color: white;
    padding: 40px;
}

.contact-info h2 { margin-bottom: 20px; }

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item span {
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-form {
    flex: 1.5;
    padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover { background: #0056b3; }

/* Responsive */
@media (max-width: 768px) {
    .contact-container { flex-direction: column; }
}

html {
    scroll-behavior: smooth;
}

.footer-strip {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #e0e0e0;
    padding: 60px 0 20px 0;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #007bff; /* Accent Blue */
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }

.footer-links a, .footer-contact a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #007bff;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #666;
}

.footer-social a {
    color: #fff;
    background: #333;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 20px; }
}

.footer-legal a {
    color: #007bff; /* HomeFix Brand Blue */
    background: rgba(0, 123, 255, 0.1); /* Very faint blue box */
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-legal a:hover {
    background: #007bff;
    color: #ffffff; /* Inverts colors on hover */
}





/* Unique styling for the Discount Modal */
.discount-content {
    text-align: center;
    border: 3px solid #007bff;
    padding: 40px;
}

.discount-badge {
    background: #ffcc00;
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.promo-code {
    background: #f8f9fa;
    border: 2px dashed #007bff;
    padding: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin: 20px 0;
    letter-spacing: 2px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}