/* ===================================
   IT ORM - Complete New Design
   Green & White Theme with Animations
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #10b981;
    --green-dark: #059669;
    --green-light: #34d399;
    --green-lighter: #6ee7b7;
    --green-bg: #ecfdf5;
    --white: #ffffff;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Touch-friendly elements */
a, button, .btn, .nav-link {
    -webkit-tap-highlight-color: rgba(16, 185, 129, 0.2);
    touch-action: manipulation;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Container - Full Width */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

/* Navigation - Animated */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
    animation: fadeInDown 0.5s ease;
    box-shadow: var(--shadow-sm);
}

@keyframes fadeInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    width: 100%;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    animation: fadeInLeft 0.6s ease;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--green-primary);
    letter-spacing: -0.5px;
    animation: fadeInLeft 0.6s ease;
}

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

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--green-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section - Animated */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--green-bg) 0%, var(--white) 50%, var(--green-bg) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

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

.hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.2s both;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient 3s ease infinite;
}

.hero-description {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 7rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.75rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(16, 185, 129, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--green-primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
    width: 100%;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--green-primary);
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -2px;
    animation: pulse 2s ease-in-out infinite;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    animation: fadeIn 0.8s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    animation: fadeInUp 0.8s ease;
}

.section-tag {
    display: inline-block;
    padding: 0.625rem 1.75rem;
    background: var(--green-bg);
    color: var(--green-primary);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--green-primary);
    animation: pulse 2s ease-in-out infinite;
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-description {
    font-size: 1.375rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Services - Animated Cards */
.services {
    background: var(--white);
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    width: 100%;
}

.service-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--green-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--green-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.25rem;
    color: var(--green-primary);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
    background: var(--green-primary);
    color: var(--white);
    transform: scale(1.15) rotate(10deg);
    animation: none;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1.0625rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.service-features li:hover {
    color: var(--green-primary);
    padding-left: 5px;
}

.service-features li i {
    color: var(--green-primary);
    font-size: 1rem;
    width: 20px;
}

.service-link {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    margin-top: auto;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
    color: var(--green-dark);
}

/* About Section */
.about {
    background: var(--green-bg);
    width: 100%;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
}

.about-content {
    padding-right: 4rem;
    animation: slideInLeft 0.8s ease;
}

.about-description {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 3rem;
    font-size: 1.1875rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease;
}

.about-feature:hover {
    border-color: var(--green-primary);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.about-feature i {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.about-feature:hover i {
    animation: none;
    transform: scale(1.1);
}

.about-feature h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.about-feature p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.about-image {
    position: relative;
    animation: slideInRight 0.8s ease;
}

.image-placeholder {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

/* Testimonials */
.testimonials {
    background: var(--white);
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    width: 100%;
}

.testimonial-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInUp 0.6s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--green-primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-primary);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 2rem;
    font-size: 1.375rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.author-info h4 {
    font-size: 1.1875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.cta-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-white {
    background: var(--white);
    color: var(--green-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: var(--green-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 120px 0 50px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 5rem;
    margin-bottom: 5rem;
    width: 100%;
}

.footer-logo h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--green-primary);
    font-weight: 900;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--green-primary);
    border-color: var(--green-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    color: var(--white);
    font-weight: 700;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.footer-contact {
    list-style: none;
    margin-top: 1rem;
}

.footer-contact li {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.footer-contact li i {
    color: var(--green-primary);
    width: 24px;
    flex-shrink: 0;
    font-size: 1.25rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.payment-partners {
    margin-bottom: 2rem;
}

.payment-partners h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-partner-logo {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

.payment-partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Page Hero */
.page-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--green-bg) 0%, var(--white) 50%, var(--green-bg) 100%);
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    width: 100%;
}

.product-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--green-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-primary);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--green-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.25rem;
    color: var(--green-primary);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    padding: 15px;
}

.partner-favicon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: var(--green-primary);
    color: var(--white);
    transform: scale(1.15) rotate(10deg);
    animation: none;
}

.product-card:hover .partner-favicon {
    filter: brightness(1.2);
}

.product-icon-large {
    width: 100px;
    height: 100px;
    padding: 20px;
}

.product-icon-large .partner-favicon {
    width: 100%;
    height: 100%;
}

.product-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.product-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1.0625rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.product-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.product-features li:hover {
    color: var(--green-primary);
    padding-left: 5px;
}

.product-features li i {
    color: var(--green-primary);
    font-size: 1rem;
    width: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition);
    margin-top: auto;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    width: 100%;
}

.product-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--green-bg);
    width: 100%;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
    width: 100%;
}

