/* ============================================
   INVESTINGMEXICO.COM - MAIN STYLES
   Brand identity: Valuapro.net + Sotheby's International Realty
   Deep navy + red/blue accents + luxury serif typography
   ============================================ */

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

/* Root Variables - Valuapro + Sotheby's palette */
:root {
    /* Core brand colors */
    --primary-color: #0d1b2e;      /* Deep navy (Valuapro hero / Sotheby's) */
    --primary-deep: #002349;       /* Sotheby's classic navy */
    --primary-light: #16283f;      /* Slightly lighter navy for cards on dark */
    --accent-red: #c9a96a;      /* replaced with gold */         /* Valuapro red - primary CTA */
    --accent-red-hover: #b3934f;  /* darker gold hover */   /* Darker red hover */
    --accent-blue: #1e5fa8;        /* Valuapro blue - secondary CTA */
    --accent-blue-hover: #174b86;  /* Darker blue hover */
    --gold: #c9a96a;               /* Luxury gold accent (Sotheby's touch) */

    /* Neutrals */
    --text-dark: #1a2332;
    --text-light: #5a6577;
    --background-light: #f7f8fa;
    --border-color: #e3e7ed;
    --success-color: #27ae60;
    --white: #ffffff;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Poppins', 'Segoe UI', Tahoma, sans-serif;

    /* Legacy variable aliases (keep compatibility) */
    --secondary-color: var(--gold);
    --accent-color: var(--accent-blue);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
}

h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background-color: var(--primary-deep);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 35, 73, 0.35);
    border-bottom: 2px solid var(--accent-red);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    letter-spacing: 0.5px;
}

.logo h1 .logo-accent,
.logo h1 span {
    color: var(--accent-red);
}

.logo .tagline {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.language-selector {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.25);
}

.language-selector a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
}

/* ============================================
   BUTTONS (Valuapro pill style)
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.85rem 1.9rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary-deep);
    box-shadow: 0 4px 15px rgba(201, 169, 106, 0.35);
}

.btn-primary:hover {
    background-color: #b3934f;
    color: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 106, 0.45);
}

.btn-secondary {
    background-color: var(--accent-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 95, 168, 0.35);
}

.btn-secondary:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 95, 168, 0.45);
}

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

.btn-outline:hover {
    background-color: var(--accent-blue);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2.8rem;
    font-size: 1.05rem;
}

/* ============================================
   HERO SECTION (Valuapro dark navy style)
   ============================================ */

