/* ========================================
   OPTITECH ENGINEERING - HVAC WEBSITE
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #C41E3A;
    --primary-dark: #a01830;
    --secondary-color: #ffffff;
    --dark-grey: #333333;
    --light-grey: #B2BEB5;
    --ash-grey: #B2BEB5;
    --text-color: #555555;
    --border-color: #e0e0e0;
    --success-color: #25D366;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--success-color);
    color: var(--secondary-color);
}

.btn-whatsapp:hover {
    background-color: #1fb855;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-grey);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 18px;
    color: var(--text-color);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    box-shadow: var(--shadow);
    z-index: 1000;
}

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

.logo a {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--dark-grey);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-cta {
    display: block;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-grey);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, var(--ash-grey) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-grey);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

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

.service-card {
    background: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #E85D75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 32px;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 20px;
    color: var(--dark-grey);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #E85D75 100%);
    color: var(--secondary-color);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.why-choose-text .section-badge {
    margin-bottom: 15px;
}

.why-choose-text h2 {
    font-size: 38px;
    color: var(--dark-grey);
    margin-bottom: 20px;
    font-weight: 700;
}

.why-choose-text > p {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.features-list {
    margin-bottom: 35px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--dark-grey);
}

.features-list li i {
    color: #4ade80;
    font-size: 20px;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay h3 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.project-overlay span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, var(--ash-grey) 100%);
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.testimonials-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(196, 30, 58, 0.85) 100%);
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.section-header.light h2,
.section-header.light p {
    color: var(--secondary-color);
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary-color);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content i {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    color: var(--dark-grey);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--dark-grey);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands {
    padding: 80px 0;
    background: var(--light-grey);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.brand-item {
    background: white;
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 80px;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-fallback {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .brands-grid {
        gap: 20px;
    }
    
    .brand-item {
        padding: 20px 30px;
        min-width: 140px;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #E85D75 100%);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.92) 0%, rgba(45, 45, 45, 0.88) 100%);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    color: var(--secondary-color);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #E85D75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 18px;
    color: var(--dark-grey);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 15px;
    color: var(--text-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--secondary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--dark-grey);
    color: var(--secondary-color);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--secondary-color);
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.contact-list li i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ========================================
   MOBILE STICKY CALL BUTTON
   ======================================== */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    z-index: 999;
}