.partner-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--green-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-primary);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: var(--green-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.25rem;
    color: var(--green-primary);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.partner-card:hover .partner-icon {
    background: var(--green-primary);
    color: var(--white);
    transform: scale(1.15) rotate(10deg);
    animation: none;
}

.partner-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.partner-category {
    color: var(--green-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.partner-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1.0625rem;
}

.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--green-bg);
    color: var(--green-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: #1877f2;
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition);
    margin-top: auto;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
    width: 100%;
}

.partner-link:hover {
    background: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4);
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.service-detail-card {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--green-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

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

.service-detail-content {
    max-width: 100%;
    margin: 0 auto;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: var(--green-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    font-size: 3rem;
    color: var(--green-primary);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.service-detail-card:hover .service-detail-icon {
    background: var(--green-primary);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
    animation: none;
}

.service-detail-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.service-detail-content > p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.service-features-list {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--green-bg);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-item:hover {
    background: var(--white);
    border-color: var(--green-primary);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    color: var(--green-primary);
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* About Content */
.about-content-section {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.about-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3rem 0 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    animation: fadeInUp 0.6s ease;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--green-bg);
    width: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.value-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--green-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--green-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.25rem;
    color: var(--green-primary);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.value-card:hover .value-icon {
    background: var(--green-primary);
    color: var(--white);
    transform: scale(1.15) rotate(10deg);
    animation: none;
}

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

.value-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.team-member {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--green-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-primary);
}

.member-avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 4rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: pulse 2s ease-in-out infinite;
    overflow: hidden;
    position: relative;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-avatar i {
    position: absolute;
    z-index: 1;
}

.team-member:hover .member-avatar {
    animation: none;
    transform: scale(1.1);
}

.member-name {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-role {
    color: var(--green-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background: var(--green-bg);
    width: 100%;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
}

.achievement-item {
    text-align: center;
    padding: 3.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--green-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.achievement-item:hover::before {
    transform: scaleX(1);
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-primary);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--green-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.25rem;
    color: var(--green-primary);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.achievement-item:hover .achievement-icon {
    background: var(--green-primary);
    color: var(--white);
    transform: scale(1.15) rotate(10deg);
    animation: none;
}

.achievement-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--green-primary);
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -2px;
    animation: pulse 2s ease-in-out infinite;
}

.achievement-label {
    color: var(--text-gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

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

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .about-content {
        padding-right: 0;
    }
}

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

    .logo-image {
        height: 45px;
    }

    .logo-text {
        font-size: 1.625rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2.5rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1.5rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-link {
        font-size: 1.125rem;
        padding: 0.75rem 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
        width: 32px;
        height: 32px;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle span {
        width: 24px;
        height: 3px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 110px 0 50px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn {
        min-height: 48px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    section {
        padding: 50px 0;
    }

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

    .section-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1.125rem;
    }

    .services-grid,
    .testimonials-grid,
    .products-grid,
    .partners-grid,
    .values-grid,
    .team-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .product-card,
    .testimonial-card,
    .value-card {
        padding: 2.5rem;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .page-hero {
        padding: 130px 0 60px;
    }

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

    .about-wrapper {
        gap: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .nav-wrapper {
        padding: 1rem 0;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    section {
        padding: 40px 0;
    }

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

    .section-tag {
        font-size: 0.7rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .service-card,
    .product-card,
    .testimonial-card,
    .value-card,
    .team-member {
        padding: 2rem;
    }

    .service-icon,
    .product-icon,
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .product-icon-large {
        width: 80px;
        height: 80px;
        padding: 15px;
    }

    .service-card h3,
    .product-card h3,
    .value-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .product-description,
    .service-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .product-link,
    .service-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .about-wrapper {
        gap: 3rem;
    }

    .about-features {
        gap: 1.5rem;
    }

    .about-feature {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-large {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .payment-partners-logos {
        gap: 1.5rem;
    }

    .payment-partner-logo {
        height: 50px;
        max-width: 150px;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .achievement-number {
        font-size: 3rem;
    }

    .team-member {
        padding: 2rem 1.5rem;
    }

    .member-avatar img {
        width: 120px;
        height: 120px;
    }
}

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

    .cta-title {
        font-size: 2.5rem;
    }
}
