* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header & Navigation - RED THEME */
header {
    background: linear-gradient(to right, #8B0000, #C00000);
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 5px;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

nav a:hover {
    color: #FFD700;
}

nav a.active {
    color: #FFD700;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFD700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section - RED THEME */
.hero {
    background: linear-gradient(rgba(139, 0, 0, 0.8), rgba(192, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #FFE44D;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.content-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #8B0000;
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #C00000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.1);
    transition: transform 0.3s;
    border-top: 4px solid #C00000;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.15);
}

.service-icon {
    background: linear-gradient(to right, #8B0000, #C00000);
    color: white;
    font-size: 2.5rem;
    padding: 25px;
    text-align: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #8B0000;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Forms - RED THEME */
.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border-top: 4px solid #C00000;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #8B0000;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-control:focus {
    border-color: #C00000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(192, 0, 0, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(to right, #8B0000, #C00000);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 30px auto 0;
}

.submit-btn:hover {
    background: linear-gradient(to right, #9B0000, #D00000);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Areas Served - RED THEME */
.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.area-item {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.05);
    transition: all 0.3s;
    border-left: 3px solid #C00000;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.1);
    background-color: #FFF5F5;
}

/* Footer - RED THEME */
footer {
    background: linear-gradient(to right, #8B0000, #C00000);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #FFD700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #f0f0f0;
}

/* Page-specific styles */
.hidden-keywords {
    display: none;
}

/* Red Theme Highlights */
.red-highlight {
    color: #C00000;
    font-weight: bold;
}

.red-bg-light {
    background-color: #FFF5F5;
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(to right, #8B0000, #C00000);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.2);
}

.emergency-banner i {
    color: #FFD700;
    margin-right: 10px;
}

/* Contact Details Box */
.contact-details-box {
    background: linear-gradient(to right, #8B0000, #C00000);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
}

.contact-details-box h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-details-box p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

/* Booking Options */
.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.booking-option {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.1);
    border-top: 4px solid #C00000;
    transition: transform 0.3s;
}

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

.booking-option i {
    font-size: 3rem;
    color: #C00000;
    margin-bottom: 20px;
}

.booking-option h3 {
    color: #8B0000;
    margin-bottom: 15px;
}

.booking-option .btn {
    display: inline-block;
    background-color: #8B0000;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.booking-option .btn:hover {
    background-color: #C00000;
}

/* Logo in Footer */
.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Company Name Styling */
.company-name {
    font-size: 2.2rem;
    background: linear-gradient(to right, #8B0000, #C00000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: #C00000;
    margin-bottom: 10px;
}

.feature-item h4 {
    color: #8B0000;
    margin-bottom: 10px;
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.additional-service {
    background: white;
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #C00000;
}

.additional-service h4 {
    color: #8B0000;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Quick Booking */
.quick-booking {
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    nav ul {
        gap: 15px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(to bottom, #8B0000, #C00000);
        width: 100%;
        text-align: center;
        padding: 30px 0;
        gap: 0;
        transition: left 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
        left: 0;
    }
    
    nav ul li {
        margin-bottom: 25px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .emergency-banner {
        font-size: 1rem;
        padding: 12px;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .company-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .red-bg-light {
        padding: 25px;
    }
    
    .contact-details-box {
        padding: 20px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    .company-name {
        font-size: 1.4rem;
    }
}