/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header Styles */
.top-bar {
    background-color: #000;
    padding: 10px 0;
    text-align: center;
}

.call-button {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 20px;
    border: 2px solid #fff;
    display: inline-block;
    transition: all 0.3s;
}

.call-button:hover {
    background-color: #fff;
    color: #000;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #E63946E6;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.call-button:hover {
    background-color: #E63946E6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.call-button:active {
    transform: translateY(0);
}

.phone-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Animation */
@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.call-button:hover .phone-icon {
    animation: ring 0.5s ease-in-out;
}
/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e63946;
}

.phone-number a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/background.jpg') center/cover no-repeat;
    background-color: #1a1a1a;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature {
    background-color: rgba(230, 57, 70, 0.9);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
}

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

.hero p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #e63946;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #d62839;
    transform: translateY(-2px);
}

/* Services Icons Section */
.services-icons {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.icon-item {
    text-align: center;
    padding: 20px;
}

.icon-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* CTA Section */
.cta-section {
    background-color: #e63946;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.cta-section .cta-button {
    background-color: #fff;
    color: #e63946;
}

.cta-section .cta-button:hover {
    background-color: #f8f9fa;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

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

.footer-column h4 {
    color: #e63946;
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

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

.footer-column a:hover {
    color: #e63946;
}

.footer-column img {
    max-width: 200px;
}

.social-media {
    text-align: center;
    margin-bottom: 20px;
}

.social-media a {
    display: inline-block;
    margin: 0 10px;
}

.social-media img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Page Content Styles */
.page-content {
    padding: 60px 20px;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #333;
}

.page-content h2 {
    font-size: 28px;
    margin: 30px 0 20px;
    color: #e63946;
}

/* Services Page */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-item h3 {
    color: #e63946;
    margin-bottom: 15px;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content ul {
    list-style-position: inside;
    margin-left: 20px;
}

.about-content li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-details .info-block {
    margin-bottom: 30px;
}

.contact-details h3 {
    color: #e63946;
    margin-bottom: 10px;
}

.contact-details a {
    color: #333;
    text-decoration: none;
}

.contact-details a:hover {
    color: #e63946;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e63946;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .icon-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
}