.hero {
    background:
        linear-gradient(rgba(13, 27, 46, 0.82), rgba(0, 35, 73, 0.9)),
        url('https://images.unsplash.com/photo-1512813195386-6cf811ad3542?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: var(--white);
    padding: 7rem 2rem;
    text-align: center;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-badges {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.badge-pill {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.badge-blue {
    background-color: var(--accent-blue);
    color: var(--white);
}

.badge-red {
    background-color: var(--gold);
    color: var(--primary-deep);
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
    font-weight: 300;
}

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

/* ============================================
   SECTION EYEBROW (Valuapro style)
   ============================================ */

.eyebrow {
    display: block;
    text-align: center;
    color: var(--accent-red);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background:
        linear-gradient(rgba(13, 27, 46, 0.88), rgba(0, 35, 73, 0.92)),
        url('https://images.unsplash.com/photo-1518105779142-d975f22f1b0a?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: var(--white);
    padding: 4.5rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-red);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */

.value-proposition {
    padding: 5rem 2rem;
    background-color: var(--white);
}

/* Founder photo (real image) */
.founder-photo {
    width: 100%;
    max-width: 380px;
    border-radius: 10px;
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 14px 36px rgba(0, 35, 73, 0.22);
    object-fit: cover;
    display: inline-block;
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--primary-deep);
}

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

.value-card {
    background-color: var(--background-light);
    padding: 2.2rem;
    border-radius: 10px;
    border-top: 3px solid var(--accent-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 35, 73, 0.12);
}

.value-card h3 {
    color: var(--primary-deep);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   STATS SECTION (deep navy)
   ============================================ */

.stats {
    background-color: var(--primary-deep);
    color: var(--white);
    padding: 4rem 2rem;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-main {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.services-main h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--primary-deep);
}

.intro-text {
    text-align: center;
    font-size: 1.08rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.pricing-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 6px 25px rgba(0, 35, 73, 0.08);
}

.pricing-card.featured {
    border-top: 4px solid var(--accent-red);
    box-shadow: 0 12px 40px rgba(0, 35, 73, 0.14);
}

.pricing-card h3 {
    color: var(--primary-deep);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.price {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-deep);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price span {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.price-note {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.closing-credit-box {
    background-color: var(--background-light);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
}

.closing-credit-box h4 {
    color: var(--primary-deep);
    margin-bottom: 0.5rem;
}

.closing-credit-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.service-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

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

/* ============================================
   ADD-ON SERVICES
   ============================================ */

.add-on-services {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.add-on-services h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--primary-deep);
}

.add-on-services > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.05rem;
    font-weight: 300;
}

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

.service-card {
    background-color: var(--background-light);
    padding: 2.2rem;
    border-radius: 10px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 35, 73, 0.12);
    border-bottom-color: var(--accent-red);
}

.service-card h3 {
    color: var(--primary-deep);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.price-addon {
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ============================================
   PRICING MODEL
   ============================================ */

.pricing-model {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.pricing-model h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--primary-deep);
}

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

.model-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 35, 73, 0.07);
    border-top: 3px solid var(--accent-blue);
}

.model-card h3 {
    color: var(--primary-deep);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.model-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--primary-deep);
}

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

.step {
    background-color: var(--white);
    padding: 2.2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 35, 73, 0.07);
}

.step-number {
    display: inline-block;
    width: 52px;
    height: 52px;
    background-color: var(--primary-deep);
    color: var(--white);
    border-radius: 50%;
    line-height: 52px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-family: var(--font-serif);
}

.step h3 {
    color: var(--primary-deep);
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION (deep navy like Valuapro)
   ============================================ */

.cta-section {
    background:
        linear-gradient(rgba(0, 35, 73, 0.93), rgba(13, 27, 46, 0.95)),
        url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.92;
    font-weight: 300;
}

/* ============================================
   FOUNDER PROFILE
   ============================================ */

.founder-profile {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.profile-image {
    text-align: center;
}

.placeholder-image {
    background-color: var(--background-light);
    width: 300px;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    margin: 0 auto;
    color: var(--text-light);
}

.profile-content h2 {
    color: var(--primary-deep);
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
}

.profile-content .title {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.credentials h3 {
    color: var(--primary-deep);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.credentials-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.credentials-list li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

.credentials-list li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================
   MISSION
   ============================================ */

.mission {
    padding: 4rem 2rem;
    background-color: var(--primary-deep);
    color: var(--white);
    text-align: center;
    border-top: 3px solid var(--gold);
}

.mission h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--gold);
}

.mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.92;
}

/* ============================================
   WHY CHOOSE / BENEFITS
   ============================================ */

.why-choose {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--primary-deep);
}

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

.benefit-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 35, 73, 0.07);
    border-left: 3px solid var(--accent-blue);
}

.benefit-card h3 {
    color: var(--primary-deep);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */

.certifications {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.certifications h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--primary-deep);
}

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

.cert-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--background-light);
    border-radius: 10px;
    border-top: 3px solid var(--gold);
}

.cert-item h4 {
    color: var(--primary-deep);
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--primary-deep);
}

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

.testimonial {
    background-color: var(--white);
    padding: 2.2rem;
    border-radius: 10px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 35, 73, 0.07);
}

.testimonial .quote {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-family: var(--font-serif);
}

.testimonial .author {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--primary-deep);
    margin-bottom: 2rem;
    font-size: 1.9rem;
}

/* Form Styles */
.contact-form {
    background-color: var(--background-light);
    padding: 2.2rem;
    border-radius: 12px;
    border-top: 4px solid var(--accent-red);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(30, 95, 168, 0.12);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
}

/* Contact Info Styles */
.contact-info-block {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-block:last-child {
    border-bottom: none;
}

.contact-info-block h3 {
    color: var(--primary-deep);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-info-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-info-block a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-block a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.expect-list {
    list-style: none;
    padding-left: 0;
}

.expect-list li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

.expect-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.faq h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--primary-deep);
}

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

.faq-item {
    background-color: var(--white);
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 35, 73, 0.07);
    border-left: 3px solid var(--accent-red);
}

.faq-item h4 {
    color: var(--primary-deep);
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   FOOTER (Sotheby's deep navy)
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3.5rem 2rem 1rem;
    border-top: 3px solid var(--accent-red);
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.footer-section p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 300;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.team h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--primary-deep);
}

.team .intro-text {
    margin-bottom: 3rem;
}

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

.team-card {
    background-color: var(--background-light);
    padding: 2.2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 35, 73, 0.12);
}

.team-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--primary-deep);
    color: var(--gold);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.team-card h3 {
    color: var(--primary-deep);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }
