@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Playfair+Display:wght@600;700&family=Marcellus&family=Alex+Brush&display=swap');

:root {
    --primary-purple: #49306B;
    --secondary-purple: #7D6095;
    --light-bg: #FDFBF7;
    --section-bg: #EFE4ED;
    /* Light Purple for highlight */
    --dark-text: #222222;
    --light-text: #555555;
    --btn-hover: #34214F;
    --success-color: #28A745;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--light-text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Marcellus', serif;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-purple);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--btn-hover);
}

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

/* Header */
header {
    background-color: #FDFBF7;
    box-shadow: 0 2px 15px rgba(73, 48, 107, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    color: var(--primary-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    border-bottom: 1px solid var(--secondary-purple);
    padding-bottom: 2px;
    margin-bottom: 2px;
}

.tagline {
    font-family: 'Marcellus', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--primary-purple);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: -5px;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-purple);
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(73, 48, 107, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-purple);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(73, 48, 107, 0.2);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--light-bg);
}

.section-lavender {
    background-color: var(--section-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-purple);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-purple);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: url('../images/world-map-bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--dark-text);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 1.2s ease-out;
}

.hero h1 {
    font-size: 4rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 45px;
    color: var(--dark-text);
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Two Column Layout */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(73, 48, 107, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(73, 48, 107, 0.05);
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(73, 48, 107, 0.15);
    border-color: rgba(73, 48, 107, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    display: inline-block;
    padding: 20px;
    background: var(--section-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--primary-purple);
    color: #ffffff;
}

.card h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Lists */
.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-purple);
    font-size: 1.1rem;
}

/* Social Media & Floating WhatsApp */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(73, 48, 107, 0.05);
    border: 1px solid rgba(73, 48, 107, 0.05);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

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

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

.form-control {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(73, 48, 107, 0.1);
    background-color: #ffffff;
}

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