.mobile-call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 30px;
    color: var(--secondary-color);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 40px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Header */
    .nav,
    .header-cta {
        display: none;
    }
    
    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        box-shadow: var(--shadow);
        padding: 20px;
    }
    
    .nav.active .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero */
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 28px;
    }
    
    /* Why Choose */
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-choose-image {
        order: -1;
    }
    
    .why-choose-image img {
        height: 350px;
    }
    
    .experience-badge {
        right: 20px;
        bottom: 20px;
        padding: 20px 25px;
    }
    
    .experience-badge .years {
        font-size: 32px;
    }
    
    .why-choose-text h2 {
        font-size: 30px;
    }
    
    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 28px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    /* Mobile Call Button */
    .mobile-call-btn {
        display: block;
    }
    
    .whatsapp-float {
        bottom: 80px;
    }
    
    /* Add padding for fixed mobile button */
    .footer {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* ========================================
   ADDITIONAL PAGE STYLES
   ======================================== */

/* Hero Tagline */
.hero-tagline {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-subtext {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Outline Button */
.btn-outline-white {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline-white:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* Page Hero */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #E85D75 100%);
    text-align: center;
    color: var(--secondary-color);
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text h2 {
    font-size: 32px;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 22px;
    color: var(--dark-grey);
    margin: 30px 0 15px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.brand-tag {
    background: var(--light-grey);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-item span {
    font-size: 16px;
    color: var(--dark-grey);
    font-weight: 500;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-page {
    padding: 80px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-large {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: var(--secondary-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card-large:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
}

.service-card-large .service-icon {
    width: 100px;
    height: 100px;
    margin: 0;
    flex-shrink: 0;
}

.service-card-large .service-icon i {
    font-size: 40px;
}

.service-info h3 {
    font-size: 24px;
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.service-info p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* ========================================
   SERVICE DETAIL PAGE
   ======================================== */
.service-detail {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.service-detail-content h2 {
    font-size: 28px;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--dark-grey);
    margin: 30px 0 15px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-includes {
    list-style: none;
    padding: 0;
}

.service-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--dark-grey);
}

.service-includes li i {
    color: var(--primary-color);
    font-size: 20px;
}

.service-cta {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.service-cta h3 {
    margin-top: 0;
}

.service-cta .cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.sidebar-card {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.sidebar-card h4 {
    font-size: 18px;
    color: var(--dark-grey);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-grey);
}

.service-links {
    list-style: none;
}

.service-links li {
    margin-bottom: 10px;
}

.service-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-color);
    transition: var(--transition);
}

.service-links li a:hover,
.service-links li.active a {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #E85D75 100%);
    color: var(--secondary-color);
}

.contact-card h4 {
    color: var(--secondary-color);
    border-bottom-color: rgba(255,255,255,0.2);
}

.contact-card p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ========================================
   PROJECTS PAGE
   ======================================== */
.projects-page {
    padding: 80px 0;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.projects-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.projects-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--light-grey);
    border-radius: 10px;
}

.projects-note p {
    color: var(--dark-grey);
    font-size: 16px;
}

.projects-note i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* ========================================
   BLOG PAGE
   ======================================== */
.blog-page {
    padding: 80px 0;
}

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

.blog-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 20px;
    color: var(--dark-grey);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
}

.read-more:hover {
    gap: 12px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-page {
    padding: 80px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 28px;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.contact-info-section > p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-grey);
    border-radius: 12px;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card-icon.whatsapp {
    background: var(--success-color);
}

.contact-card-info h4 {
    font-size: 14px;
    color: var(--dark-grey);
    margin-bottom: 5px;
}

.contact-card-info a,
.contact-card-info span {
    font-size: 15px;
    color: var(--text-color);
}

.contact-card-info a:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form-section .contact-form {
    background: var(--light-grey);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

/* ========================================
   RESPONSIVE - ADDITIONAL PAGES
   ======================================== */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .service-card-large {
        flex-direction: column;
        text-align: center;
    }
    
    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }
    
    .projects-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .service-cta .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .projects-grid-page {
        grid-template-columns: 1fr;
    }
    
    .project-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* ========================================
   NEW HERO SECTION DESIGN
   ======================================== */
.hero {
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(45, 45, 45, 0.85) 100%);
}

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

.hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
}

.hero-badge i {
    color: var(--secondary-color);
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero .hero-tagline {
    font-size: 26px;
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 15px;
    opacity: 0.9;
}

.hero-feature i {
    color: #4ade80;
    font-size: 14px;
}

.hero .hero-buttons {
    justify-content: center;
    margin-bottom: 40px;
}

.btn-lg {
    padding: 16px 35px;
    font-size: 16px;
}

.btn-outline-light {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 14px;
    opacity: 0.85;
}

.trust-item i {
    font-size: 18px;
    color: #fbbf24;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: var(--secondary-color);
    padding: 60px 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-grey);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #E85D75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    color: var(--secondary-color);
    font-size: 24px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-color);
}

/* ========================================
   SECTION BADGE
   ======================================== */
.section-badge {
    display: inline-block;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header .section-badge {
    margin-bottom: 15px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   IMPROVED SERVICE CARDS
   ======================================== */
.service-card {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #E85D75);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-inner {
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 12px;
}

/* ========================================
   ENHANCED PAGE HERO
   ======================================== */
.page-hero-enhanced {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    color: var(--secondary-color);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.92) 0%, rgba(45, 45, 45, 0.88) 100%);
}

.page-hero-enhanced .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 15px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    font-size: 10px;
    opacity: 0.6;
}

.breadcrumb span {
    color: var(--secondary-color);
}

.page-hero-enhanced h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-hero-enhanced p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES INTRO SECTION
   ======================================== */
.services-intro {
    padding: 80px 0;
    background: var(--light-grey);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text .section-badge {
    margin-bottom: 20px;
}

.intro-text h2 {
    font-size: 36px;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--dark-grey);
    font-weight: 500;
}

.intro-feature i {
    color: var(--primary-color);
    font-size: 18px;
}

.intro-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* ========================================
   SERVICES SHOWCASE
   ======================================== */
.services-showcase {
    padding: 80px 0;
    background: var(--secondary-color);
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-showcase-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: var(--light-grey);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.service-showcase-card:hover {
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.12);
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(196, 30, 58, 0.08);
    line-height: 1;
}

.service-showcase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #E85D75);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-showcase-icon i {
    color: var(--secondary-color);
    font-size: 28px;
}

.service-showcase-content h3 {
    font-size: 22px;
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.service-showcase-content p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-grey);
    padding: 6px 0;
}

.service-highlights li i {
    color: #4ade80;
    font-size: 12px;
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands-section {
    padding: 60px 0;
    background: var(--light-grey);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.brand-item {
    background: var(--secondary-color);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-grey);
    transition: var(--transition);
}

.brand-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE - NEW SECTIONS
   ======================================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }
    
    .hero .hero-tagline {
        font-size: 20px;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .hero-feature {
        font-size: 14px;
    }
    
    .hero-trust {
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        order: -1;
    }
    
    .page-hero-enhanced {
        padding: 140px 0 60px;
    }
    
    .page-hero-enhanced h1 {
        font-size: 36px;
    }
    
    .service-showcase-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-showcase-icon {
        margin: 0 auto;
    }
    
    .service-highlights {
        justify-content: center;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero .hero-content {
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .hero-tagline {
        font-size: 18px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 8px 18px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .page-hero-enhanced h1 {
        font-size: 30px;
    }
    
    .page-hero-enhanced p {
        font-size: 16px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
    
    .service-showcase-card {
        padding: 25px;
    }
    
    .intro-text h2 {
        font-size: 28px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .brand-item {
        padding: 18px 15px;
        font-size: 14px;
    }
}

/* ========================================
   SERVICE CARDS V2 - WITH IMAGES
   ======================================== */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-v2 {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.2);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-v2:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(196, 30, 58, 0.95) 0%, transparent 100%);
    padding: 30px 20px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-overlay i {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.service-card-v2:hover .service-overlay i {
    transform: scale(1.1) rotate(10deg);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    font-size: 20px;
    color: var(--dark-grey);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-content p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-content .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-content .service-link:hover {
    gap: 12px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--dark-grey);
    border-bottom: 1px solid var(--light-grey);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #4ade80;
    font-size: 12px;
}

/* Services Page Grid */
.services-page-grid {
    padding: 80px 0;
    background: var(--light-grey);
}

.services-page-grid .services-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
}

.services-page-grid .service-card-v2 {
    text-align: left;
}

.services-page-grid .service-content {
    text-align: left;
}

/* ========================================
   RESPONSIVE - SERVICE CARDS V2
   ======================================== */
@media (max-width: 1024px) {
    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-v2 {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .service-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
}

/* ========================================
   SERVICE DETAIL IMAGE
   ======================================== */
.service-detail-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.service-badge i {
    font-size: 28px;
    color: var(--primary-color);
}

/* Related Services Section */
.related-services {
    padding: 80px 0;
    background: var(--light-grey);
}

.related-services .services-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
}

/* ========================================
   RESPONSIVE - SERVICE DETAIL IMAGE
   ======================================== */
@media (max-width: 768px) {
    .service-detail-image img {
        height: 250px;
    }
    
    .service-badge {
        width: 60px;
        height: 60px;
    }
    
    .service-badge i {
        font-size: 24px;
    }
    
    .related-services .services-grid-v2 {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* ========================================
   ENHANCED MOBILE STYLES
   ======================================== */

/* Mobile Navigation Enhancement */
@media (max-width: 768px) {
    .header .container {
        padding: 12px 15px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 20px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 10px;
        font-size: 16px;
    }
    
    .nav-list a::after {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 100;
    }
    
    .header-cta {
        display: none;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero .hero-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero .hero-tagline {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-feature {
        font-size: 13px;
    }
    
    .hero .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-item {
        font-size: 13px;
    }
}

/* Mobile Stats Section */
@media (max-width: 480px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 12px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon i {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* Mobile Services Section */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
    }
    
    .service-icon i {
        font-size: 26px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 14px;
    }
}

/* Mobile Why Choose Section */
@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose-content {
        gap: 40px;
    }
    
    .why-choose-image img {
        height: 280px;
    }
    
    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }
    
    .experience-badge .years {
        font-size: 28px;
    }
    
    .experience-badge .text {
        font-size: 11px;
    }
    
    .why-choose-text h2 {
        font-size: 26px;
    }
    
    .why-choose-text > p {
        font-size: 15px;
    }
    
    .features-list li {
        font-size: 14px;
        padding: 10px 0;
    }
}

/* Mobile Projects Section */
@media (max-width: 768px) {
    .projects {
        padding: 60px 0;
    }
    
    .project-card {
        height: 220px;
    }
    
    .project-overlay h3 {
        font-size: 16px;
    }
}

/* Mobile Testimonials Section */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-card p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .client-name {
        font-size: 16px;
    }
    
    .client-position {
        font-size: 13px;
    }
}

/* Mobile CTA Section */
@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Contact Section */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .info-item {
        gap: 15px;
    }
    
    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .info-item h4 {
        font-size: 16px;
    }
    
    .info-item p {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 15px;
    }
}

/* Mobile Footer Section */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-logo {
        font-size: 22px;
    }
    
    .footer-about p {
        font-size: 14px;
    }
    
    .footer h4 {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .footer-links li,
    .contact-list li {
        font-size: 14px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Mobile Page Hero */
@media (max-width: 768px) {
    .page-hero-enhanced {
        padding: 120px 0 50px;
    }
    
    .page-hero-enhanced h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .page-hero-enhanced p {
        font-size: 15px;
    }
    
    .breadcrumb {
        font-size: 12px;
        gap: 8px;
        margin-bottom: 18px;
    }
}

/* Mobile About Page */
@media (max-width: 768px) {
    .about-content {
        padding: 50px 0;
    }
    
    .about-grid {
        gap: 35px;
    }
    
    .about-image img {
        height: auto;
        max-height: 300px;
    }
    
    .about-text h2 {
        font-size: 26px;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .brand-list {
        justify-content: center;
    }
    
    .brand-tag {
        padding: 6px 14px;
        font-size: 13px;
    }
}

/* Mobile Services Intro */
@media (max-width: 768px) {
    .services-intro {
        padding: 50px 0;
    }
    
    .intro-content {
        gap: 35px;
    }
    
    .intro-text h2 {
        font-size: 26px;
    }
    
    .intro-text p {
        font-size: 15px;
    }
    
    .intro-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .intro-image img {
        height: auto;
        max-height: 300px;
    }
}

/* Mobile Service Showcase */
@media (max-width: 768px) {
    .services-showcase {
        padding: 50px 0;
    }
    
    .service-showcase-card {
        padding: 25px 20px;
    }
    
    .service-showcase-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-showcase-icon i {
        font-size: 22px;
    }
    
    .service-showcase-content h3 {
        font-size: 18px;
    }
    
    .service-showcase-content p {
        font-size: 14px;
    }
}

/* Mobile Blog Page */
@media (max-width: 768px) {
    .blog-page {
        padding: 50px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }
    
    .blog-content p {
        font-size: 14px;
    }
}

/* Mobile Contact Page */
@media (max-width: 768px) {
    .contact-page {
        padding: 50px 0;
    }
    
    .contact-page-grid {
        gap: 40px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 24px;
    }
    
    .contact-cards {
        gap: 15px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-card-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .contact-card-info h4 {
        font-size: 12px;
    }
    
    .contact-card-info a,
    .contact-card-info span {
        font-size: 13px;
    }
}

/* Mobile Projects Page */
@media (max-width: 768px) {
    .projects-page {
        padding: 50px 0;
    }
    
    .project-filters {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .projects-grid-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .projects-note {
        padding: 20px;
    }
    
    .projects-note p {
        font-size: 14px;
    }
}

/* Mobile Service Detail */
@media (max-width: 768px) {
    .service-detail {
        padding: 50px 0;
    }
    
    .service-detail-grid {
        gap: 35px;
    }
    
    .service-detail-content h2 {
        font-size: 24px;
    }
    
    .service-detail-content h3 {
        font-size: 20px;
    }
    
    .service-detail-content p {
        font-size: 15px;
    }
    
    .service-includes li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .service-cta {
        padding: 25px 20px;
    }
    
    .sidebar-card {
        padding: 20px;
    }
    
    .sidebar-card h4 {
        font-size: 16px;
    }
    
    .service-links li a {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* Mobile Brands Section */
@media (max-width: 480px) {
    .brands {
        padding: 40px 0;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .brand-item {
        padding: 12px 10px;
        font-size: 12px;
    }
    
    .brand-item img {
        max-height: 30px;
    }
}

/* Touch-Friendly Button Sizes */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    .btn-lg {
        padding: 14px 28px;
    }
    
    .btn-sm {
        padding: 10px 18px;
        min-height: 38px;
    }
}

/* Improve Text Readability on Mobile */
@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .section-header h2 {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
}

/* Fix Horizontal Scroll Issues */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Mobile Call Button */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    z-index: 999;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
}

.mobile-call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    gap: 10px;
}

.mobile-call-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 75px;
    }
    
    body {
        padding-bottom: 60px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero .hero-content {
        padding-top: 10px;
    }
    
    .page-hero-enhanced {
        padding: 100px 0 40px;
    }
}

/* Small Screen Adjustments */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero .hero-tagline {
        font-size: 16px;
    }
    
    .stats-grid {
        gap: 8px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .page-hero-enhanced h1 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}
