/* ===== CSS Variables ===== */
:root {
    --primary-color: #354658;
    --primary-dark: #2c3e50;
    --secondary-color: #2c3e50;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

p {
    line-height: 1.8;
}

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

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

/* ===== Top Info Bar ===== */
.top-info-bar {
    background: var(--secondary-color);
    padding: 12px 0;
    font-size: 14px;
    color: var(--white);
}

.top-info-left span {
    color: var(--white);
    font-size: 13px;
}

.top-info-left i {
    color: var(--primary-color);
    font-size: 14px;
}

.top-info-right a {
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

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

/* ===== Navigation ===== */
.navbar {
    padding: 18px 0;
    box-shadow: var(--shadow-sm);
    background: var(--white) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-color);
}

.navbar .btn-primary {
    padding: 10px 28px;
    border-radius: 8px;
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 40px 0 40px;
    background: var(--white);
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating-badge .stars {
    color: #ffc107;
    font-size: 16px;
}

.rating-badge .rating-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

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

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-stats .stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.hero-stats .stat-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.hero-image {
    position: relative;
}

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

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card i {
    font-size: 26px;
    color: var(--primary-color);
}

.floating-card strong {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.floating-card p {
    font-size: 11px;
    color: var(--text-light);
}

/* ===== Platform Partners Section ===== */
.platform-partners-section {
    padding: 80px 0;
    background: var(--white);
}

.check-icon-circle {
    width: 60px;
    height: 60px;
    background: #ffa500;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.check-icon-circle i {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
}

.platform-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.platform-logo-item {
    flex: 0 0 auto;
}

.platform-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
}

.platform-logo:hover {
    opacity: 1;
}

/* ===== Service Cards Section ===== */
.service-cards-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

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

.service-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 450px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card-img:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.service-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.service-overlay p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* ===== Full Service Section ===== */
.full-service-section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-light);
}

.service-detail-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    transition: var(--transition);
    height: 240px;
}

.service-detail-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.service-detail-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 12px;
    color: var(--text-dark);
}

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

.service-image-single img {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 240px;
    width: 100%;
    object-fit: cover;
}

/* ===== Stats Visual Section ===== */
.stats-visual-section {
    padding: 80px 0;
    background: var(--white);
}

.stat-box-modern {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.stat-box-modern:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.stats-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.stats-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(53, 70, 88, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.benefit-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.stats-images img {
    border-radius: 12px;
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 0;
}

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

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

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--primary-color);
}

.about-badge strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-badge p {
    font-size: 14px;
    color: var(--text-light);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.about-content .lead {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-content h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

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

/* ===== Location Section ===== */
.location-section {
    padding: 80px 0;
    background: var(--white);
}

.location-card {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.location-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.location-icon i {
    font-size: 40px;
    color: var(--white);
}

.location-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.location-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-box {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.testimonial-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

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

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.testimonial-author h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

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

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    padding: 24px 28px;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed) i {
    color: var(--white);
}

.faq-accordion .accordion-button i {
    color: var(--primary-color);
    font-size: 20px;
}

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

.faq-accordion .accordion-body {
    padding: 24px 28px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.contact-info-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(53, 70, 88, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-info-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--text-light);
}

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

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

.social-links-contact a {
    width: 44px;
    height: 44px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

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

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.8);
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 16px 0 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

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

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

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

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

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

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 188, 212, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

.btn-outline-secondary {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* ===== Responsive Styles ===== */
@media (max-width: 991.98px) {
    .navbar-logo {
        height: 40px;
    }

    .hero-section {
        min-height: auto;
        padding: 30px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-image img {
        max-height: 400px;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .service-detail-card {
        height: 210px;
    }

    .service-image-single img {
        height: 190px;
    }

    .platform-logos {
        gap: 40px;
    }

    .platform-logo {
        height: 35px;
        max-width: 120px;
    }

    .about-badge {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .navbar-logo {
        height: 35px;
    }

    .stat-box-modern {
        padding: 20px 15px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 28px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stats-content h3 {
        font-size: 24px;
    }

    .stats-content p {
        font-size: 14px;
    }

    .benefit-item {
        gap: 15px;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .benefit-item h5 {
        font-size: 16px;
    }

    .benefit-item p {
        font-size: 13px;
    }

    .top-info-bar {
        font-size: 12px;
    }

    .top-info-left,
    .top-info-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .top-info-left {
        margin-bottom: 8px;
    }

    .hero-section {
        padding: 20px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hero-features {
        margin: 16px 0;
        gap: 8px;
    }

    .feature-check {
        font-size: 13px;
    }

    .hero-image {
        margin-bottom: 30px;
    }

    .hero-image img {
        max-height: 350px;
    }

    .floating-card {
        padding: 10px 14px;
        bottom: 10px;
        left: 10px;
    }

    .floating-card i {
        font-size: 22px;
    }

    .floating-card strong {
        font-size: 12px;
    }

    .floating-card p {
        font-size: 10px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

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

    .service-detail-card {
        flex-direction: column;
        padding: 20px;
        height: auto;
    }

    .service-detail-content h4 {
        font-size: 16px;
    }

    .service-detail-content p {
        font-size: 12px;
    }

    .feature-list li {
        font-size: 11px;
    }

    .service-image-single img {
        height: 180px;
    }

    .platform-logos {
        gap: 30px;
    }

    .platform-logo {
        height: 30px;
        max-width: 100px;
    }

    .platform-title {
        font-size: 16px;
    }

    .location-card {
        padding: 30px 20px;
    }

    .location-card h3 {
        font-size: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .map-container {
        height: 350px;
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .stat-number {
        font-size: 28px;
    }

    .benefit-list {
        gap: 20px;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-icon i {
        font-size: 18px;
    }

    .benefit-item h5 {
        font-size: 15px;
    }

    .benefit-item p {
        font-size: 12px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 13px;
    }

    .rating-badge .stars {
        font-size: 14px;
    }

    .rating-badge .rating-text {
        font-size: 12px;
    }

    .hero-image {
        margin-bottom: 25px;
    }

    .hero-image img {
        max-height: 300px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .service-overlay {
        padding: 24px 20px;
    }

    .service-image-single img {
        height: 150px;
    }

    .floating-card {
        left: 10px;
        bottom: 10px;
        padding: 8px 12px;
        gap: 8px;
    }

    .floating-card i {
        font-size: 20px;
    }

    .floating-card strong {
        font-size: 11px;
    }

    .floating-card p {
        font-size: 9px;
    }

    .achievement-badge {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== Print Styles ===== */
@media print {
    .top-info-bar,
    .navbar,
    .footer,
    .scroll-top {
        display: none;
    }
}
