@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #43469d;
    --accent: #ea9cbb;
    --dark: #1a1a1a;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo img {
    height: 50px;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.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(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #d88aaa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 156, 187, 0.4);
}

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

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

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

.btn-light:hover {
    background: var(--light-gray);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(67, 70, 157, 0.3) 25%,
        rgba(234, 156, 187, 0.3) 50%,
        rgba(67, 70, 157, 0.3) 75%,
        transparent 100%);
    animation: moveShade 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes moveShade {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.section {
    padding: 60px 0;
    position: relative;
}

.section.values {
    overflow: visible;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

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

.pricing-grid {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(67, 70, 157, 0.2);
    background: rgba(255, 255, 255, 0.85);
}

.values-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 60px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.values-carousel .value-card {
    min-width: calc(33.333% - 20px);
    max-width: 380px;
    flex-shrink: 0;
    padding: 40px 25px;
    text-align: center;
}

.values-carousel .value-number {
    font-size: 3rem;
    margin-bottom: 15px;
}

.values-carousel .value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.values-carousel .value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
    text-align-last: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(67, 70, 157, 0.3);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(67, 70, 157, 0.5);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dots .dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.value-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(67, 70, 157, 0.2);
    background: rgba(255, 255, 255, 0.85);
}

.value-card:hover .value-number {
    animation: bounce 0.6s ease;
}

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

.value-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
    animation: slideInLeft 0.6s ease-out;
}

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

.value-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    animation: slideInRight 0.6s ease-out 0.2s both;
}

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

.value-card p {
    color: var(--gray);
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

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

.card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.card p {
    color: var(--gray);
}

.pricing-card {
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--accent);
}

.pricing-card:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin: 15px 0;
}

.link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

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

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transform: translateX(-50%);
}

.step-item {
    position: relative;
    margin-bottom: 60px;
}

.step-item:nth-child(even) .step-card {
    margin-left: auto;
}

.step-connector {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1;
}

.step-item:nth-child(odd) .step-connector {
    right: 50%;
    transform: translateY(-50%);
}

.step-item:nth-child(even) .step-connector {
    left: 50%;
    transform: translateY(-50%);
}

.step-card {
    width: 45%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(67, 70, 157, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(67, 70, 157, 0.3);
    transition: transform 0.3s;
}

.step-card:hover .step-number {
    transform: rotate(360deg) scale(1.1);
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--gray);
    margin: 0;
}

.branch-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.branch-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.branch-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.branch-card:nth-child(1) .branch-image::after { animation-delay: 0s; }
.branch-card:nth-child(2) .branch-image::after { animation-delay: 0.5s; }
.branch-card:nth-child(3) .branch-image::after { animation-delay: 1s; }
.branch-card:nth-child(4) .branch-image::after { animation-delay: 1.5s; }
.branch-card:nth-child(5) .branch-image::after { animation-delay: 2s; }
.branch-card:nth-child(6) .branch-image::after { animation-delay: 2.5s; }

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

.card-body {
    padding: 20px;
}

.testimonials {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(67, 70, 157, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(234, 156, 187, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.testimonial {
    text-align: center;
    padding: 40px;
    display: none;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonial.active {
    display: block;
    animation: slideIn 0.5s ease-out;
}

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

.stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.cta-band {
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('CTA-BG.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4);
    z-index: 0;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 70, 157, 0.5) 0%, rgba(99, 102, 241, 0.5) 100%);
    z-index: 1;
}

.cta-band .container {
    position: relative;
    z-index: 2;
}

.cta-logo {
    height: 80px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-band h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234, 156, 187, 0.5), transparent);
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--light-gray);
}

