/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    text-decoration: none;
    color: #1a73e8;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    background-color: #1a73e8;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0d47a1;
    text-decoration: none;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1, .logo .logo-text {
    font-size: 1.8rem;
    color: #1a73e8;
    font-weight: bold;
}

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

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
}

nav ul li a:hover {
    color: #1a73e8;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

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

.service-item {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h3 {
    padding: 20px 20px 10px;
    color: #1a73e8;
}

.service-item p {
    padding: 0 20px 20px;
}

.service-item a {
    display: block;
    text-align: right;
    padding: 0 20px 20px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

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

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-weight: bold;
    color: #1a73e8;
}

/* Issue Pages Section */
.issue-pages {
    padding: 60px 0;
    background-color: white;
}

.issue-pages h2 {
    margin-bottom: 30px;
    text-align: center;
}

.issue-pages ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.issue-pages ul li a {
    display: block;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.issue-pages ul li a:hover {
    background-color: #e0e0e0;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #1a73e8;
    margin-bottom: 20px;
}

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

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
}

/* Specific Page Styles */
.internal-page {
    padding: 40px 0;
}

.internal-page h1 {
    margin-bottom: 30px;
    color: #1a73e8;
    font-size: 2.4rem;
    text-align: center;
}

.content-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

/* Services Page Styling */
.content-section h2 {
    color: #1a73e8;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.services .content-section {
    transition: transform 0.3s ease;
}

.services .content-section:hover {
    transform: translateY(-5px);
}

.service-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #f0f4f8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #1a73e8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-item h3::before {
    content: '🔧';
    margin-right: 10px;
    font-size: 1.2em;
}

#emergency h3::before {
    content: '🚨';
}

#installation h3::before {
    content: '🔨';
}

#repairs h3::before {
    content: '🛠️';
}

#maintenance h3::before {
    content: '📅';
}

.service-item ul {
    padding-left: 20px;
    margin-top: 10px;
    columns: 2;
}

.service-item ul li {
    margin-bottom: 8px;
    position: relative;
}

.service-item p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.internal-page .btn {
    margin-right: 15px;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.internal-page .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-item ul {
        columns: 1;
    }
    
    .internal-page h1 {
        font-size: 2rem;
    }
} 