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

:root {
    --primary-color: #0066cc;
    --secondary-color: #00a8ff;
    --accent-color: #ff6b6b;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly elements */
button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: rgba(0, 102, 204, 0.1);
    touch-action: manipulation;
}

/* Prevent text size adjustment on iOS */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}

.announcement-bar p {
    margin: 0;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

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

.logo-icon {
    font-size: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

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

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

.hero-images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-img.active {
    opacity: 1;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.hero-grid-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 120px;
}

.hero-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.scroll-indicator span {
    display: block;
    font-size: 28px;
    line-height: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-newsletter {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    margin-top: 10px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* What is Section */
.what-is-section {
    background: var(--bg-white);
}

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

.section-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-text {
    padding: 20px 0;
}

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

/* Solutions Section */
.solutions-section {
    background: var(--bg-light);
}

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

.solution-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.solution-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

/* Solutions Grid Four (2x2 Layout) */
.solutions-grid-four {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-item-four {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-item-four:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.solution-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.solution-item-four:hover .solution-image-wrapper img {
    transform: scale(1.05);
}

.solution-content-four {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-icon-four {
    font-size: 40px;
    margin-bottom: 15px;
}

.solution-content-four h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.solution-content-four p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--bg-white);
}

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

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-item-center {
    max-width: 400px;
    margin: 0 auto;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.step-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

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

/* Different Section */
.different-section {
    background: var(--bg-light);
}

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

.feature-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 350px;
}

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

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

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

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 102, 204, 0.95), rgba(0, 168, 255, 0.8));
    color: white;
    padding: 30px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

.feature-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-overlay p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Features Carousel */
.features-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.features-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.feature-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.feature-slide.active {
    display: block;
}

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

.feature-card-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.feature-image-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.feature-overlay-carousel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 102, 204, 0.95), rgba(0, 168, 255, 0.85));
    color: white;
    padding: 40px;
}

.feature-overlay-carousel h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-style: italic;
}

.feature-overlay-carousel p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.carousel-btn:hover {
    background: #0052a3;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.benefits-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.benefits-content em {
    color: var(--primary-color);
    font-style: italic;
}

/* Services Page */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.9;
}

.services-content-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto;
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-intro strong {
    color: var(--text-dark);
    font-weight: 700;
}

.services-list-section {
    padding: 60px 0;
}

.services-list-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.services-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.services-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.services-sidebar h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.services-nav {
    list-style: none;
}

.service-nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    border-radius: 4px;
}