.footer h4 {
    color: var(--accent);
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-link {
    display: inline-block;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.branch-detail {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.branch-detail h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

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

.info-item {
    display: flex;
    align-items: start;
    gap: 10px;
}

.pricing-table {
    display: grid;
    gap: 30px;
}

.pricing-detail {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s;
}

.pricing-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(67, 70, 157, 0.2);
    background: rgba(255, 255, 255, 0.85);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.pricing-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

.pricing-price {
    text-align: right;
}

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

.pricing-price .auto-price {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

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

.guide-card {
    background: rgba(243, 244, 246, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 4px solid var(--accent);
}

.guide-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.guide-card .recommendation {
    color: var(--accent);
    font-weight: 600;
    margin: 10px 0;
}

.info-box {
    background: rgba(243, 244, 246, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 4px solid var(--primary);
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box strong {
    color: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background: rgba(243, 244, 246, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary), #5558b1);
    color: var(--white);
}

.comparison-table th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th:last-child {
    border-right: none;
}

.comparison-table .feature-col {
    text-align: left;
    background: rgba(67, 70, 157, 0.1);
    font-weight: 600;
    color: var(--primary);
}

.comparison-table .popular-col {
    background: linear-gradient(135deg, var(--accent), #f0aac9);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table tbody tr:hover {
    background: rgba(67, 70, 157, 0.03);
}

.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    color: var(--gray);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table td:last-child {
    border-right: none;
}

.comparison-table td strong {
    color: var(--primary);
    font-size: 1.2rem;
}

.comparison-table .popular-col {
    background: rgba(234, 156, 187, 0.08);
}

.badge-small {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
}

.btn-table {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-table:hover {
    background: #363a85;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(67, 70, 157, 0.3);
}

.btn-table-popular {
    background: var(--accent);
}

.btn-table-popular:hover {
    background: #d88aaa;
}

.floating-facebook {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.floating-facebook:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(24, 119, 242, 0.6);
}

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

@media (max-width: 1024px) {
    .values-carousel .value-card {
        min-width: calc(50% - 15px);
        max-width: none;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .step-card {
        width: 48%;
        padding: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .cta-band {
        padding: 80px 20px;
    }
    
    .cta-logo {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .floating-facebook {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-facebook svg {
        width: 20px;
        height: 20px;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        gap: 15px;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .values-carousel {
        padding: 30px 55px;
        min-height: 450px;
        max-width: 600px;
    }
    
    .carousel-track {
        align-items: stretch;
    }
    
    .values-carousel .value-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 35px 25px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-sizing: border-box;
    }
    
    .values-carousel .value-number {
        font-size: 2.5rem;
    }
    
    .values-carousel .value-card h3 {
        font-size: 1.1rem;
    }
    
    .values-carousel .value-card p {
        font-size: 0.9rem;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-number {
        font-size: 2.5rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .card {
        padding: 25px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .steps-timeline {
        padding: 0 20px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .step-card {
        width: 100%;
        margin-left: 0 !important;
        padding: 25px 20px;
        gap: 20px;
        flex-direction: row;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
        box-shadow: 0 10px 30px rgba(67, 70, 157, 0.15);
        border: 2px solid rgba(67, 70, 157, 0.1);
    }
    
    .step-card:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 40px rgba(67, 70, 157, 0.25);
    }
    
    .step-connector {
        display: none;
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-item {
        margin-bottom: 20px;
    }
    
    .step-item:nth-child(odd) .step-card {
        border-left: 4px solid var(--primary);
    }
    
    .step-item:nth-child(even) .step-card {
        border-left: 4px solid var(--accent);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        box-shadow: 0 10px 25px rgba(67, 70, 157, 0.4);
    }
    
    .step-content h3 {
        font-size: 1.15rem;
        font-weight: 700;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta-band {
        padding: 60px 20px;
    }
    
    .cta-parallax {
        background-attachment: scroll;
    }
    
    .cta-logo {
        height: 60px;
    }
    
    .cta-band h2 {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .branch-detail,
    .pricing-detail,
    .info-box,
    .contact-info {
        padding: 25px;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .value-number {
        font-size: 2rem;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .step-card {
        width: 100%;
        margin-left: 0 !important;
        padding: 20px 15px;
        gap: 15px;
        flex-direction: row;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
        box-shadow: 0 8px 25px rgba(67, 70, 157, 0.15);
        border: 2px solid rgba(67, 70, 157, 0.1);
    }
    
    .step-item:nth-child(odd) .step-card {
        border-left: 3px solid var(--primary);
    }
    
    .step-item:nth-child(even) .step-card {
        border-left: 3px solid var(--accent);
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        box-shadow: 0 8px 20px rgba(67, 70, 157, 0.4);
    }
    
    .step-content h3 {
        font-size: 1.05rem;
        font-weight: 700;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .step-item {
        margin-bottom: 15px;
    }
    
    .testimonial {
        padding: 25px 15px;
    }
    
    .stars {
        font-size: 1.3rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .cta-band h2 {
        font-size: 1.3rem;
    }
    
    .cta-logo {
        height: 50px;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer h4 {
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .floating-facebook {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-facebook svg {
        width: 18px;
        height: 18px;
    }
    
    .values-carousel {
        padding: 20px 40px;
    }
    
    .values-carousel .value-card {
        padding: 30px 20px;
    }
    
    .values-carousel .value-number {
        font-size: 2rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .comparison-table td strong {
        font-size: 1rem;
    }
    
    .btn-table {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
