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

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

:root {
    --primary-color: rgba(0, 45, 19, 1);
    --secondary-color: rgba(0, 80, 35, 1);
    --accent-color: rgba(0, 120, 50, 1);
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    min-width: 320px;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.logo {
    margin: 0 2rem;
}

.logo img {
    height: 50px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.cta-button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 120, 50, 0.3);
}

.cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 50, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background: url('assets/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 45, 19, 0.9);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin-bottom: 2rem;
    max-width: 300px;
    margin: 0 auto 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Why Us Section */
.why-us {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.why-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.why-us-item video {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.why-us-item:hover video {
    transform: scale(1.05);
}

.why-us-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-us-item p {
    color: var(--text-color);
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    transition: var(--transition);
}

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

.counter {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 3rem 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .counter {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .counter {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
        flex-direction: column;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        text-align: right;
        gap: 0;
        padding: 5rem 0;
        margin: 0;
        order: 2;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        color: var(--white);
        display: block;
        transition: var(--transition);
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .dropdown-menu {
        position: static;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        padding: 0;
        margin: 0;
        display: none;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.8rem 3rem !important;
        font-size: 1rem !important;
        color: var(--white) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.15);
        color: var(--white) !important;
    }

    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown > a i {
        transition: transform 0.3s ease;
    }

    .dropdown.active > a i {
        transform: rotate(180deg);
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: var(--white);
        cursor: pointer;
        z-index: 1001;
        padding: 0.5rem;
        transition: var(--transition);
    }

    .menu-toggle:hover {
        color: var(--accent-color);
    }

    .logo {
        margin: 0;
        order: 1;
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-30%);
        z-index: 1001;
    }

    .logo img {
        height: 65px;
    }

    /* ترتيب العناصر في القائمة */
    .nav-links li:nth-child(1) { order: 7; } /* الاستعلام عن طلب */
    .nav-links li:nth-child(2) { order: 6; } /* اعمل معنا */
    .nav-links li:nth-child(3) { order: 5; } /* من نحن */
    .nav-links li:nth-child(4) { order: 4; } /* تواصل */
    .nav-links li:nth-child(5) { order: 3; } /* الدعم */
    .nav-links li:nth-child(6) { order: 2; } /* الخدمات */
    .nav-links li:nth-child(7) { order: 1; } /* الرئيسية */
    .nav-links li:nth-child(8) { order: 8; } /* زر البحث */

    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        max-width: 200px;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .slideshow-container {
        height: 400px;
    }

    .mySlides {
        width: 100%;
        overflow: hidden;
    }

    .mySlides img {
        object-fit: cover;
        object-position: center;
        width: 100%;
    }

    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .search-icon {
        margin: 0.5rem 0;
    }

    .text {
        font-size: 16px;
        padding: 12px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
    }

    .prev, .next {
        font-size: 18px;
        padding: 12px;
    }

    .services {
        padding: 3rem 1rem;
    }

    .services h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card img {
        height: 140px;
        margin-bottom: 0.8rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .why-us {
        padding: 3rem 1rem;
    }

    .why-us h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
    }

    .why-us-item {
        padding: 0.8rem 0.5rem;
    }

    .why-us-item video {
        max-width: 100px;
        margin-bottom: 0.5rem;
    }

    .why-us-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .why-us-item p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .service-card img {
        height: 120px;
    }

    .service-card h3 {
        font-size: 0.9rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .why-us-item {
        padding: 0.5rem 0.3rem;
    }

    .why-us-item video {
        max-width: 80px;
        margin-bottom: 0.3rem;
    }

    .why-us-item h4 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .why-us-item p {
        font-size: 0.7rem;
        line-height: 1.1;
    }
}

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

.fade-in {
    animation: fadeIn 1s ease-out;
}

.search-icon {
    margin-right: 1rem;
}

.search-icon a {
    font-size: 1rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon a:hover {
    color: var(--accent-color);
}

.search-icon i {
    transition: var(--transition);
}

.search-icon:hover i {
    transform: scale(1.1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: var(--text-color) !important;
    padding: 0.7rem 1.5rem !important;
    display: block;
    font-size: 0.85rem !important;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--accent-color) !important;
}

.dropdown > a i {
    font-size: 0.7rem;
    margin-right: 0.3rem;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
    }

    .dropdown-menu a {
        color: var(--white) !important;
        padding: 0.5rem !important;
    }

    .dropdown-menu a:hover {
        background: transparent;
    }
}

/* Slider Styles */
.slider-content-section {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    min-height: 500px;
    width: 100%;
}

.slider-container {
    flex: 1;
    height: 100%;
    width: 100%;
}

.slideshow-container {
    max-width: 100%;
    width: 100%;
    position: relative;
    margin: 0;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mySlides {
    display: none;
    width: 100%;
    height: 100%;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content-container {
    flex: 1;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .slider-content-section {
        flex-direction: column;
        padding: 0;
        min-height: auto;
        width: 100%;
        overflow: hidden;
    }

    .slider-container {
        width: 100%;
        overflow: hidden;
    }

    .slideshow-container {
        height: 450px;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        overflow: hidden;
    }

    .content-container {
        width: 100%;
        padding: 1rem;
        overflow: hidden;
    }

    .numbertext {
        display: none;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 350px;
    }
}

/* Additional Services Section */
.additional-services {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--light-bg), var(--white));
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('https://media.clicksites.ai/clicksites/uploads/2243/1749263184358_images.jpeg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.testimonials h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonials-grid {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    width: max-content;
}

.testimonial-card {
    flex: 0 0 250px;
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

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

.testimonial-content {
    text-align: center;
    position: relative;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

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

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

.testimonial-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    padding: 0 0.5rem;
}

.testimonial-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    position: relative;
    display: inline-block;
}

.testimonial-content h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

@media (max-width: 992px) {
    .testimonials {
        padding: 3.5rem 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 220px;
    }

    .testimonial-image {
        width: 70px;
        height: 70px;
    }

    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        flex: 0 0 200px;
        padding: 1.2rem;
    }

    .testimonial-image {
        width: 65px;
        height: 65px;
        margin-bottom: 0.8rem;
    }

    .testimonial-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .testimonial-content h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 2.5rem 0.5rem;
    }

    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 180px;
        padding: 1rem;
    }

    .testimonial-image {
        width: 60px;
        height: 60px;
    }

    .testimonial-content p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }

    .testimonial-content h4 {
        font-size: 0.9rem;
    }
}

/* News Section */
.news {
    padding: 4rem 2rem;
    background: var(--white);
}

.news h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    min-height: 400px;
    position: relative;
}

.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Pagination Styles */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 45, 19, 0.1);
}

.pagination-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-item.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-item.disabled:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: rgba(0, 45, 19, 0.1);
}

@media (max-width: 992px) {
    .news {
        padding: 3rem 1.5rem;
    }

    .news h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .news-card img {
        height: 160px;
    }

    .pagination-item {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .news {
        padding: 2.5rem 1rem;
    }

    .news h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .news-container {
        padding: 0.5rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .news-card img {
        height: 140px;
    }

    .news-content {
        padding: 1rem;
    }

    .news-content h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .news-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .pagination-item {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .news {
        padding: 2rem 0.8rem;
    }

    .news h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .news-container {
        padding: 0.3rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .news-card img {
        height: 120px;
    }

    .news-content {
        padding: 0.8rem;
    }

    .news-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .news-content p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .news-pagination {
        gap: 0.3rem;
    }

    .pagination-item {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.floating-button::before {
    content: attr(aria-label);
    position: absolute;
    right: 70px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-button:hover::before {
    opacity: 1;
    visibility: visible;
}

.call-button {
    background: var(--primary-color);
}

.call-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.whatsapp-button {
    background: #25D366;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .floating-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .floating-button::before {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 1rem;
        left: 1rem;
    }

    .floating-button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
} 