.service-nav-link:hover,
.service-nav-link.active {
    background: var(--bg-white);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.services-main {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.service-detail {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.service-detail.active {
    display: block;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-detail h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-detail p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-image {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

/* Coming Soon Page */
.coming-soon-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 100px 20px;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.coming-soon-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.coming-soon-subtitle {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

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

.coming-soon-info {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: var(--shadow);
    text-align: left;
}

.coming-soon-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.coming-soon-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.coming-soon-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-tagline {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 16px;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #2a2a2a;
    color: white;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: #999;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: white;
}

.footer-column p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

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

.social-links a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border: 3px solid rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    text-align: center;
}

.testimonial-quote-icon {
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.testimonial-text p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

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

.testimonial-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-align: left;
}

.testimonial-info p {
    font-size: 16px;
    color: var(--text-light);
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 50px;
    }

    .hero-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid-item:nth-child(3) {
        grid-column: 1 / -1;
    }

    .solutions-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-row {
        gap: 30px;
    }

    .services-layout {
        gap: 40px;
    }

    .services-sidebar {
        position: static;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 10px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-main {
        height: 300px;
    }

    .hero-image-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-grid-item {
        height: 100px;
    }

    .hero-grid-item:nth-child(3) {
        grid-column: auto;
    }

    .logo-img {
        height: 40px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-image {
        order: -1;
    }

    .services-layout {
        grid-template-columns: 1fr !important;
        gap: 25px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .services-sidebar {
        position: static;
        background: var(--bg-white);
        padding: 20px 15px;
        border-radius: 12px;
        box-shadow: var(--shadow);
        order: 1;
        width: 100%;
    }

    .services-sidebar h2 {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: left;
        padding: 0 5px;
    }

    .services-nav {
        display: flex;
        overflow-x: auto;
        gap: 0;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .services-nav::-webkit-scrollbar {
        height: 3px;
    }

    .services-nav::-webkit-scrollbar-track {
        background: var(--bg-light);
        border-radius: 2px;
    }

    .services-nav::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }

    .services-nav li {
        flex-shrink: 0;
        list-style: none;
    }

    .service-nav-link {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px 16px;
        font-size: 13px;
        min-width: fit-content;
        margin-bottom: 0;
        margin-right: 6px;
        border-radius: 6px;
        background: transparent;
        display: block;
        transition: all 0.3s ease;
    }

    .service-nav-link:hover,
    .service-nav-link.active {
        background: var(--bg-light);
        border-left: none;
        border-bottom-color: var(--primary-color);
        color: var(--primary-color);
        font-weight: 600;
    }

    .services-main {
        padding: 25px 20px;
        border-radius: 12px;
        order: 2;
        width: 100%;
    }

    .service-detail {
        width: 100%;
    }

    .service-detail h3 {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

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

    .service-icon {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .service-image {
        margin-top: 20px;
        border-radius: 10px;
        width: 100%;
    }

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

    .section-title-large {
        font-size: 32px;
    }

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

    .section-intro {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid-four {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 25px;
    }

    .solution-item-four {
        max-width: 100%;
    }

    .solution-content-four {
        padding: 25px;
    }

    .feature-card-carousel {
        height: 400px;
    }

    .feature-overlay-carousel {
        padding: 30px;
    }

    .feature-overlay-carousel h3 {
        font-size: 24px;
    }

    .feature-overlay-carousel p {
        font-size: 16px;
    }

    .testimonial-content {
        padding: 40px 30px;
    }

    .testimonial-text p {
        font-size: 18px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }

    .testimonial-info {
        text-align: center;
    }

    .testimonial-info h4,
    .testimonial-info p {
        text-align: center;
    }

    .steps-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .step-item-center {
        max-width: 100%;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .carousel-controls {
        gap: 15px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 26px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

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

    .announcement-bar {
        padding: 10px 15px;
        font-size: 13px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .hero-image-main {
        height: 250px;
    }

    .hero-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hero-grid-item {
        height: 90px;
    }

    .section {
        padding: 60px 0;
    }

    .services-content-section {
        padding: 50px 0;
    }

    .services-list-section {
        padding: 50px 0;
    }

    .services-intro {
        padding: 0;
    }

    .services-intro p {
        font-size: 16px;
        margin-bottom: 18px;
    }

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

    .section-label {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .section-title-large {
        font-size: 28px;
        line-height: 1.3;
    }

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

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

    .page-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .page-subtitle {
        font-size: 18px;
        line-height: 1.4;
    }

    .services-hero {
        padding: 70px 0 60px;
    }

    .solutions-grid-four {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-image-wrapper {
        height: 200px;
    }

    .solution-content-four h3 {
        font-size: 18px;
    }

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

    .feature-card-carousel {
        height: 350px;
    }

    .feature-overlay-carousel {
        padding: 25px;
    }

    .feature-overlay-carousel h3 {
        font-size: 22px;
    }

    .feature-overlay-carousel p {
        font-size: 15px;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .testimonial-text p {
        font-size: 16px;
    }

    .testimonial-quote-icon {
        font-size: 60px;
        top: 10px;
        left: 20px;
    }

    .coming-soon-content h1 {
        font-size: 36px;
    }

    .coming-soon-subtitle {
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column:first-child {
        grid-column: 1;
    }

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

    .coming-soon-actions {
        flex-direction: column;
        gap: 15px;
    }

    .coming-soon-actions .btn {
        width: 100%;
    }

    .btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }

    .btn-newsletter {
        width: 100%;
        margin-top: 10px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 600px) {
    .hero-image-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid-item {
        height: 100px;
    }

    .services-nav {
        padding-left: 15px;
        padding-right: 15px;
    }

    .services-intro {
        padding: 0;
    }

    .services-intro p {
        font-size: 15px;
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .services-list-section .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .announcement-bar {
        padding: 8px 12px;
        font-size: 12px;
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 12px;
    }

    .logo-img {
        height: 35px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-image-main {
        height: 200px;
    }

    .hero-image-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-grid-item {
        height: 80px;
    }

    .scroll-indicator {
        width: 40px;
        height: 40px;
        bottom: 20px;
    }

    .scroll-indicator span {
        font-size: 24px;
    }

    .section {
        padding: 50px 0;
    }

    .services-content-section {
        padding: 40px 0;
    }

    .services-list-section {
        padding: 40px 0;
    }

    .services-intro p {
        font-size: 15px;
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-label {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .section-title-large {
        font-size: 24px;
        margin-bottom: 15px;
    }

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

    .section-intro {
        font-size: 14px;
    }

    .page-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .page-subtitle {
        font-size: 16px;
        line-height: 1.4;
    }

    .services-hero {
        padding: 60px 0 50px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .services-layout {
        gap: 20px;
    }

    .services-main {
        padding: 20px 15px;
    }

    .services-sidebar {
        padding: 15px 12px;
    }

    .services-sidebar h2 {
        font-size: 18px;
        margin-bottom: 12px;
        padding: 0;
    }

    .services-nav {
        padding: 8px 0;
    }

    .service-nav-link {
        padding: 10px 12px;
        font-size: 12px;
        margin-right: 4px;
    }

    .service-detail h3 {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .service-detail p {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .service-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .service-image {
        margin-top: 18px;
        border-radius: 8px;
    }

    .solutions-grid-four {
        gap: 15px;
    }

    .solution-image-wrapper {
        height: 180px;
    }

    .solution-content-four {
        padding: 20px 15px;
    }

    .solution-content-four h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .solution-content-four p {
        font-size: 13px;
    }

    .solution-icon-four {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .step-item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .step-item p {
        font-size: 14px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .carousel-dots {
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 25px;
    }

    .feature-card-carousel {
        height: 300px;
    }

    .feature-overlay-carousel {
        padding: 20px;
    }

    .feature-overlay-carousel h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-overlay-carousel p {
        font-size: 14px;
    }

    .testimonial-content {
        padding: 25px 15px;
    }

    .testimonial-quote-icon {
        font-size: 50px;
        top: 5px;
        left: 15px;
    }

    .testimonial-text {
        margin-bottom: 25px;
    }

    .testimonial-text p {
        font-size: 15px;
    }

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

    .testimonial-info h4 {
        font-size: 18px;
    }

    .testimonial-info p {
        font-size: 14px;
    }

    .coming-soon-content {
        padding: 20px;
    }

    .coming-soon-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .coming-soon-content h1 {
        font-size: 28px;
    }

    .coming-soon-subtitle {
        font-size: 18px;
    }

    .coming-soon-content p {
        font-size: 16px;
    }

    .coming-soon-info {
        padding: 20px;
    }

    .coming-soon-info h3 {
        font-size: 18px;
    }

    .coming-soon-info p {
        font-size: 14px;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links a,
    .footer-column p {
        font-size: 14px;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        font-size: 20px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p,
    .footer-legal a {
        font-size: 12px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

