/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6e1447;
    --primary-dark: #4A0F32;
    --primary-light: #8A1E5E;
    --secondary-color: #2563EB;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-dark: #111827;
    --bg-gray: #1F2937;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --border-light: #E5E7EB;
}

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow: hidden;
    overflow-y: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 30px;
    font-size: 14px;
}

.top-bar-left i {
    margin-right: 8px;
}

.top-bar-right a {
    color: var(--white);
    margin-left: 15px;
    font-size: 18px;
    transition: opacity 0.3s;
}

.top-bar-right a:hover {
    opacity: 0.8;
}

/* Main Header */
.main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border: none;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px 10px;
    background-color: #6e1447;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 0 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    &:hover {
        background-color: #8a1e5e;
    }
}

.call-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.call-btn span {
    font-weight: bold;
}

.call-btn:hover {
    background: var(--primary-dark);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-outline-light, .btn-light {
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--bg-light);
}

.btn-outline {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-light:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Tag */
.tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(110, 20, 71, 0.5), rgba(37, 99, 235, 0.5)), url('images/bg.webp') center/cover no-repeat;
    padding: 80px 0;
    color: var(--white);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(110, 20, 71, 0.5) 0%, rgba(37, 99, 235, 0.5) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin: 20px 0;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #D1D5DB;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.placeholder-image {
    background: var(--bg-light);
    border: 2px dashed var(--border-light);
    padding: 150px 20px;
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 500;
}

/* About Us Section */
.about-us {
    padding: 100px 0;
}

.about-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-content h2, .section-header h2 {
    font-size: 42px;
    margin: 20px 0;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-images img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 20px;
}

.features p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-info strong {
    color: var(--primary-color);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--white);
}

.section-header p {
    color: #D1D5DB;
    font-size: 18px;
    margin-top: 15px;
}

/* Our Services Section */
.our-services {
    background: var(--bg-dark);
    padding: 100px 0;
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.service-image {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.service-content {
    background: rgba(0,0,0,0.7);
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.btn-service {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-service:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.services-info {
    margin: 50px 0;
    padding: 30px;
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.services-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.services-info p:last-child {
    margin-bottom: 0;
}

.text-center {
    text-align: center;
}

/* Request Quote Section */
.request-quote {
    padding: 100px 0;
}

.request-quote .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.quote-content h2 {
    font-size: 42px;
    margin: 20px 0;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quote-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.quote-image {
    height: 100%;
}

/* Our Process Section */
.our-process {
    background: var(--bg-dark);
    padding: 100px 0;
    color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-item {
    text-align: center;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-icon {
    background: var(--bg-gray);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-item p {
    color: #D1D5DB;
}

/* Our Projects Section */
.our-projects {
    padding: 100px 0;
    background: var(--white);
}

.our-projects .section-header h2 {
    color: var(--text-dark);
}

.our-projects .section-header p {
    color: var(--text-light);
}

.our-projects .tag {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(110, 20, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
}

/* Mid CTA */
.mid-cta {
    background: var(--bg-gray);
    padding: 80px 0;
    color: var(--white);
}

.mid-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2 {
    font-size: 42px;
    margin: 20px 0 0;
}

/* Our Team Section */
.our-team {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.member-image {
    background: var(--bg-light);
    border: 2px dashed var(--border-light);
    padding: 200px 20px;
    border-radius: 8px;
    color: var(--text-light);
    text-align: center;
}

/* Highest Rated Section */
.highest-rated {
    background: var(--bg-dark);
    padding: 100px 0 80px;
    color: var(--white);
    position: relative;
}

.highest-rated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.highest-rated .container {
    position: relative;
    z-index: 1;
}

.rating-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rating-content h2 {
    font-size: 42px;
    margin: 20px 0;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.rating-display i {
    font-size: 48px;
    color: var(--primary-color);
}

.rating-score {
    font-size: 36px;
    font-weight: bold;
}

.rating-label {
    font-size: 16px;
    color: #D1D5DB;
}

.rating-image .placeholder-image {
    padding: 150px 20px;
}

/* Blog Articles Section */
.blog-articles {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    background: var(--bg-light);
    border: 2px dashed var(--border-light);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 14px;
    color: var(--text-light);
}

.blog-category {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-left: 15px;
}

.blog-content h3 {
    font-size: 20px;
    margin: 15px 0 10px;
}

.blog-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq .section-header h2 {
    color: var(--text-dark);
}

.faq .section-header p {
    color: var(--text-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: #D1D5DB;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D1D5DB;
}

.contact-list i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #D1D5DB;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .about-us .container,
    .request-quote .container,
    .rating-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-image,
    .rating-image {
        display: none;
    }

    .services-grid,
    .process-steps,
    .team-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-header .container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
    }

    .call-btn {
        display: none;
    }

    .hero-content h1,
    .section-header h2,
    .about-content h2 {
        font-size: 32px;
    }

    .services-grid,
    .process-steps,
    .team-grid,
    .blog-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .mid-cta .container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        gap: 15px;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav:hover {
    background: rgba(110, 20, 71, 0.8);
    color: var(--white);
}

@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 30px;
        width: 45px;
        height: 45px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20b354;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        left: 15px;
        bottom: 20px;
    }
}

