/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    background-color: #fff;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 0.8rem !important;
    margin: 0 0.1rem;
    font-size: 0.95rem;
    color: #333;
    white-space: nowrap;
}

.nav-link:hover {
    color: #007bff !important;
}

.navbar-nav {
    align-items: center;
    gap: 0.2rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: #333;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.7rem 1rem !important;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
    
    .dropdown-item {
        padding: 0.7rem 2rem;
    }
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Services Section */
.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* News Section */
.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

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

.news-image {
    height: 200px;
    overflow: hidden;
}

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

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.news-title {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.news-excerpt {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-info .info-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.contact-info .info-item i {
    color: #007bff;
    margin-bottom: 1rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: #343a40;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255,255,255,0.7);
}

.footer .social-links a {
    color: #fff;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.footer .social-links a:hover {
    color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .service-image,
    .news-image {
        height: 180px;
    }
}

/* Social Share Buttons */
.btn-facebook {
    background-color: #3b5998;
    color: #fff;
}

.btn-twitter {
    background-color: #1da1f2;
    color: #fff;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.btn-facebook:hover,
.btn-twitter:hover,
.btn-whatsapp:hover {
    opacity: 0.9;
    color: #fff;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: 1;
}

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

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

.service-content {
    padding: 25px;
    background: #fff;
    position: relative;
}

.service-content h3 {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-content .btn {
    display: inline-block;
    padding: 10px 22px;
    background: #f8f9fa;
    color: #007bff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #007bff;
    text-decoration: none;
}

.service-content .btn:hover {
    background: #007bff;
    color: #fff;
    transform: translateX(5px);
}

.service-content .btn i {
    margin-left: 6px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-content .btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .service-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .service-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .service-content .btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* General Styles */
:root {
    --primary-color: #2563eb;
    --primary-rgb: 37, 99, 235;
    --secondary-color: #1e40af;
    --dark-color: #1e293b;
    --light-color: #f1f5f9;
    --text-color: #334155;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 76px;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.navbar-brand:hover {
    color: #333;
}

.navbar-brand img {
    height: 38px;
    width: auto;
    margin-right: 12px;
    object-fit: contain;
}

.navbar .nav-item {
    margin: 0 8px;
    position: relative;
}

.navbar .nav-link {
    color: #444;
    font-weight: 500;
    padding: 10px 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.2px;
}

.navbar .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #007bff;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover:after,
.navbar .nav-link.active:after {
    width: calc(100% - 32px);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #007bff;
}

/* Dropdown Styles */
.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    min-width: 220px;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-item {
    color: #555;
    font-size: 14px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.navbar .dropdown-item:hover {
    background: #f8f9fa;
    color: #007bff;
    padding-left: 30px;
}

.navbar .dropdown-item:before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: 0;
    height: 2px;
    background: #007bff;
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.navbar .dropdown-item:hover:before {
    width: 8px;
}

/* Quote Button */
.navbar-buttons {
    margin-left: 25px;
}

.nav-quote {
    display: flex;
    align-items: center;
    background: #007bff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.nav-quote:hover {
    background: #0056b3;
    color: #fff;
    transform: translateY(-2px);
}

.nav-quote i {
    margin-left: 8px;
    font-size: 16px;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar {
        padding: 15px 0;
    }

    .navbar-brand img {
        height: 32px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .navbar .nav-item {
        margin: 8px 0;
    }

    .navbar .nav-link {
        padding: 10px 0;
    }

    .navbar .nav-link:after {
        display: none;
    }

    .navbar .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block;
        min-width: auto;
    }

    .navbar .dropdown-menu.show {
        display: block;
    }

    .navbar-buttons {
        margin: 15px 0 0 0;
    }

    .nav-quote {
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 76px);
    min-height: 600px;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-image {
        height: 300px;
        margin-top: 30px;
    }
}

/* Statistics Section */
.statistics-section {
    padding: 3rem 0;
    background: var(--light-color);
    border-radius: 20px;
    margin-top: 3rem;
}

.stat-item {
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
}

/* Units Section */
.units-section {
    padding: 5rem 0;
    background: var(--white-color);
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.unit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.unit-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
}

.unit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unit-content {
    padding: 2rem;
}

.unit-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.unit-size {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.unit-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.unit-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.unit-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.unit-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.unit-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.unit-price .period {
    color: var(--text-color);
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-card:hover::before {
    opacity: 0.03;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

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

.faq-section .section-header h2 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-section .section-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid #007bff;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.accordion-button {
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    border-radius: 8px !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #007bff;
    background: #f8f9fa;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 18px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-collapse {
    border: none;
}

.accordion-body {
    padding: 20px 25px;
    background: #f8f9fa;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.accordion-button:hover {
    background: #f0f0f0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.testimonial-author {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.testimonial-position {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.testimonial-date {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
    display: block;
}

.swiper-pagination-testimonials {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #007bff;
    transform: scale(1.2);
}

/* News Section */
.news {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.news .section-header {
    margin-bottom: 50px;
    padding-top: 20px;
}

.news .section-header h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.news .section-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.news-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.news-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

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

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

.news-content {
    padding: 25px;
    position: relative;
}

.news-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: rgba(0,0,0,0.05);
}

.news-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.news-card .read-more {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.news-card .read-more i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.news-card .read-more:hover {
    background: var(--primary-color-dark);
}

.news-card .read-more:hover i {
    transform: translateX(8px);
}

/* Pagination */
.pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.2rem;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .news-card {
        margin-bottom: 1.5rem;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 1.2rem;
    }
    
    .news-content h3 {
        font-size: 1.1rem;
    }
}

/* Swiper Customization */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .testimonial-card,
    .news-card {
        margin: 0.5rem;
    }

    .news-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.25rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

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

    .author-image {
        width: 50px;
        height: 50px;
    }

    .news-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .faq-container {
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .news-content {
        padding: 1.25rem;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .swiper-pagination-bullet-active {
        width: 25px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.price-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 8px 40px;
    font-size: 0.85rem;
    transform: rotate(45deg);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.package-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.price-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.price-header h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price small {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.features-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.price-footer {
    margin-top: auto;
}

.price-footer .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .price-card {
        padding: 2rem;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
    }
    
    .package-icon i {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Storage Info Section */
.storage-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.storage-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.storage-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.storage-info-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.storage-info-text p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2340&q=80') center/cover no-repeat;
    opacity: 0.1;
}

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

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.cta-icon i {
    font-size: 2.5rem;
    color: white;
}

.cta-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
    height: 100%;
}

.cta-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-feature i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-feature p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.cta-buttons .btn-outline-primary {
    color: white;
    border-color: white;
}

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

.cta-note {
    max-width: 600px;
    margin: 0 auto;
}

.cta-note p {
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-feature {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .cta-feature {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 5rem 0 0;
}

.footer-widget {
    margin-bottom: 3rem;
}

.footer-widget h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-widget p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-contact span {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

/* Services Grid Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 8rem 0 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2340&q=80') center/cover no-repeat;
    opacity: 0.1;
}

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

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-hero .hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.page-hero .breadcrumb {
    margin: 0;
    background: transparent;
}

.page-hero .breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

.page-hero .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.page-hero .breadcrumb-item a:hover {
    text-decoration: underline;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.8);
}

.page-hero .breadcrumb-item.active {
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero .hero-description {
        font-size: 1rem;
    }
}

.services-grid {
    padding: 5rem 0;
    background: var(--light-color);
}

.service-grid-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-grid-item:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-rgb), 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-grid-item:hover .service-overlay {
    opacity: 1;
}

.service-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-grid-item:hover .service-overlay .btn {
    transform: translateY(0);
}

.service-content {
    padding: 2rem;
    text-align: left;
}

.service-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.services-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.services-cta .btn-light {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
    .page-hero {
        padding: 7rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 2.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.3rem;
    }

    .services-cta {
        padding: 4rem 0;
    }

    .services-cta h2 {
        font-size: 1.8rem;
    }

    .services-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero .hero-description {
        font-size: 1rem;
    }

    .service-content {
        padding: 1.25rem;
    }

    .services-cta {
        padding: 3rem 0;
    }

    .services-cta .btn-light {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* About Page Styles */
.about-section {
    padding: 6rem 0;
}

.about-hero-content {
    padding-right: 2rem;
}

.about-hero-content .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.about-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.about-hero-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Section */
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.stat-content p {
    color: var(--text-color);
    margin: 0;
}

/* Values Section */
.value-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Timeline Section */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 2rem;
}

.timeline-dot {
    position: absolute;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -10px;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

/* Team Section */
.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .about-hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 2rem;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        padding-left: 2rem;
    }

    .timeline-dot {
        left: -10px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: -10px;
    }

    .about-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-card h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.info-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-list li strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2340&q=80') center/cover no-repeat;
    opacity: 0.1;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons .btn-outline-primary {
    color: white;
    border-color: white;
}

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

@media (max-width: 768px) {
    .info-section {
        padding: 3rem 0;
    }
    
    .info-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .info-card h3 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* News Detail Page */
.news-detail {
    padding: 80px 0;
    background-color: #fff;
}

.news-detail-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 500px;
}

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

.news-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    gap: 20px;
}

.news-meta span {
    color: #fff;
    font-size: 0.9rem;
}

.news-meta span i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Enhanced Content Styles */
.news-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.news-detail-content .lead {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
}

.news-detail-content h2 {
    color: #000;
    margin: 50px 0 25px;
    font-weight: 600;
    font-size: 1.8rem;
}

.news-detail-content ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.news-detail-content ul li {
    margin-bottom: 15px;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.news-detail-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Sidebar Styles */
.news-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.recent-news-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-news-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-news-content h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.recent-news-content span {
    font-size: 0.85rem;
    color: #666;
}

.recent-news-item:hover {
    transform: translateX(5px);
}

.recent-news-item:hover h4 {
    color: var(--primary-color);
}

.contact-info {
    text-align: center;
    padding: 20px 0;
}

.contact-info p {
    margin: 0;
    font-size: 1.2rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.feature-box {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Highlights */
.service-highlights {
    margin: 50px 0;
}

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

.highlight-item {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.news-detail-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.news-detail-content blockquote p {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.news-detail-content blockquote footer {
    color: #666;
    font-size: 14px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info-card,
.contact-form-card,
.map-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-card h2,
.contact-form-card h2,
.map-card h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    margin-bottom: 5px;
    color: #666;
}

.info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form-card .form-label {
    font-weight: 500;
    color: #333;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 5px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

.contact-form-card .btn-primary {
    padding: 12px 30px;
    font-weight: 500;
}

.map-card .map-container {
    border-radius: 5px;
    overflow: hidden;
}

/* References Page Styles */
.references-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.reference-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

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

.reference-info {
    padding: 20px;
    text-align: center;
}

.reference-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.reference-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Service Detail Page Styles */
.service-detail {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-detail-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.service-detail-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-detail-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.service-detail-content .lead {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.service-detail-content ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-detail-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #007bff;
}

.feature-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.feature-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.service-highlights {
    margin: 40px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.highlight-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.highlight-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.cta-box {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-box .btn-primary {
    background: #fff;
    color: #007bff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-box .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

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

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

.service-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.service-list li a:hover {
    color: #007bff;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
}

.contact-info li i {
    width: 25px;
    color: #007bff;
    margin-right: 10px;
}

.contact-info li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: #007bff;
}

.working-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.working-hours li:last-child {
    border-bottom: none;
}

blockquote {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

blockquote p {
    margin-bottom: 10px;
}

blockquote footer {
    color: #666;
    font-size: 14px;
}

@media (max-width: 991px) {
    .service-sidebar {
        margin-top: 40px;
        position: static;
    }
    
    .service-detail-content {
        padding: 20px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(45deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00a0ff);
}

.why-choose-us .section-header {
    margin-bottom: 50px;
}

.why-choose-us .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.why-choose-us .section-header p {
    color: #666;
    font-size: 16px;
}

.feature-box {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.feature-icon {
    margin-bottom: 25px;
    color: #007bff;
    font-size: 38px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .feature-box {
        margin-bottom: 20px;
    }
    .why-choose-us {
        padding: 60px 0;
    }
}

/* References Section */
.references {
    padding: 60px 0;
    background: #f8f9fa;
}

.references .section-header {
    margin-bottom: 40px;
}

.references .section-header h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 10px;
}

.references .section-header p {
    color: #666;
    font-size: 16px;
}

.references-slider {
    padding: 0;
    margin: 0 -15px;
}

.reference-item {
    margin: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 120px;
    overflow: hidden;
}

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

.reference-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.references .swiper-wrapper {
    align-items: center;
}

.references .swiper-slide {
    height: auto;
}

.references .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.references .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #007bff;
    opacity: 0.3;
}

.references .swiper-pagination-bullet-active {
    opacity: 1;
    background: #007bff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .references {
        padding: 40px 0;
    }
    
    .reference-item {
        height: 100px;
    }
    
    .references .section-header h2 {
        font-size: 28px;
    }
}
