/* ===== CSS Variables ===== */
:root {
    --primary-color: #1a73e8;
    --primary-dark: #1557b0;
    --secondary-color: #00c853;
    --accent-color: #ff6d00;
    --gradient-1: linear-gradient(135deg, #1a73e8 0%, #00c853 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-bps: linear-gradient(135deg, #1a73e8 0%, #4fc3f7 100%);
    --gradient-papah: linear-gradient(135deg, #00c853 0%, #69f0ae 100%);
    --text-dark: #1a1a2e;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(26, 115, 232, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Particles Background ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 10px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 10px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 60px;
    position: relative;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-badge i {
    color: #ffc107;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-text {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Illustration */
.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.illustration-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.main-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-bg {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.illustration-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.floating-card {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    color: var(--primary-color);
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 15%;
    right: 15%;
    color: var(--secondary-color);
    animation-delay: 0.5s;
}

.floating-card.card-3 {
    bottom: 20%;
    right: 10%;
    color: var(--accent-color);
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 6px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 10px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Animations ===== */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
}

.animate-slide-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease 0.3s forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.animate-float {
    animation: floatIllustration 6s ease-in-out infinite;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIllustration {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-decoration {
    width: 350px;
    height: 350px;
    background: var(--gradient-1);
    border-radius: 30px;
    opacity: 0.1;
    transform: rotate(10deg);
}

.about-icon-box {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.about-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature .feature-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.about-feature .feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    opacity: 0;
    transition: var(--transition);
}

.bps-card .card-glow {
    background: var(--gradient-bps);
}

.papah-card .card-glow {
    background: var(--gradient-papah);
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.bps-card .card-icon {
    background: var(--gradient-bps);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.papah-card .card-icon {
    background: var(--gradient-papah);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
}

.card-badge {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
}

.card-content {
    margin-bottom: 30px;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.bps-card .card-title {
    color: var(--primary-color);
}

.papah-card .card-title {
    color: var(--secondary-color);
}

.card-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.card-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.card-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.bps-card .card-features i {
    color: var(--primary-color);
}

.papah-card .card-features i {
    color: var(--secondary-color);
}

.card-footer {
    margin-top: auto;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.bps-btn {
    background: var(--gradient-bps);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.papah-btn {
    background: var(--gradient-papah);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
}

.btn-service:hover {
    transform: scale(1.02);
}

.btn-service i {
    transition: var(--transition);
}

.btn-service:hover i {
    transform: translateX(5px);
}

.card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.bps-card .decoration-circle:first-child {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    bottom: 0;
    right: 0;
}

.bps-card .decoration-circle:last-child {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    bottom: 50px;
    right: 80px;
}

.papah-card .decoration-circle:first-child {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    bottom: 0;
    right: 0;
}

.papah-card .decoration-circle:last-child {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    bottom: 50px;
    right: 80px;
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta {
    padding: 80px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    white-space: nowrap;
    padding: 15px 28px;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    white-space: nowrap;
    padding: 15px 28px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 10%;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-social {
    text-align: center;
}

.contact-social h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-1);
    color: white;
    transform: translateY(-5px);
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    background: var(--text-dark);
}

.footer-content {
    text-align: center;
}

.footer .logo {
    justify-content: center;
    margin-bottom: 20px;
}

.footer .logo-icon {
    background: var(--gradient-1);
}

.footer .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */

/* Large Tablets & Small Laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 5% 80px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .subtitle-text {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-illustration {
        margin-top: 50px;
    }

    .illustration-container {
        width: 300px;
        height: 300px;
    }

    .circle-bg {
        width: 220px;
        height: 220px;
    }

    .illustration-icon {
        font-size: 5rem;
    }

    .floating-card {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        border-radius: 12px;
    }

    .about-content {
        flex-direction: column;
        gap: 50px;
    }

    .image-decoration {
        width: 280px;
        height: 280px;
    }

    .about-icon-box {
        width: 160px;
        height: 160px;
        font-size: 4rem;
        border-radius: 24px;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 35px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        border-radius: 18px;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon-box {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        border-radius: 16px;
    }

    .feature-card h4 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 1.75rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .cta-buttons .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        border-radius: 14px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        width: 26px;
        height: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .hero-badge i {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .subtitle-text {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .hero-buttons {
        gap: 12px;
        margin-bottom: 40px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .btn i {
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 250px;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.8);
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
    }

    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .illustration-container {
        width: 250px;
        height: 250px;
    }

    .circle-bg {
        width: 180px;
        height: 180px;
    }

    .illustration-icon {
        font-size: 4rem;
    }

    .floating-card {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .floating-card.card-1 {
        top: 15%;
        left: 5%;
    }

    .floating-card.card-2 {
        top: 10%;
        right: 10%;
    }

    .floating-card.card-3 {
        bottom: 15%;
        right: 5%;
    }

    .scroll-indicator {
        display: none;
    }

    /* About Section */
    .about {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .image-decoration {
        width: 220px;
        height: 220px;
        border-radius: 24px;
    }

    .about-icon-box {
        width: 130px;
        height: 130px;
        font-size: 3.2rem;
        border-radius: 20px;
    }

    .about-text h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .about-text > p {
        font-size: 0.95rem;
        text-align: center;
    }

    .about-feature {
        padding: 16px;
        border-radius: 12px;
    }

    .about-feature .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .about-feature .feature-text h4 {
        font-size: 1rem;
    }

    .about-feature .feature-text p {
        font-size: 0.85rem;
    }

    /* Services Section */
    .services {
        padding: 70px 0;
    }

    .service-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .card-header {
        margin-bottom: 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        border-radius: 14px;
    }

    .card-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .card-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .card-description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .card-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .card-features li {
        font-size: 0.85rem;
        gap: 8px;
    }

    .card-features i {
        font-size: 0.8rem;
    }

    .btn-service {
        padding: 14px 24px;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    /* Features Section */
    .features {
        padding: 70px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 25px 18px;
        border-radius: 14px;
    }

    .feature-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .feature-card h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* CTA Section */
    .cta {
        padding: 60px 0;
    }

    .cta-text h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .cta-text p {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        width: auto;
        gap: 10px;
    }

    .cta-buttons .btn {
        width: auto;
        justify-content: center;
        padding: 12px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Contact Section */
    .contact {
        padding: 70px 0;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-card {
        padding: 20px;
        border-radius: 14px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }

    .contact-social h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Footer */
    .footer {
        padding: 35px 0;
    }

    .footer .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer .logo-text {
        font-size: 1.3rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer-links {
        font-size: 0.9rem;
    }

    /* Back to Top */
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 16px 50px;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .subtitle-text {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .illustration-container {
        width: 200px;
        height: 200px;
    }

    .circle-bg {
        width: 150px;
        height: 150px;
    }

    .illustration-icon {
        font-size: 3.2rem;
    }

    .floating-card {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .about {
        padding: 60px 0;
    }

    .image-decoration {
        width: 180px;
        height: 180px;
        border-radius: 20px;
    }

    .about-icon-box {
        width: 110px;
        height: 110px;
        font-size: 2.8rem;
        border-radius: 18px;
    }

    .about-text h3 {
        font-size: 1.25rem;
    }

    .about-features {
        gap: 15px;
    }

    .about-feature {
        padding: 14px;
        gap: 14px;
    }

    .about-feature .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .about-feature .feature-text h4 {
        font-size: 0.95rem;
    }

    .about-feature .feature-text p {
        font-size: 0.8rem;
    }

    .services {
        padding: 60px 0;
    }

    .service-card {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        border-radius: 12px;
    }

    .card-badge {
        padding: 5px 10px;
        font-size: 0.65rem;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-subtitle {
        font-size: 0.8rem;
    }

    .card-description {
        font-size: 0.85rem;
    }

    .card-features li {
        font-size: 0.8rem;
    }

    .btn-service {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 22px 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
    }

    .feature-icon-box {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.3rem;
        border-radius: 12px;
        margin-bottom: 0;
    }

    .feature-card h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .feature-card p {
        font-size: 0.8rem;
        margin: 0;
    }

    .cta {
        padding: 50px 0;
    }

    .cta-text h2 {
        font-size: 1.35rem;
    }

    .cta-text p {
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .cta-buttons .btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-card {
        padding: 18px;
        gap: 14px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .contact-details h4 {
        font-size: 0.95rem;
    }

    .contact-details p {
        font-size: 0.8rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .footer {
        padding: 30px 0;
    }

    .footer .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .footer .logo-text {
        font-size: 1.2rem;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 0.85rem;
    }
}

/* Extra Small Phones */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .subtitle-text {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 10px 16px;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .about-icon-box {
        width: 95px;
        height: 95px;
        font-size: 2.4rem;
    }

    .image-decoration {
        width: 150px;
        height: 150px;
    }

    .service-card {
        padding: 20px 14px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-subtitle {
        font-size: 0.75rem;
    }

    .feature-icon-box {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 18px 14px;
        gap: 12px;
    }

    .feature-card h4 {
        font-size: 0.9rem;
    }

    .feature-card p {
        font-size: 0.75rem;
    }

    .cta-text h2 {
        font-size: 1.2rem;
    }

    .cta-text p {
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.8rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .contact-details h4 {
        font-size: 0.9rem;
    }

    .contact-details p {
        font-size: 0.75rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Landscape Mode for Small Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 5% 40px;
    }

    .hero-illustration {
        display: none;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        width: auto;
    }

    .scroll-indicator {
        display: none;
    }
}
