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

:root {
    --primary-green: #2C3E3D;
    --primary-green-dark: #1a2a29;
    --primary-green-light: #3d4f4e;
    --secondary-gray: #6C757D;
    --secondary-gray-light: #ADB5BD;
    --background-white: #FFFFFF;
    --text-dark: #212529;
    --text-gray: #6C757D;
    --accent-blue: #007BFF;
    --success-green: #198754;
    --warning-yellow: #FFC107;
    --light-green: #E8F5E8;
    --light-gray: #F8F9FA;
    --mobile-padding: 16px;
    --mobile-margin: 12px;
    --mobile-font-small: 14px;
    --mobile-font-base: 16px;
    --mobile-font-large: 20px;
    --mobile-font-xl: 24px;
    --mobile-font-2xl: 28px;
    --mobile-font-3xl: 32px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: var(--mobile-font-base);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

/* Mobile-first responsive breakpoints */
@media (min-width: 480px) {
    .container {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

/* Header - Mobile First */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px var(--mobile-padding);
    position: relative;
    min-height: 60px;
}

.header-left {
    flex: 0 0 auto;
    z-index: 1001;
}

.header-center {
    display: none; /* Hidden on mobile */
}

.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-info i {
    color: var(--primary-green);
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-label {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1;
}

.phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    padding: 80px 0 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-nav {
    transform: translateX(0);
}

.mobile-nav a {
    display: block;
    padding: 16px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: var(--light-green);
    color: var(--primary-green);
    padding-left: 32px;
}

.mobile-contact {
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-dark);
}

.contact-item i {
    width: 20px;
    color: var(--primary-green);
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: var(--mobile-font-small);
    font-weight: 600;
}

.contact-item span {
    font-size: var(--mobile-font-small);
    color: var(--text-gray);
}

/* Mobile Contact Icons */
.mobile-contact-icons {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-phone-icon,
.mobile-whatsapp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.mobile-phone-icon {
    background: var(--primary-green);
    color: white;
}

.mobile-phone-icon:hover {
    background: var(--primary-green-dark);
    transform: scale(1.1);
}

.mobile-whatsapp-icon {
    background: #25D366;
    color: white;
}

.mobile-whatsapp-icon:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.mobile-phone-icon i,
.mobile-whatsapp-icon i {
    font-size: 18px;
}

/* Mobile Contact Icons Visibility */
@media (max-width: 1024px) {
    .contact-info {
        display: none;
    }
    
    .mobile-contact-icons {
        display: flex;
    }
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .header .container {
        padding: 15px 24px;
    }
    
    .header-center {
        display: flex;
        justify-content: center;
        flex: 1;
    }
    
    .header-right {
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

/* Tablet and Desktop - Show contact info, hide mobile icons */
@media (min-width: 1025px) {
    .contact-info {
        display: flex;
    }
    
    .mobile-contact-icons {
        display: none;
    }
}

/* Hero Section - Mobile First */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') center/cover;
    opacity: 0.1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-left {
    z-index: 2;
    order: 2;
}

.hero-right {
    order: 1;
    width: 100%;
}

.award-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.award-banner i {
    color: var(--warning-yellow);
}

.hero-title {
    font-size: var(--mobile-font-3xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-description {
    font-size: var(--mobile-font-base);
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--mobile-font-base);
}

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

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

.btn-secondary {
    background: var(--warning-yellow);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.trusted-companies {
    text-align: center;
}

.trusted-companies p {
    color: #666;
    margin-bottom: 20px;
    font-size: var(--mobile-font-small);
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.company-logos span {
    color: #999;
    font-weight: 500;
    font-size: var(--mobile-font-small);
}

.hero-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

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

.decorative-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: var(--text-dark);
    opacity: 0.3;
}

.line-1 {
    width: 2px;
    height: 20px;
    top: 20px;
    right: 20px;
    transform: rotate(45deg);
}

.line-2 {
    width: 2px;
    height: 15px;
    top: 40px;
    right: 30px;
    transform: rotate(-45deg);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-2px);
}

.scroll-indicator i {
    color: var(--primary-green);
    font-size: 16px;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .hero-background {
        width: 50%;
        height: 100%;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        text-align: left;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 20px;
        width: auto;
    }
    
    .hero-image {
        height: 500px;
    }
}

/* Services Section - Mobile First */
.services {
    background: white;
    padding: 60px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header .banner {
    background: var(--light-green);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid #d4edda;
}

.services-header .banner i {
    color: var(--warning-yellow);
}

.services-header h2 {
    font-size: var(--mobile-font-2xl);
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
}

.services-header h2::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.service-icon i {
    font-size: 24px;
    margin-bottom: 2px;
}

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

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .services {
        padding: 80px 0;
    }
    
    .services-header {
        margin-bottom: 60px;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .services-header h2::before {
        left: -60px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* About Section - Mobile First */
.about {
    background: white;
    padding: 60px 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-left {
    order: 1;
    width: 100%;
}

.about-right {
    order: 2;
    width: 100%;
}

.about-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #d4edda;
}

.banner i {
    color: var(--warning-yellow);
}

.about h2 {
    font-size: var(--mobile-font-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .about-left {
        order: 1;
        flex: 1;
    }
    
    .about-right {
        order: 2;
        flex: 1;
    }
    
    .about h2 {
        font-size: 2.5rem;
    }
    
    .about-image {
        height: 400px;
    }
}

/* Success Section - Mobile First */
.success {
    background: white;
    padding: 60px 0;
}

.success-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.success-left {
    order: 2;
    width: 100%;
    text-align: center;
}

.success-right {
    order: 1;
    width: 100%;
}

.success h2 {
    font-size: var(--mobile-font-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.success p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-green);
    font-size: 24px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: var(--mobile-font-small);
    color: #666;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .success {
        padding: 80px 0;
    }
    
    .success-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .success-left {
        order: 1;
        flex: 1;
        text-align: left;
    }
    
    .success-right {
        order: 2;
        flex: 1;
    }
    
    .success h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Pricing Section - Mobile First */
.pricing {
    background: white;
    padding: 60px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    font-size: var(--mobile-font-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-toggle span {
    font-weight: 500;
    color: var(--text-dark);
}

.toggle {
    width: 60px;
    height: 30px;
    background: var(--primary-green);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.toggle-handle {
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    right: 2px;
    transition: transform 0.3s ease;
}

.toggle.active .toggle-handle {
    transform: translateX(-30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pricing-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.billing {
    color: #666;
    font-size: var(--mobile-font-small);
    margin-bottom: 30px;
}

.features {
    text-align: left;
}

.features h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.features ul {
    list-style: none;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    font-size: var(--mobile-font-small);
}

.features li i {
    color: var(--success-green);
    font-size: 12px;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-header h2 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Reviews Slider Section - Mobile First */
.reviews-slider {
    background: var(--light-gray);
    padding: 60px 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header .banner {
    background: var(--warning-yellow);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.reviews-header h2 {
    font-size: var(--mobile-font-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.reviews-header p {
    color: var(--text-gray);
    font-size: var(--mobile-font-base);
    max-width: 600px;
    margin: 0 auto;
}

.reviews-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-slider-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.review-content {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--warning-yellow);
    font-size: 18px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-green);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
    font-family: serif;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-green);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.reviews-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    pointer-events: all;
    z-index: 10;
}

.nav-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.dot:hover {
    background: var(--primary-green);
    opacity: 0.7;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .reviews-slider {
        padding: 80px 0;
    }
    
    .reviews-header h2 {
        font-size: 2.5rem;
    }
    
    .review-content {
        padding: 50px 40px;
    }
    
    .review-text {
        font-size: 1.2rem;
    }
    
    .nav-btn {
        width: 60px;
        height: 60px;
    }
    
    .prev-btn {
        left: -30px;
    }
    
    .next-btn {
        right: -30px;
    }
}

/* Mobile Navigation Adjustments */
@media (max-width: 767px) {
    .reviews-navigation {
        position: static;
        transform: none;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .prev-btn,
    .next-btn {
        position: static;
        transform: none;
    }
}

/* Blog Section - Mobile First */
.blog {
    background: white;
    padding: 60px 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h2 {
    font-size: var(--mobile-font-2xl);
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
}

.blog-header h2::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-green);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    margin: 20px 20px 0;
    color: var(--text-dark);
}

.blog-category i {
    color: var(--warning-yellow);
}

.blog-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 20px;
    color: var(--text-dark);
    line-height: 1.4;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    margin: 0 20px 20px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-green-dark);
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .blog {
        padding: 80px 0;
    }
    
    .blog-header {
        margin-bottom: 60px;
    }
    
    .blog-header h2 {
        font-size: 2.5rem;
    }
    
    .blog-header h2::before {
        left: -60px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Dark Services Section */
.dark-services {
    background: #2C3E3D;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.dark-services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 61, 0.8), rgba(34, 197, 94, 0.1));
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C3E3D;
    font-size: 16px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.dark-services-banner {
    background: #FFC107;
    color: #2C3E3D;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    position: relative;
    z-index: 2;
}

.dark-services-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.dark-services-title::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.dark-services-title::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.dark-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.dark-service-card {
    background: rgba(44, 62, 61, 0.8);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-service-card:hover {
    transform: translateY(-5px);
    background: rgba(44, 62, 61, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dark-service-icon {
    margin-bottom: 25px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.icon-circle i {
    font-size: 24px;
    color: #FFC107;
    margin-bottom: 5px;
}

.tax-text {
    font-size: 10px;
    font-weight: 700;
    color: #2C3E3D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.dark-service-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.learn-more-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.learn-more-link:hover {
    color: #FFC107;
    border-bottom-color: #FFC107;
}

.learn-more-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.learn-more-link:hover i {
    transform: translateX(3px);
}

.dark-services-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.explore-more-btn {
    background: #FFC107;
    color: #2C3E3D;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.explore-more-btn:hover {
    background: #ffb300;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.explore-more-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.explore-more-btn:hover i {
    transform: translateX(3px);
}

/* Dark Services Responsive */
@media (max-width: 768px) {
    .dark-services {
        padding: 60px 0;
    }
    
    .dark-services-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .dark-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .dark-service-card {
        padding: 30px 20px;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle i {
        font-size: 20px;
    }
    
    .dark-services-title::before,
    .dark-services-title::after {
        display: none;
    }
}

/* Contact Section - Photo Style Design */
.contact {
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #d4edda, #e8f5e8);
    border-radius: 50%;
    transform: translate(50%, 50%);
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Left Side - Contact Information */
.contact-info-section {
    padding: 40px 0;
}

.contact-info-header {
    margin-bottom: 30px;
    position: relative;
}

.contact-info-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.2;
}

.title-decoration {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 2px;
    margin-top: 10px;
}

.contact-intro {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.address-section {
    margin-bottom: 40px;
}

.address-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.address-section p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-detail-item span {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
    font-weight: 400;
}

.social-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* Right Side - Contact Form */
.form-section {
    padding: 40px 0;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-header p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: #1a202c;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    background: white;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

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

.submit-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #22c55e;
    border: none;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-status {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
}

.form-status.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-status.loading {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-header h2,
    .form-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-info-section,
    .form-section {
        padding: 20px 0;
    }
    
    .contact::before,
    .contact::after {
        display: none;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact-content {
        gap: 60px;
    }
    
    .contact-info-header h2,
    .form-header h2 {
        font-size: 2.8rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .contact {
        padding: 100px 0;
    }
    
    .contact-content {
        gap: 80px;
    }
    
    .contact-info-header h2,
    .form-header h2 {
        font-size: 3rem;
    }
}

/* Newsletter Section - Mobile First */
.newsletter {
    position: relative;
    padding: 60px 0;
    background: var(--primary-green);
    background-image: url('images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.3;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.newsletter-left {
    flex: 1;
}

.newsletter .banner {
    background: var(--warning-yellow);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.newsletter h2 {
    font-size: var(--mobile-font-2xl);
    font-weight: 700;
    line-height: 1.2;
}

.newsletter-right {
    flex: 0 0 auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.newsletter-input {
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--text-gray);
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .newsletter {
        padding: 80px 0;
    }
    
    .newsletter-content {
        flex-direction: row;
        text-align: left;
        gap: 60px;
    }
    
    .newsletter h2 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: row;
        max-width: none;
    }
    
    .newsletter-input {
        min-width: 300px;
    }
}

/* Footer - Mobile First */
.footer {
    background: white;
    padding: 60px 0 20px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.contact-detail i {
    color: var(--primary-green);
    width: 16px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.footer-bottom p {
    color: #666;
    font-size: var(--mobile-font-small);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    color: white;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .footer {
        padding: 80px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Mobile Touch Optimizations */
.btn {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

.mobile-menu-toggle {
    min-height: 44px;
    min-width: 44px;
}

.mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Improved Mobile Typography */
@media (max-width: 768px) {
    h1, .hero-title {
        font-size: var(--mobile-font-3xl);
        line-height: 1.2;
    }
    
    h2 {
        font-size: var(--mobile-font-2xl);
        line-height: 1.3;
    }
    
    h3 {
        font-size: var(--mobile-font-xl);
        line-height: 1.4;
    }
    
    p, .hero-description {
        font-size: var(--mobile-font-base);
        line-height: 1.6;
    }
    
    .btn {
        font-size: var(--mobile-font-base);
        padding: 12px 24px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--mobile-padding);
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: var(--mobile-font-small);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}