* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --primary: #E61B23; /* Brand Red */
    --primary-light: #ffebec;
    --secondary: #1a1a1a; /* Black from Navbar */
    --accent: #f7a80b; /* Yellow from Logo */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #eaeaea;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
}

/* Base Header */
header {
    background-color: var(--secondary);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-placeholder {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-placeholder span {
    color: var(--primary);
}

.book-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #c4151b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 27, 35, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary);
}

/* Main Content Wrapper */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section with Image Option */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.content-section.reverse {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .content-section, .content-section.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.content-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 15px;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.content-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Image Option Styling */
.image-option {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    height: 400px;
    background-color: #eee;
}

.image-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-option:hover img {
    transform: scale(1.05);
}

.image-option::after {
    content: 'Image Area';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.image-option img[src=""] + ::after,
.image-option img:not([src]) + ::after {
    opacity: 1;
}

/* Service Grid Section */
.service-grid-wrapper {
    background-color: var(--bg-light);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.service-grid-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-grid-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-grid-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.service-thumbnail {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-links {
    margin-top: auto;
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 15px;
}

.service-links h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.location-pill {
    background-color: var(--white);
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.location-pill:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

footer p {
    opacity: 0.8;
}
