/* ===================================
   ABOUT RAM PAGE - STYLES
   =================================== */

/* CSS Variables */
:root {
    --gold: #D4AF37;
    --maroon: #800020;
    --cream: #FFF8E7;
    --dark-brown: #3E2723;
    --light-cream: #FFF9F0;
    --text-dark: #2C2C2C;
    --text-light: #666;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
    padding: 80px 20px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-circle-frame {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 8px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    position: relative;
    background: linear-gradient(135deg, var(--gold) 0%, #C5A028 100%);
}

.gold-circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   MY JOURNEY SECTION
   =================================== */
.journey-section {
    padding: 100px 20px;
    background-color: #fff;
}

.section-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--maroon);
    text-align: center;
    margin-bottom: 50px;
}

.journey-content {
    max-width: 900px;
    margin: 0 auto;
}

.journey-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.9;
}

.journey-content strong {
    color: var(--gold);
    font-weight: 600;
}

/* ===================================
   THREE ROLES SECTION
   =================================== */
.three-roles-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light-cream) 0%, #fff 100%);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    font-style: italic;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.role-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--gold);
}

.role-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.role-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold) 0%, #C5A028 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.role-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 10px;
}

.role-subtitle {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   LOCAL TRUST SECTION
   =================================== */
.local-trust-section {
    padding: 100px 20px;
    background-color: #fff;
}

.local-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.local-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.9;
}

.local-text strong {
    color: var(--gold);
    font-weight: 600;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
    border: 3px solid var(--gold);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--maroon);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
}

/* ===================================
   PROMISE SECTION
   =================================== */
.promise-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream) 100%);
}

.promise-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 4px solid var(--gold);
    border-radius: 12px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.promise-text {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.promise-text strong {
    color: var(--maroon);
    font-weight: 700;
}

.promise-signature {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 700;
}

/* ===================================
   CALL TO ACTION SECTION
   =================================== */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--maroon) 0%, #5C0015 100%);
    text-align: center;
}

.cta-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        padding-right: 0;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-subheadline {
        font-size: 1.3rem;
    }

    .gold-circle-frame {
        width: 350px;
        height: 350px;
    }

    .roles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .local-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .local-text {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .gold-circle-frame {
        width: 280px;
        height: 280px;
        border-width: 6px;
    }

    .section-headline {
        font-size: 2rem;
    }

    .journey-content p {
        font-size: 1rem;
    }

    .role-card {
        padding: 30px 20px;
    }

    .role-title {
        font-size: 1.5rem;
    }

    .local-text p {
        font-size: 1rem;
    }

    .promise-box {
        padding: 40px 30px;
    }

    .promise-text {
        font-size: 1.2rem;
    }

    .promise-signature {
        font-size: 1.5rem;
    }

    .cta-headline {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .whatsapp-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}