@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--accent-color);
}

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

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: var(--white);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

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

/* Section Styles */
section {
    padding: 40px 0;
}

.section-header-with-image {
    position: relative;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.section-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    color: #666;
    margin-bottom: 30px;
}

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

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.service-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.service-icon {
    font-size: 32px;
    margin: 12px 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 15px 10px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 11px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    padding: 0 15px 15px;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.location-item {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
    color: var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.location-item:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.05);
    border-color: var(--primary-color);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-primary {
    background-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #e67e22;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.about-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 14px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-info {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 300;
}

.contact-item strong {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--accent-color);
}

.blog-content p {
    font-size: 11px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-meta {
    font-size: 11px;
    color: #999;
    font-weight: 300;
}

/* Blog Article Styles */
.blog-article {
    min-height: 100vh;
}

.blog-hero {
    position: relative;
    padding: 80px 0 40px;
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: 40px;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.9) 0%, rgba(231,76,60,0.8) 100%);
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-breadcrumb {
    font-size: 11px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.blog-breadcrumb a {
    color: white;
    text-decoration: none;
}

.blog-hero h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-meta-header {
    display: flex;
    gap: 20px;
    font-size: 11px;
    opacity: 0.9;
}

.blog-article-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.blog-main {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.blog-featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.blog-main h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.blog-main h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 12px;
    color: var(--primary-color);
}

.blog-main p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.blog-main ul, .blog-main ol {
    margin: 15px 0;
    padding-left: 25px;
}

.blog-main li {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

.blog-cta {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.blog-cta h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.blog-cta .btn {
    margin: 5px;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.sidebar-widget p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sidebar-widget a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 12px;
}

.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    margin-bottom: 10px;
}

.location-list a {
    display: block;
    padding: 10px;
    background: var(--light-bg);
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 12px;
}

.location-list a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateX(5px);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-content {
    padding: 15px;
}

.product-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.product-content p {
    font-size: 11px;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 11px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(243,156,18,0.3);
}

.process-step h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 11px;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.testimonial-stars {
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 12px;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 30px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.faq-question {
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    background: var(--light-bg);
    transition: background 0.3s;
}

.faq-item:hover .faq-question {
    background: rgba(243,156,18,0.1);
}

.faq-answer {
    padding: 15px 20px;
    font-size: 11px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 2;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    nav ul.active {
        display: flex;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slider-arrow {
        padding: 10px 15px;
        font-size: 20px;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .blog-grid,
    .products-grid,
    .features-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-article-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 20px;
    }

    .section-header-with-image {
        height: 150px;
    }

    .section-header-content {
        padding: 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .contact-form,
    .contact-info {
        padding: 25px;
    }
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.phone-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.phone-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .hero-slider {
        height: 300px;
    }

    .slide-content h1 {
        font-size: 22px;
    }

    .slide-content p {
        font-size: 14px;
    }

    section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