/* Footer */
footer {
    background-color: var(--primary-purple);
    color: #ffffff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Marcellus', serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 5px;
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

.footer-tagline {
    font-family: 'Marcellus', serif;
    font-size: 1rem;
    font-style: italic;
    color: #e0d5e8;
    display: block;
    margin-top: -5px;
}

.footer-about {
    color: #e0d5e8;
    margin-top: 25px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.3rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-purple);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0d5e8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-contact p {
    color: #e0d5e8;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--secondary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0d5e8;
    font-size: 0.95rem;
}

/* Image formatting */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(73, 48, 107, 0.15);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Page Header */
.page-header {
    background-color: var(--primary-purple);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(rgba(73, 48, 107, 0.9), rgba(73, 48, 107, 0.9)), url('../images/world-map-bg.png');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 3rem;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-wrapper {
        gap: 20px;
    }

    .btn-primary.header-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: 2.8rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* --- MODERNIZED EXTRACTED STYLES --- */

/* Styles from index.php */
/* Modern Home Specific Styles */
    .modern-home-hero {
        min-height: 90vh;
        display: flex;
        align-items: center;
        background-image: linear-gradient(135deg, rgba(73, 48, 107, 0.8) 0%, rgba(125, 96, 149, 0.8) 100%), url('assets/images/world-map-bg.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
        overflow: hidden;
    }

    .modern-home-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
        z-index: 1;
    }

    .modern-hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 24px;
        padding: 60px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }

    .modern-hero-content h1 {
        color: #ffffff;
        font-size: 3.8rem;
        margin-bottom: 25px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        line-height: 1.2;
    }

    .modern-hero-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.15rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .modern-hero-btns {
        margin-top: 40px;
        display: flex;
        gap: 20px;
    }

    .btn-glass {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: #ffffff;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .btn-glass:hover {
        background: #ffffff;
        color: var(--primary-purple);
    }

    .btn-primary-glow {
        background: linear-gradient(90deg, #F8F6FB, #ffffff);
        color: var(--primary-purple);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 600;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .btn-primary-glow:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    }

    /* About/Welcome Section Overlap */
    .modern-welcome-section {
        padding: 100px 0;
        background-color: var(--light-bg);
    }

    /* Reusing modern-about-row styles for welcome */
    .modern-overlap-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .modern-overlap-text {
        flex: 1;
        min-width: 300px;
        background: #ffffff;
        padding: 50px;
        border-radius: 24px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        position: relative;
        z-index: 3;
        border: 1px solid rgba(73, 48, 107, 0.05);
    }

    .modern-overlap-image {
        flex: 1;
        min-width: 300px;
        position: relative;
    }

    .modern-overlap-image img {
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(73, 48, 107, 0.15);
        width: 100%;
        object-fit: cover;
        position: relative;
        z-index: 2;
    }

    .modern-overlap-bg {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
        border-radius: 24px;
        z-index: 1;
        opacity: 0.1;
    }

    @media (min-width: 992px) {
        .modern-overlap-row {
            gap: 0;
        }

        .modern-overlap-image {
            margin-left: -60px;
        }
    }

    .modern-overlap-text h2 {
        font-size: 2.2rem;
        color: var(--primary-purple);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

    .modern-overlap-text h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
        border-radius: 2px;
    }

    /* Why Choose Us Cards */
    .modern-choose-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #F8F6FB 0%, #EFE4ED 100%);
    }

    .modern-choose-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(73, 48, 107, 0.05);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .modern-choose-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.4s ease;
    }

    .modern-choose-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(73, 48, 107, 0.1);
    }

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

    .modern-choose-icon {
        width: 65px;
        height: 65px;
        background: rgba(125, 96, 149, 0.1);
        color: var(--primary-purple);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 1.5rem;
        transition: all 0.4s ease;
    }

    .modern-choose-card:hover .modern-choose-icon {
        background: var(--primary-purple);
        color: #ffffff;
        transform: rotateY(180deg);
    }

    /* Services Overview */
    .modern-services-overview {
        padding: 100px 0;
        background-color: #ffffff;
    }

    .modern-staggered-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .modern-staggered-image {
        flex: 1;
        min-width: 300px;
    }

    .modern-staggered-image img {
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(73, 48, 107, 0.1);
        width: 100%;
    }

    .modern-staggered-text {
        flex: 1;
        min-width: 300px;
    }

    /* Commitment Quote */
    .modern-commitment-section {
        padding: 100px 0;
        background-color: var(--light-bg);
    }

    /* Modern CTA */
    .modern-cta-section {
        background: linear-gradient(135deg, var(--primary-purple) 0%, #2A1B38 100%);
        padding: 100px 0;
        text-align: center;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .modern-cta-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(125, 96, 149, 0.3) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .modern-cta-content {
        position: relative;
        z-index: 2;
    }

/* Styles from about-us.php */
/* Modern Header */
    .modern-page-header {
        background-image: linear-gradient(135deg, rgba(73, 48, 107, 0.8) 0%, rgba(125, 96, 149, 0.8) 100%), url('assets/images/world-map-bg.png');
        background-size: cover;
        background-position: center;
        color: #ffffff;
        padding: 100px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .modern-page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
        z-index: 1;
    }

    .modern-page-header .container {
        position: relative;
        z-index: 2;
    }

    .modern-page-header h1 {
        color: #ffffff;
        font-size: 3.5rem;
        margin-bottom: 25px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .modern-page-header p {
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 2px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        display: inline-block;
        padding: 12px 30px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin: 0;
    }

    /* About Section */
    .modern-about-section {
        padding: 100px 0;
        background-color: var(--light-bg);
        overflow: hidden;
    }

    .modern-about-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .modern-about-image {
        flex: 1;
        min-width: 300px;
        position: relative;
    }

    .modern-about-image img {
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(73, 48, 107, 0.15);
        width: 100%;
        object-fit: cover;
        position: relative;
        z-index: 2;
    }

    .modern-about-bg {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
        border-radius: 24px;
        z-index: 1;
        opacity: 0.1;
    }

    .modern-about-text {
        flex: 1;
        min-width: 300px;
        background: #ffffff;
        padding: 50px;
        border-radius: 24px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        position: relative;
        z-index: 3;
        border: 1px solid rgba(73, 48, 107, 0.05);
    }

    @media (min-width: 992px) {
        .modern-about-row {
            gap: 0;
        }

        .modern-about-text {
            margin-left: -60px;
        }
    }

    .modern-about-text h2 {
        font-size: 2.2rem;
        color: var(--primary-purple);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

    .modern-about-text h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
        border-radius: 2px;
    }

    .modern-about-text p {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

/* Styles from our-services.php */
.modern-page-header {
        background-image: linear-gradient(135deg, rgba(73, 48, 107, 0.8) 0%, rgba(125, 96, 149, 0.8) 100%), url('assets/images/world-map-bg.png');
        background-size: cover;
        background-position: center;
        color: #ffffff;
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .modern-page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
        z-index: 1;
    }

    .modern-page-header .container {
        position: relative;
        z-index: 2;
    }

    .modern-page-header h1 {
        color: #ffffff;
        font-size: 3.5rem;
        margin-bottom: 25px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .modern-page-header p {
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 2px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        display: inline-block;
        padding: 12px 30px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin: 0;
    }

    .modern-merchant-section {
        padding: 100px 0;
        background-color: var(--light-bg);
        overflow: hidden;
    }

    .modern-merchant-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 100px;
        gap: 40px;
    }

    .modern-merchant-row:nth-child(even) {
        flex-direction: row-reverse;
    }

    .modern-image-col {
        flex: 1;
        min-width: 300px;
        position: relative;
    }

    .modern-image-col img {
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(73, 48, 107, 0.15);
        width: 100%;
        object-fit: cover;
        position: relative;
        z-index: 2;
        transition: transform 0.5s ease;
    }

    .modern-image-col:hover img {
        transform: scale(1.03);
    }

    .modern-image-bg {
        position: absolute;
        top: 25px;
        left: -25px;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(73, 48, 107, 0.1) 0%, rgba(125, 96, 149, 0.15) 100%);
        border-radius: 20px;
        z-index: 1;
    }

    .modern-merchant-row:nth-child(even) .modern-image-bg {
        left: 25px;
    }

    .modern-text-col {
        flex: 1;
        min-width: 300px;
        background: #ffffff;
        padding: 50px;
        border-radius: 24px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        position: relative;
        z-index: 3;
        border: 1px solid rgba(73, 48, 107, 0.05);
    }

    @media (min-width: 992px) {
        .modern-merchant-row {
            gap: 0;
        }

        .modern-text-col {
            margin-left: -60px;
        }

        .modern-merchant-row:nth-child(even) .modern-text-col {
            margin-left: 0;
            margin-right: -60px;
        }
    }

    .modern-text-col h3 {
        font-size: 2.2rem;
        color: var(--primary-purple);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

    .modern-text-col h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
        border-radius: 2px;
    }

    .modern-text-col p {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .modern-text-col .modern-feature-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 25px;
    }

/* Styles from contact-us.php */
.modern-page-header {
        background-image: linear-gradient(135deg, rgba(73, 48, 107, 0.8) 0%, rgba(125, 96, 149, 0.8) 100%), url('assets/images/world-map-bg.png');
        background-size: cover;
        background-position: center;
        color: #ffffff;
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .modern-page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
        z-index: 1;
    }

    .modern-page-header .container {
        position: relative;
        z-index: 2;
    }

    .modern-page-header h1 {
        color: #ffffff;
        font-size: 3.5rem;
        margin-bottom: 25px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .modern-page-header p {
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 2px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        display: inline-block;
        padding: 12px 30px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin: 0;
    }

    .modern-contact-section {
        padding: 80px 0;
        background-color: var(--light-bg);
        position: relative;
    }

    .modern-contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: flex-start;
    }

    @media(max-width: 992px) {
        .modern-contact-grid {
            grid-template-columns: 1fr;
        }
    }

    .modern-info-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 30px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(73, 48, 107, 0.05);
        border: 1px solid rgba(73, 48, 107, 0.05);
        margin-bottom: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .modern-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(73, 48, 107, 0.1);
    }

    .modern-info-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
        color: white;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 10px 20px rgba(73, 48, 107, 0.2);
    }

    .modern-info-content h3 {
        color: var(--primary-purple);
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .modern-info-content p {
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

    .modern-form-wrapper {
        background: #ffffff;
        padding: 50px;
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(73, 48, 107, 0.1);
        border: 1px solid rgba(73, 48, 107, 0.05);
        position: relative;
    }

    .modern-form-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
        border-radius: 24px 24px 0 0;
    }

    .modern-form-wrapper h3 {
        font-size: 2rem;
        color: var(--primary-purple);
        margin-bottom: 30px;
    }

    .modern-form-control {
        width: 100%;
        padding: 16px 20px;
        border: 1px solid rgba(73, 48, 107, 0.15);
        border-radius: 12px;
        font-size: 1rem;
        color: #333;
        background: #FAFAFA;
        transition: all 0.3s ease;
    }

    .modern-form-control:focus {
        border-color: var(--primary-purple);
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(73, 48, 107, 0.1);
        outline: none;
    }

    .modern-form-group {
        margin-bottom: 25px;
    }

    .modern-form-group label {
        display: block;
        font-weight: 500;
        margin-bottom: 8px;
        color: var(--primary-purple);
    }

    .modern-map-section {
        padding: 0 0 100px 0;
        background-color: var(--light-bg);
    }

    .modern-map-container {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(73, 48, 107, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.5);
        height: 450px;
    }

/* --- ADDITIONAL STYLES --- */

/* Styles from about-us.php */
.modern-vm-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #F8F6FB 0%, #EFE4ED 100%);
    }

    .modern-vm-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 24px;
        padding: 50px;
        box-shadow: 0 20px 40px rgba(73, 48, 107, 0.05);
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        text-align: center;
        z-index: 1;
    }

    .modern-vm-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .modern-vm-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(73, 48, 107, 0.1);
    }

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

    .modern-vm-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(73, 48, 107, 0.1), rgba(125, 96, 149, 0.1));
        border-radius: 50%;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-purple);
    }

    .modern-vm-card h3 {
        font-size: 2rem;
        color: var(--primary-purple);
        margin-bottom: 20px;
    }

    .modern-vm-card p {
        color: #555;
        font-size: 1.15rem;
        line-height: 1.8;
    }

