:root {
    /* Warm Peach Theme */
    --primary-color: #ffb5a7;
    /* Soft Peach */
    --primary-light: #ffd4c8;
    /* Light Peach */
    --primary-dark: #d4806f;
    /* Deep Coral */
    --accent-cream: #fff5f0;
    /* Cream */
    --accent-rose: #ffcdb2;
    /* Rose */

    /* Gradients */
    --gradient-peach: linear-gradient(135deg, #ffd4c8 0%, #ffb5a7 50%, #ffcdb2 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 212, 200, 0.95), rgba(255, 181, 167, 0.95)), url('../images/fintech-bg.png');

    /* Backgrounds */
    --background-light: #fffbf8;
    --background-alt: #fff5f0;
    --background-card: #ffffff;

    /* Text */
    --text-dark: #3d2e2e;
    --text-light: #ffffff;
    --text-muted: #8b7a7a;

    --border-color: #ffe8df;
}

body {
    background-color: var(--background-light);
    color: var(--text-dark);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
}

.nav-links a {
    color: var(--primary-dark);
    font-weight: 600;
}

.nav-links a:hover {
    background: var(--gradient-peach);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section - Warm Peach Gradient */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/index2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    padding: 100px 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

.hero-content h1 {
    color: white !important;
    background: none;
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Buttons in Hero */
.hero .btn-primary,
.hero .btn-outline {
    background: white;
    color: var(--primary-dark);
    border: none;
}

.hero .btn-primary:hover,
.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Client Section */
.clients-section {
    background: linear-gradient(to right, #fff5f0, #fffbf8, #fff5f0);
    border-bottom: 1px solid var(--border-color);
}

/* Headings with Peach Gradient */
h1,
h2,
h3,
.section-title {
    background: var(--gradient-peach);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    display: block;
}

p {
    color: var(--text-muted) !important;
}

/* Main Components */
.intro-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 181, 167, 0.15);
    max-width: 900px;
    margin: 0 auto;
    color: #444;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-card p:not(:last-child) {
    margin-bottom: 20px;
}

/* Page Headers */
.page-header-sub {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    min-height: 450px;
    /* Standardized height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Overlay for legibility */
.page-header-sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-header-sub .container {
    position: relative;
    z-index: 2;
}

.page-header-sub h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white !important;
    background: none;
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header-sub p {
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: white !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Grids */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Cards */
.info-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card.border-top {
    border-top: 4px solid var(--primary-color);
}

.info-card.border-left {
    border-left: 4px solid var(--primary-color);
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.95rem;
    color: #555;
}

/* CTA & Highlight Boxes */
.highlight-section {
    margin-top: 80px;
    background: var(--gradient-peach);
    color: white;
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
}

.highlight-section h2 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.highlight-section h3 {
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white !important;
    background: none;
    -webkit-text-fill-color: white;
}

.highlight-section p {
    max-width: 800px;
    margin: 0 auto;
    opacity: 1;
    line-height: 1.6;
    color: white !important;
}

.core-features-heading {
    text-align: center;
    color: var(--primary-dark);
    margin-top: 60px;
    margin-bottom: 30px;
}

/* Utilities */
.section-padding {
    padding: 60px 20px;
}

.section-padding-large {
    padding: 80px 20px;
}

.text-center {
    text-align: center;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: white;
}

.footer-col h3 {
    color: white !important;
    background: none;
    -webkit-text-fill-color: initial;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: rgba(255, 255, 255, 0.95);
}

.footer-col a:hover {
    color: white;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-peach);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 181, 167, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 181, 167, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Contact Page Enhancements */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 181, 167, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    gap: 15px;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h4 {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card h4 i {
    margin-right: 12px;
    color: var(--primary-color);
}

.whatsapp-btn {
    background: var(--gradient-peach);
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 181, 167, 0.2);
    font-size: 0.95rem;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 181, 167, 0.4);
    filter: brightness(1.05);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.contact-card p {
    margin: 0 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    margin-top: 5px;
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    min-height: 50px;
    flex-wrap: wrap;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-card .whatsapp-link:hover {
    text-decoration: underline;
}

.social-icons-group {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
}

.social-icons-group a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.social-icons-group a:hover {
    color: var(--primary-dark);
}

/* Product Components */
.product-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.contact-row .whatsapp-btn {
    margin-top: 0;
    padding: 8px 15px;
}

.deployment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.deployment-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.deployment-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.deployment-card h3 {
    margin-bottom: 15px;
}

.deployment-card p {
    color: #666;
}

.product-card:hover .product-icon {
    transform: scale(1.15) rotate(5deg);
}

.product-card {
    border-top: 4px solid var(--primary-color);
}