/* ============================================================
   REY'S BPO SERVICES - COMPLETE STYLESHEET
   ============================================================ */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* ============================================================
   THEME VARIABLES - LIGHT MODE (DEFAULT)
   ============================================================ */
:root {
    --primary-blue: #0A2463;
    --secondary-blue: #3E92CC;
    --accent-red: #FB3640;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --card-bg: #FFFFFF;
    --border-color: #E9ECEF;
    --footer-bg: #0A2463;
    --input-bg: #FFFFFF;
}

/* ============================================================
   THEME VARIABLES - DARK MODE
   ============================================================ */
[data-theme="dark"] {
    --primary-blue: #1E3A8A;
    --secondary-blue: #60A5FA;
    --accent-red: #F87171;
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --card-bg: #1E293B;
    --border-color: #334155;
    --footer-bg: #0F172A;
    --input-bg: #1E293B;
}

/* ============================================================
   BASE STYLES
   ============================================================ */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding-top: 72px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: var(--primary-blue) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.9rem 0;
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 0.9rem !important;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.15) !important;
}

#themeToggle {
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    transition: all 0.3s ease;
    border-radius: 50% !important;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#themeToggle:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: #fff;
    padding: 90px 0 70px;
}

.hero-section h1 {
    color: #fff;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-padding {
    padding: 70px 0;
}

.bg-light-custom {
    background-color: var(--bg-secondary) !important;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary);
}

.card .text-muted {
    color: var(--text-secondary) !important;
}

.service-card {
    border-radius: 16px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.team-card {
    border-radius: 16px !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-bpo-primary {
    background: var(--accent-red) !important;
    border-color: var(--accent-red) !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-bpo-primary:hover {
    background: #d42e37 !important;
    border-color: #d42e37 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 54, 64, 0.35);
}

/* ============================================================
   FORM CONTROLS
   ============================================================ */
.form-control,
.form-control-custom {
    background-color: var(--input-bg) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 8px;
}

.form-control:focus,
.form-control-custom:focus {
    background-color: var(--input-bg) !important;
    border-color: var(--secondary-blue) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(62, 146, 204, 0.25);
}

.form-control::placeholder,
.form-control-custom::placeholder {
    color: var(--text-secondary) !important;
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
}

.form-check-label {
    color: var(--text-primary);
}

.input-group-text {
    background-color: var(--input-bg) !important;
    border-color: var(--border-color) !important;
    color: var(--text-secondary) !important;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue), #1a3a6b);
    color: #fff;
    padding: 60px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: linear-gradient(135deg, var(--primary-blue), #0d1b3e) !important;
    color: #e2e8f0 !important;
    padding: 60px 0 30px;
}

footer h5, footer h6 {
    color: #fff !important;
    font-weight: 600;
}

footer p {
    color: #cbd5e1 !important;
}

footer a {
    color: #94a3b8 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--secondary-blue) !important;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* ============================================================
   PRICE BADGE
   ============================================================ */
.price-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ============================================================
   CART
   ============================================================ */
.cart-item-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cart-summary {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 90px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cart-summary h5 {
    color: var(--text-primary);
}

/* ============================================================
   BIOGRAPHY PAGE
   ============================================================ */
.bio-card {
    border-radius: 16px !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.bio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.earnings-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 100px 0 80px;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-title {
    color: var(--text-primary);
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-secondary);
}

/* ============================================================
   NOTIFICATION
   ============================================================ */
.bpo-notification {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    min-width: 260px;
    border-radius: 10px;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), #1a4080);
    color: #fff;
    padding: 60px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 50px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 50px 0;
    }
}