/* Styles from about-us.php */
.modern-values-section {
        padding: 100px 0;
        background-color: #ffffff;
        position: relative;
    }

    .modern-value-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(73, 48, 107, 0.05);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .modern-value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .modern-value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(73, 48, 107, 0.2);
    }

    .modern-value-card:hover::before {
        opacity: 1;
    }

    .modern-value-icon {
        width: 60px;
        height: 60px;
        background: rgba(125, 96, 149, 0.1);
        color: var(--primary-purple);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all 0.4s ease;
    }

    .modern-value-card:hover .modern-value-icon {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
        transform: scale(1.1) rotate(10deg);
    }

    .modern-value-card h3 {
        font-size: 1.5rem;
        color: var(--primary-purple);
        margin-bottom: 15px;
        transition: color 0.4s ease;
    }

    .modern-value-card:hover h3 {
        color: #ffffff;
    }

    .modern-value-card p {
        color: #555;
        line-height: 1.6;
        transition: color 0.4s ease;
    }

    .modern-value-card:hover p {
        color: rgba(255, 255, 255, 0.9);
    }

/* Styles from about-us.php */
/* Founder Section */
    .modern-founder-section {
        padding: 100px 0;
        background-color: var(--light-bg);
    }

    .modern-founder-card {
        background: linear-gradient(135deg, #8c6ea9 0%, #8467ad 100%);
        color: #ffffff;
        border-radius: 24px;
        padding: 60px;
        box-shadow: 0 30px 60px rgba(73, 48, 107, 0.2);
        position: relative;
        overflow: hidden;
    }

    .modern-founder-card::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 40px;
        font-size: 200px;
        font-family: Georgia, serif;
        color: rgba(255, 255, 255, 0.05);
        line-height: 1;
    }

    .modern-founder-content {
        position: relative;
        z-index: 2;
    }

    .modern-founder-title {
        font-size: 2.2rem;
        font-style: italic;
        color: #EFE4ED;
        margin-bottom: 30px;
        font-weight: 300;
    }

    .modern-founder-text p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.15rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .modern-founder-signature {
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 30px;
    }

    .modern-founder-signature p {
        margin: 0;
    }

    .modern-founder-signature strong {
        font-size: 1.2rem;
        color: #ffffff;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* Certifications */
    .modern-cert-section {
        padding: 100px 0;
        background-color: #ffffff;
        text-align: center;
    }

    .modern-cert-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .modern-cert-pill {
        background: #ffffff;
        color: var(--primary-purple);
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 500;
        box-shadow: 0 10px 20px rgba(73, 48, 107, 0.05);
        border: 1px solid rgba(73, 48, 107, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: default;
        position: relative;
        overflow: hidden;
    }

    .modern-cert-pill::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .modern-cert-pill span {
        position: relative;
        z-index: 2;
        transition: color 0.4s ease;
    }

    .modern-cert-pill:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 30px rgba(73, 48, 107, 0.2);
        border-color: transparent;
    }

    .modern-cert-pill:hover::before {
        opacity: 1;
    }

    .modern-cert-pill:hover span {
        color: #ffffff;
    }

/* Styles from our-services.php */
.section-modern-services {
        background: linear-gradient(135deg, #F8F6FB 0%, #EFE4ED 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .section-modern-services::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(125, 96, 149, 0.05);
        z-index: 0;
    }

    .section-modern-services::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(73, 48, 107, 0.03);
        z-index: 0;
    }

    .modern-service-card {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 1);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 15px 35px rgba(73, 48, 107, 0.06);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        z-index: 1;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .modern-service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 15px;
        background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }

    .modern-service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(73, 48, 107, 0.12);
        background: #ffffff;
    }

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



    .modern-service-card h3 {
        font-size: 1.6rem;
        color: var(--primary-purple);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .modern-service-card p {
        color: #555;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .modern-feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-top: auto;
    }

    .modern-feature-list li {
        position: relative;
        padding-left: 35px;
        margin-bottom: 15px;
        font-size: 1.05rem;
        color: #333;
        font-weight: 500;
        display: flex;
        align-items: center;
    }

    .modern-feature-list li::before {
        content: '';
        position: absolute;
        left: 0;
        width: 20px;
        height: 20px;
        background: rgba(125, 96, 149, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .modern-feature-list li::after {
        content: '✓';
        position: absolute;
        left: 5px;
        font-size: 0.8rem;
        color: var(--primary-purple);
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .modern-service-card:hover .modern-feature-list li::before {
        background: var(--primary-purple);
    }

    .modern-service-card:hover .modern-feature-list li::after {
        color: white;
    }

    .grid-matchmaking {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: auto;
    }

/* Styles from our-services.php */
.modern-industries-section {
        padding: 100px 0;
        background-color: #ffffff;
        text-align: center;
    }

    .modern-industries-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .modern-industry-pill {
        background: #ffffff;
        color: var(--primary-purple);
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 500;
        box-shadow: 0 10px 20px rgba(73, 48, 107, 0.05);
        border: 1px solid rgba(73, 48, 107, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: default;
        position: relative;
        overflow: hidden;
    }

    .modern-industry-pill::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .modern-industry-pill span {
        position: relative;
        z-index: 2;
        transition: color 0.4s ease;
    }

    .modern-industry-pill:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 30px rgba(73, 48, 107, 0.2);
        border-color: transparent;
    }

    .modern-industry-pill:hover::before {
        opacity: 1;
    }

    .modern-industry-pill:hover span {
        color: #ffffff;
    }

/* --- MOBILE RESPONSIVE OVERRIDES --- */
@media (max-width: 768px) {
    /* Fix Navigation Layout */
    .nav-container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .logo-container {
        align-items: flex-start !important;
        max-width: 80%;
    }

    .logo {
        font-size: 1.1rem !important;
    }

    .tagline {
        font-size: 0.7rem !important;
        margin-top: 2px !important;
    }

    /* Global Typography Scaling */
    h1, .modern-hero-content h1, .modern-page-header h1 {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    h2, .modern-overlap-text h2, .modern-about-text h2, .modern-text-col h3, .modern-vm-card h3 {
        font-size: 1.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }

    h3, .modern-service-card h3, .modern-value-card h3, .modern-choose-card h3, .modern-info-content h3, .modern-form-wrapper h3 {
        font-size: 1.4rem !important;
    }

    p, .modern-hero-content p, .modern-text-col p, .modern-about-text p, .modern-vm-card p, .modern-choose-card p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .modern-hero-content, .modern-overlap-text, .modern-about-text, .modern-text-col, .modern-vm-card, .modern-founder-card {
        padding: 30px 20px !important;
    }
    
    .modern-form-wrapper {
        padding: 30px 15px !important;
    }
}
