/* Global Styles */
:root {
    --primary-color: #4f46e5;
    --secondary-color: #0f172a;
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --success-color: #22c55e;
    --danger-color: #ef4444;
    --gray-color: #94a3b8;
    --border-radius: 8px;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-login, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
}

.btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

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

.btn-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-login {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-login:hover {
    color: #4338ca;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
}

nav ul li a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 5rem 0 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-content h1 .accent {
    color: var(--primary-color);
    position: relative;
}

.hero-content h1 .accent::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-color);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: float-icons 6s infinite ease-in-out;
}

.icon-shield {
    top: 10%;
    left: 10%;
    animation-delay: 0.5s;
}

.icon-lock {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.icon-globe {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

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

.card-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    filter: blur(10px);
    border-radius: 50%;
}

/* Virtual Card Styles */
.virtual-card {
    width: 350px;
    height: 220px;
    background: linear-gradient(45deg, #4f46e5 0%, #7e77ff 100%);
    border-radius: 16px;
    padding: 25px;
    color: white;
    position: relative;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.virtual-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.virtual-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.card-chip {
    width: 50px;
    height: 35px;
    background: linear-gradient(45deg, #daa520, #ffd700);
    border-radius: 6px;
    position: relative;
    margin-bottom: 25px;
}

.card-chip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 20px;
    background: linear-gradient(45deg, #ffd700, #daa520);
    border-radius: 3px;
}

.card-logo {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-number {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-family: monospace;
}

.card-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.card-holder, .card-expiry {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 5px;
}

.value {
    font-size: 1rem;
    letter-spacing: 1px;
}

.card-network {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 2rem;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: white;
}

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

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-link i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

/* App Showcase Section */
.app-showcase {
    padding: 5rem 0;
    background-color: white;
}

.app-showcase .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.showcase-content {
    flex: 1;
}

.showcase-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.showcase-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.app-features {
    margin-bottom: 2rem;
}

.app-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.app-features li i {
    color: var(--success-color);
}

.app-buttons {
    display: flex;
    gap: 1rem;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.app-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.app-button i {
    font-size: 1.8rem;
}

.app-button-text {
    display: flex;
    flex-direction: column;
}

.app-button-text span {
    font-size: 0.7rem;
}

.app-button-text strong {
    font-size: 1rem;
}

.showcase-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 10px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 25px;
    overflow: hidden;
}

.app-interface {
    padding: 20px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.app-logo {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.app-actions {
    display: flex;
    gap: 15px;
    color: var(--secondary-color);
}

.app-balance {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.balance-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.balance-amount {
    font-size: 1.8rem;
    font-weight: 700;
}

.app-cards {
    margin-bottom: 20px;
}

.app-card {
    background: linear-gradient(45deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.app-card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.app-card-type {
    font-weight: 600;
}

.app-card-number {
    font-family: monospace;
    letter-spacing: 2px;
}

.app-section-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.app-transaction {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}

.transaction-icon.shopping {
    background-color: #ec4899;
}

.transaction-icon.food {
    background-color: #f59e0b;
}

.transaction-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.transaction-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.transaction-date {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.transaction-amount {
    font-weight: 600;
    color: var(--danger-color);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

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

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

.cta .btn-primary:hover {
    background-color: #f8f9fa;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-card {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
}

.card-pulse::before, .card-pulse::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.card-pulse::after {
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        width: 50px;
        height: 50px;
        opacity: 1;
    }
    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #f8fafc;
}

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

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    color: #f59e0b;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-color);
    font-size: 1.1rem;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--secondary-color);
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* FAQ Section Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: white;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0.5rem 0 1.5rem;
    color: var(--gray-color);
    line-height: 1.7;
}

/* Partners Section */
.partners {
    padding: 3rem 0;
    background-color: white;
}

.partners-title {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-logo i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
}

.footer-top {
    padding: 5rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-column p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    line-height: 1.7;
}

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

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--gray-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.contact-info li i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.newsletter {
    margin-top: 2rem;
}

.newsletter h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-form {
    display: flex;
    height: 45px;
}

.newsletter-form input {
    flex: 1;
    padding: 0 15px;
    border: none;
    outline: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 45px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #4338ca;
}

.newsletter-success {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

.footer-bottom {
    padding: 1.5rem 0;
}

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

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

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-color);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .virtual-card {
        width: 320px;
        height: 200px;
    }
    
    .app-showcase .container,
    .cta .container {
        flex-direction: column;
    }
    
    .showcase-content,
    .cta-content {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .app-features {
        display: inline-block;
        text-align: left;
    }
    
    .app-buttons,
    .cta-buttons {
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 20px;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .virtual-card {
        margin: 0 auto;
    }
    
    .partners-grid {
        justify-content: center;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .virtual-card {
        width: 280px;
        height: 180px;
        padding: 20px;
    }
    
    .card-chip {
        width: 40px;
        height: 30px;
        margin-bottom: 15px;
    }
    
    .card-logo {
        font-size: 1.2rem;
    }
    
    .card-number {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .app-buttons {
        flex-direction: column;
    }
}

/* Pricing Options */
.pricing-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.currency-selector label {
    font-weight: 600;
    color: var(--secondary-color);
}

.currency-buttons {
    display: flex;
    gap: 0.5rem;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    background: transparent;
    cursor: pointer;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.currency-btn i {
    font-size: 0.9rem;
}

.currency-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.15);
}

.currency-btn:hover:not(.active) {
    border-color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.05);
}

/* Card Types Header */
.card-types-header {
    margin-top: 5rem;
}

/* Specialized Cards */
.specialized-cards .pricing-card {
    text-align: center;
}

.card-type-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.1);
}

.card-type-icon::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px dashed var(--primary-color);
    opacity: 0.5;
}

.card-type-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: pulse-icon 2s infinite ease-in-out;
}

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

/* Currency Advantages Section */
.currency-advantages {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.advantage-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.advantage-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: white;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-toggle-container .discount-badge {
    background-color: var(--success-color);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    margin-left: 0.5rem;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.specialized-cards .pricing-card {
    background: linear-gradient(to bottom, white, #f8fafc);
    border-top: 4px solid var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured::before {
    content: "Popular";
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card-header h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

.pricing-card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card-price span:last-child {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 400;
}

.pricing-card-features {
    margin-bottom: 2rem;
}

.pricing-card-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-card-features li i {
    color: var(--success-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.pricing-card-features li.unavailable {
    color: var(--gray-color);
}

.pricing-card-features li.unavailable i {
    color: var(--danger-color);
}

.pricing-card .btn-primary {
    display: block;
    text-align: center;
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--gray-color);
}

.pricing-note a {
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-options {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Pricing Table Styles */
.pricing-table-container {
    overflow-x: auto;
    margin: 3rem 0;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    text-align: left;
}

.pricing-table th, 
.pricing-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
}

.pricing-table th:first-child {
    text-align: left;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background-color: #f8fafc;
}

.table-card-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.table-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.table-card-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.table-card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.table-card-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

.price-cell {
    text-align: center;
    position: relative;
}

.featured-price {
    background-color: rgba(79, 70, 229, 0.05);
}

.featured-price::before {
    content: "Best Value";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    white-space: nowrap;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.price-period {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.table-features {
    padding-left: 0;
    margin: 0;
}

.table-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.table-features li:last-child {
    margin-bottom: 0;
}

.table-features i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.btn-table {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.currency-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.currency-icon i {
    font-size: 1.2rem;
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-icon span {
    font-size: 0.9rem;
    font-weight: 600;
}

.currency-icon.usd i {
    background-color: #4338ca;
}

.currency-icon.eur i {
    background-color: #3b82f6;
}

.currency-icon.gbp i {
    background-color: #8b5cf6;
}

@media (max-width: 992px) {
    .pricing-table th, 
    .pricing-table td {
        padding: 1rem;
    }
    
    .table-features li {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .price-amount {
        font-size: 1.2rem;
    }
    
    .table-card-info {
        flex-direction: column;
        text-align: center;
    }
    
    .table-card-icon {
        margin: 0 auto 0.5rem;
    }
}

.pricing-table th.active-currency {
    background-color: rgba(79, 70, 229, 0.08);
    border-bottom: 2px solid var(--primary-color);
}

.pricing-table td.active-currency {
    background-color: rgba(79, 70, 229, 0.03);
}

.pricing-table td.active-currency .price-amount {
    font-size: 1.7rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 1rem;
}

.contact-info-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-box h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    width: 24px;
    text-align: center;
}

.contact-info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--gray-color);
    line-height: 1.7;
}

.contact-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.contact-social .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

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

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.contact-form h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-container .form-group:nth-child(3),
.form-container .form-group:nth-child(4),
.form-container .form-group:nth-child(5),
.form-container .form-group:nth-child(6),
.form-container .btn-primary {
    grid-column: span 2;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    background-color: #f8fafc;
    color: var(--dark-color);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group label a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Map Section */
.map-section {
    padding: 3rem 0 5rem;
    background-color: var(--light-color);
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e2e8f0;
    color: var(--secondary-color);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-container .form-group:nth-child(3),
    .form-container .form-group:nth-child(4),
    .form-container .form-group:nth-child(5),
    .form-container .form-group:nth-child(6),
    .form-container .btn-primary {
        grid-column: span 1;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-info-item {
        flex-direction: column;
    }
    
    .contact-info-item i {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%);
    color: white;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 8rem;
}

.contact-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero-content {
    max-width: 600px;
    margin-bottom: 3rem;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-hero-content h1 .accent {
    color: #ffdd00;
    position: relative;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
}

.contact-hero-shape {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 1;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-bottom: -4rem;
}

.contact-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-card-info span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.contact-card-info span i {
    color: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-form-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
}

.textarea-icon i {
    top: 1.5rem;
    transform: none;
}

.input-with-icon input,
.input-with-icon select {
    padding-left: 3rem;
}

.input-with-icon textarea {
    padding-left: 3rem;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-office {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.contact-office h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
    border-bottom: 1px solid #f1f5f9;
}

.office-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.office-details {
    padding: 1.5rem;
}

.office-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.office-item:last-child {
    margin-bottom: 0;
}

.office-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    margin-top: 0.3rem;
}

.office-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.office-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

.contact-socials {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
}

.contact-socials h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-socials p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-icons-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background-color: #0077b5;
}

/* Interactive Map */
.interactive-map {
    position: relative;
    height: 500px;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.map-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    width: 300px;
}

.map-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.map-card h3 i {
    color: var(--primary-color);
}

.map-card p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.btn-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    width: 100%;
}

/* FAQ Mini Section */
.faq-mini {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.faq-mini-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-mini-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.faq-mini-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.faq-mini-header a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-mini-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.faq-mini-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-mini-item h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.faq-mini-item p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-cards {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 3rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        margin-bottom: -6rem;
    }
    
    .faq-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper,
    .contact-office,
    .contact-socials {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0 0;
        margin-bottom: 6rem;
    }
    
    .contact-hero-content {
        margin-bottom: 2rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .interactive-map {
        height: 400px;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        padding: 1.5rem;
    }
    
    .map-card {
        width: 100%;
    }
    
    .social-icons-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card-icon i {
        font-size: 1.5rem;
    }
    
    .faq-mini-header h2 {
        font-size: 2rem;
    }
}

/* Authentication Pages (Login/Register) */
.auth-body {
    background-color: #f8fafc;
}

.auth-page {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* Visual Side */
.auth-visual {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 650px;
}

.register-visual {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.auth-visual-content {
    position: relative;
    z-index: 5;
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.auth-logo-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.auth-visual h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.auth-visual p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.auth-visual-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='pattern' width='100' height='100' viewBox='0 0 40 40' patternUnits='userSpaceOnUse' patternTransform='rotate(5)'%3E%3Crect width='100%25' height='100%25' fill='none'/%3E%3Ccircle cx='20' cy='20' r='2' fill='rgba(255, 255, 255, 0.1)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23pattern)'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.register-shape {
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='pattern' width='80' height='80' viewBox='0 0 40 40' patternUnits='userSpaceOnUse' patternTransform='rotate(5)'%3E%3Crect width='100%25' height='100%25' fill='none'/%3E%3Cpath d='M0 20 L20 0 L40 20 L20 40 Z' fill='rgba(255, 255, 255, 0.1)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23pattern)'/%3E%3C/svg%3E");
}

/* Features in Visual Side */
.auth-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.auth-feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.auth-feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Floating cards animation */
.auth-floating-cards {
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    width: 160px;
    height: 160px;
}

.floating-card {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.card-1 {
    top: 0;
    right: 0;
    animation-name: float-1;
}

.card-2 {
    bottom: 0;
    left: 0;
    animation-name: float-2;
}

.card-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: float-3;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, 15px) rotate(5deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -15px) rotate(-5deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-40%, -40%) rotate(10deg); }
}

/* Benefits list */
.auth-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.auth-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.auth-benefit i {
    color: #34d399;
    font-size: 1.2rem;
}

/* Testimonial */
.auth-review {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}

.auth-review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.auth-review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.auth-review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-review-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.auth-review-info p {
    margin: 0;
}

.auth-review-name {
    font-weight: 600;
    font-size: 1rem;
}

.auth-review-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Form Container */
.auth-form-container {
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.auth-form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.auth-form-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.auth-form-header p {
    color: var(--gray-color);
}

/* Form Styles */
.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.auth-form .input-with-icon {
    position: relative;
}

.auth-form .input-with-icon i:not(.toggle-password) {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
}

.auth-form .input-with-icon input,
.auth-form .input-with-icon select {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background-color: #f8fafc;
    color: var(--secondary-color);
    font-family: inherit;
    transition: all 0.3s ease;
}

.auth-form .input-with-icon input:focus,
.auth-form .input-with-icon select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background-color: white;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--gray-color);
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Password Strength Meter */
.password-strength {
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.strength-meter {
    flex-grow: 1;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 3px;
    display: flex;
    gap: 4px;
}

.strength-segment {
    height: 100%;
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.strength-segment.active {
    background-color: #f87171;
}

.strength-meter.fair .strength-segment.active {
    background-color: #fbbf24;
}

.strength-meter.good .strength-segment.active {
    background-color: #60a5fa;
}

.strength-meter.strong .strength-segment.active {
    background-color: #34d399;
}

.strength-text {
    font-size: 0.85rem;
    color: var(--gray-color);
    min-width: 60px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group label a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.remember-me input {
    width: 16px;
    height: 16px;
}

.forgot-password {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Auth Submit Button */
.btn-auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.btn-auth-submit:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
}

.btn-auth-submit i {
    transition: transform 0.3s ease;
}

.btn-auth-submit:hover i {
    transform: translateX(5px);
}

/* Auth Divider */
.auth-divider {
    text-align: center;
    position: relative;
    margin: 0 0 2rem;
}

.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e2e8f0;
}

.auth-divider span {
    position: relative;
    background-color: white;
    padding: 0 1rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Social Auth Buttons */
.social-auth-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-social-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background-color: white;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-social-auth:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.btn-social-auth.google i {
    color: #DB4437;
}

.btn-social-auth.apple i {
    color: #000000;
}

/* Auth Form Footer */
.auth-form-footer {
    text-align: center;
    color: var(--gray-color);
}

.auth-form-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design for Auth Pages */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        max-width: 550px;
    }
    
    .auth-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .auth-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-auth-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .auth-form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Let's remove the old auth-section styles to avoid conflicts */
.auth-section {
    display: none;
} 