/* Global Styles */
:root {
--primary-color: #2c3e50;
--secondary-color: #34495e;
--accent-color: #3498db;
--highlight-color: #f1c40f;
--text-color: #333;
--light-bg: #f5f5f5;
--white: #ffffff;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color: var(--text-color);
background-color: var(--light-bg);
padding-bottom: 80px;
}

/* Header Styles */
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2rem;
max-width: 1200px;
margin: 0 auto;
}

.header-contact {
background-color: var(--highlight-color);
padding: 0.5rem 1rem;
border-radius: 4px;
}

.phone-link {
color: var(--primary-color);
font-weight: bold;
text-decoration: none;
white-space: nowrap;
}

.phone-link:hover,
.phone-link:focus {
text-decoration: underline;
outline: 2px solid var(--accent-color);
outline-offset: 2px;
}

header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
padding: 1rem 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Navigation */
nav {
background-color: var(--secondary-color);
padding: 0.5rem 0;
position: sticky;
top: 0;
z-index: 1000;
}

nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
}

nav ul li {
margin: 0 1rem;
}

nav ul li a {
color: var(--white);
text-decoration: none;
padding: 0.5rem 1rem;
display: block;
transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
background-color: var(--accent-color);
border-radius: 4px;
}

/* Main Content */
main {
max-width: 1200px;
margin: 2rem auto;
padding: 0 2rem;
}

/* Hero Section */
.hero {
text-align: center;
margin-bottom: 3rem;
}

.hero h2 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.service-image {
margin-top: 2rem;
}

.service-image img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
background-color: var(--white);
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.services h3 {
color: var(--primary-color);
margin-top: 0;
}

.service-list {
columns: 2;
column-gap: 2rem;
}

.service-list li {
margin-bottom: 0.5rem;
break-inside: avoid;
}

/* Service Detail Page */
.service-detail {
background-color: var(--white);
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
height: 0;
overflow: hidden;
margin: 2rem 0;
}

.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 8px;
}

.cta-box {
text-align: center;
margin: 2rem 0;
}

.cta-button {
display: inline-block;
background-color: var(--accent-color);
color: var(--white);
padding: 0.8rem 1.5rem;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
background-color: var(--primary-color);
}

/* Contact Form */
.contact-form {
background-color: var(--white);
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-bottom: 2rem;
}

.contact-form h2 {
color: var(--primary-color);
margin-top: 0;
}

.contact-form div {
margin-bottom: 1rem;
}

.contact-form label {
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 0.5rem;
border: 1px solid #ddd;
border-radius: 4px;
font-family: inherit;
}

.contact-form textarea {
min-height: 150px;
}

.contact-form button {
background-color: var(--accent-color);
color: var(--white);
border: none;
padding: 0.8rem 1.5rem;
border-radius: 4px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}

.contact-form button:hover,
.contact-form button:focus {
background-color: var(--primary-color);
}

/* Our Address Section */
.our-address {
background-color: var(--white);
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.our-address h2 {
color: var(--primary-color);
margin-top: 0;
}

/* Thank You Page */
.thank-you-message {
text-align: center;
background-color: var(--white);
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Footer */
footer {
background-color: var(--secondary-color);
color: var(--white);
text-align: center;
padding: 1rem 0;
position: fixed;
bottom: 0;
width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
.header-content {
flex-direction: column;
text-align: center;
}
