/* Global Styles */
* {
    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 15px;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    text-decoration: none;
    color: white;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #007bff;
    padding: 12px 24px;
    border: 2px solid #007bff;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
}

.call-btn {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
    margin-bottom: 5px;
}

.call-btn:hover {
    background-color: #1e7e34;
    text-decoration: none;
    color: white;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    text-decoration: none;
    color: white;
}

/* Header */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.logo p {
    color: #666;
    font-size: 0.9rem;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Navigation */
nav {
    background-color: #007bff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    color: white;
    padding: 15px 20px;
    font-weight: 500;
    transition: background-color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #0056b3;
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: white;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Section Styles */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

/* Service Highlights */
.service-highlights {
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

.service-link {
    color: #007bff;
    font-weight: 600;
}

/* Why Choose Us */
.why-choose {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
}

.feature p {
    color: #666;
}

/* Service Areas */
.service-areas {
    background-color: #f8f9fa;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.area {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #007bff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial p {
    margin-bottom: 20px;
    font-style: italic;
}

.customer {
    font-weight: 600;
    text-align: right;
}

/* FAQ */
.faq {
    background-color: #f8f9fa;
}

.faq-items {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: #007bff;
}

.faq-item p {
    color: #666;
}

/* Trust Badges */
.trust-badges {
    background-color: white;
}

.badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.badge {
    text-align: center;
}

.badge i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.badge p {
    font-weight: 600;
}

/* 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-about h3, .footer-services h3, .footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-about p {
    margin-bottom: 20px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #007bff;
    text-decoration: none;
    color: white;
}

.footer-services ul {
    list-style: none;
}

.footer-services ul li {
    margin-bottom: 10px;
}

.footer-services ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-services ul li a:hover {
    color: #007bff;
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact p i {
    margin-right: 10px;
    color: #007bff;
}

.footer-contact p a {
    color: #ccc;
}

.footer-contact p a:hover {
    color: #007bff;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-call, .floating-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.floating-call {
    background-color: #28a745;
    color: white;
}

.floating-whatsapp {
    background-color: #25d366;
    color: white;
}

.floating-call:hover, .floating-whatsapp:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}

.floating-call i, .floating-whatsapp i {
    font-size: 1.5rem;
}

/* Page Header */
.page-header {
    background-color: #007bff;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Service Details */
.service-details {
    background-color: white;
}

.service-details p {
    margin-bottom: 20px;
    color: #666;
}

.repair-types, .installation-types, .gas-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.repair-type, .installation-type, .gas-type {
    text-align: center;
}

.repair-type img, .installation-type img, .gas-type img {
    border-radius: 8px;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
}

.gas-service-image {
    margin: 40px 0;
    text-align: center;
}

.gas-service-image img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    color: #666;
}

/* Service Benefits */
.service-benefits {
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit i {
    color: #28a745;
    font-size: 1.5rem;
    margin-top: 5px;
}

.benefit h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit p {
    color: #666;
}

/* Emergency Service */
.emergency-service {
    background-color: #ff6b6b;
    color: white;
}

.emergency-service h2 {
    color: white;
}

.emergency-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.emergency-feature {
    text-align: center;
}

.emergency-feature i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.emergency-feature h3 {
    color: white;
    margin-bottom: 15px;
}

.emergency-cta {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.emergency-cta h3 {
    color: white;
    margin-bottom: 15px;
}

.emergency-cta p {
    margin-bottom: 20px;
}

.emergency-cta .btn-primary {
    background-color: white;
    color: #ff6b6b;
}

.emergency-cta .btn-primary:hover {
    background-color: #f1f1f1;
}

/* Signs Gas Refill */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sign {
    text-align: center;
}

.sign i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.sign h3 {
    margin-bottom: 15px;
}

.sign p {
    color: #666;
}

/* Installation Checklist */
.checklist-items {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.checklist-item i {
    color: #28a745;
    font-size: 1.2rem;
}

/* Contact Info */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-method h3 {
    margin-bottom: 15px;
}

.contact-method p {
    margin-bottom: 20px;
    color: #666;
}

.call-btn-large, .whatsapp-btn-large, .email-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.call-btn-large {
    background-color: #28a745;
    color: white;
    margin-bottom: 10px;
}

.call-btn-large:hover {
    background-color: #1e7e34;
    text-decoration: none;
    color: white;
}

.whatsapp-btn-large {
    background-color: #25d366;
    color: white;
}

.whatsapp-btn-large:hover {
    background-color: #128c7e;
    text-decoration: none;
    color: white;
}

.email-btn {
    background-color: #007bff;
    color: white;
}

.email-btn:hover {
    background-color: #0056b3;
    text-decoration: none;
    color: white;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Location */
.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    margin-bottom: 20px;
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info p i {
    color: #007bff;
    width: 20px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Company Introduction */
.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mission and Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value {
    text-align: center;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* Experience and Expertise */
.expertise-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-label {
    font-weight: 600;
}

/* Brands Serviced */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand {
    text-align: center;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.brand-logo {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* Local Commitment */
.commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-point {
    text-align: center;
}

.commitment-point i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* Team Section */
.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-feature {
    text-align: center;
}

.team-feature i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* Blog Posts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-post {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

.post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: left;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-content p {
    margin-bottom: 20px;
    color: #666;
}

.read-more {
    color: #007bff;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Blog Categories */
.blog-categories {
    margin-top: 60px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.blog-categories h3 {
    margin-bottom: 20px;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.category {
    background-color: white;
    padding: 10px 20px;
    border-radius: 20px;
    color: #007bff;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s, color 0.3s;
}

.category:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
}

/* Newsletter */
.newsletter {
    background-color: #007bff;
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
}

.newsletter p {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
}

.newsletter-form button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #1e7e34;
}

/* CTA Section */
.cta-section {
    background-color: #007bff;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: white;
    color: #007bff;
}

.cta-section .btn-primary:hover {
    background-color: #f1f1f1;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: #007bff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .header .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-contact {
        align-items: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .page-buttons {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary, .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .service-card, .feature, .benefit {
        padding: 20px;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .location-info {
        order: 2;
    }
    
    .map-container {
        order: 1;
    }
}