/* ═══════════════════════════════════════════════════════════════
   Robin Memories — Custom Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
    --rm-navy:       #1a2744;
    --rm-navy-light: #243456;
    --rm-teal:       #2a9d8f;
    --rm-teal-dark:  #21867a;
    --rm-amber:      #e9a319;
    --rm-amber-light:#f5c34a;
    --rm-cream:      #fdf8ef;
    --rm-warm-gray:  #f5f0e8;
    --rm-text:       #3a3a3a;
    --rm-text-light: #6b6b6b;
    --rm-white:      #ffffff;
    --rm-shadow:     0 4px 24px rgba(26, 39, 68, 0.10);
    --rm-shadow-lg:  0 8px 40px rgba(26, 39, 68, 0.14);
    --rm-radius:     12px;
    --rm-radius-lg:  20px;
}

/* ── Global ───────────────────────────────────────────────────── */
body {
    font-family: 'Inter', sans-serif;
    color: var(--rm-text);
    background: #e8f5e9;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--rm-navy);
    font-weight: 700;
}

a {
    color: var(--rm-teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--rm-teal-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Navbar ───────────────────────────────────────────────────── */
.rm-navbar {
    background: var(--rm-navy);
    padding: 0;
    transition: box-shadow 0.3s ease;
}

.rm-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.rm-navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--rm-white) !important;
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rm-navbar .navbar-brand i {
    color: var(--rm-amber);
    font-size: 1.3rem;
}

.rm-navbar .nav-link {
    color: rgba(255,255,255,0.82) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 22px 16px !important;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    position: relative;
}

.rm-navbar .nav-link:hover,
.rm-navbar .nav-link.active {
    color: var(--rm-amber) !important;
}

.rm-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--rm-amber);
    border-radius: 3px 3px 0 0;
}

.rm-navbar .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
}

.rm-navbar .navbar-toggler-icon {
    filter: invert(1);
}

.rm-nav-cta {
    background: var(--rm-amber) !important;
    color: var(--rm-navy) !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 10px 22px !important;
    margin-left: 10px;
    transition: background 0.2s, transform 0.2s !important;
}

.rm-nav-cta:hover {
    background: var(--rm-amber-light) !important;
    color: var(--rm-navy) !important;
    transform: translateY(-1px);
}

/* ── Hero Section ─────────────────────────────────────────────── */
.rm-hero {
    background: linear-gradient(135deg, var(--rm-navy) 0%, var(--rm-navy-light) 60%, #2e4a6e 100%);
    color: var(--rm-white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.rm-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233,163,25,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.rm-hero h1 {
    color: var(--rm-white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rm-hero h1 span {
    color: var(--rm-amber);
}

.rm-hero p.lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 520px;
}

.rm-hero-img {
    position: relative;
    z-index: 1;
}

.rm-hero-img .hero-placeholder {
    background: rgba(255,255,255,0.08);
    border-radius: var(--rm-radius-lg);
    border: 2px dashed rgba(255,255,255,0.15);
    padding: 60px 40px;
    text-align: center;
    color: rgba(255,255,255,0.4);
}

.rm-hero-img .hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
    color: var(--rm-amber);
    opacity: 0.6;
}

/* ── Page Hero (inner pages) ──────────────────────────────────── */
.rm-page-hero {
    background: linear-gradient(135deg, var(--rm-navy) 0%, var(--rm-navy-light) 100%);
    color: var(--rm-white);
    padding: 70px 0 50px;
    text-align: center;
}

.rm-page-hero h1 {
    color: var(--rm-white);
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.rm-page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-rm-primary {
    background: var(--rm-teal);
    color: var(--rm-white);
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-rm-primary:hover {
    background: var(--rm-teal-dark);
    color: var(--rm-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42,157,143,0.3);
}

.btn-rm-outline {
    background: transparent;
    color: var(--rm-white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-rm-outline:hover {
    border-color: var(--rm-amber);
    color: var(--rm-amber);
    transform: translateY(-2px);
}

.btn-rm-amber {
    background: var(--rm-amber);
    color: var(--rm-navy);
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-rm-amber:hover {
    background: var(--rm-amber-light);
    color: var(--rm-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233,163,25,0.3);
}

/* ── Section Styling ──────────────────────────────────────────── */
.rm-section {
    padding: 80px 0;
}

.rm-section-alt {
    padding: 80px 0;
    background: var(--rm-warm-gray);
}

.rm-section-cream {
    padding: 80px 0;
    background: var(--rm-cream);
}

.rm-section-title {
    text-align: center;
    margin-bottom: 52px;
}

.rm-section-title h2 {
    font-size: 2.3rem;
    margin-bottom: 14px;
}

.rm-section-title p {
    color: var(--rm-text-light);
    font-size: 1.08rem;
    max-width: 600px;
    margin: 0 auto;
}

.rm-section-title .title-accent {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: var(--rm-amber);
    border-radius: 4px;
    margin-bottom: 16px;
}

/* ── Service Cards ────────────────────────────────────────────── */
.rm-service-card {
    background: var(--rm-white);
    border-radius: var(--rm-radius-lg);
    padding: 38px 30px;
    text-align: center;
    box-shadow: var(--rm-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.rm-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rm-shadow-lg);
}

.rm-service-card .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    color: var(--rm-white);
}

.rm-service-card .service-icon.icon-photos   { background: linear-gradient(135deg, #2a9d8f, #21867a); }
.rm-service-card .service-icon.icon-slides   { background: linear-gradient(135deg, #e9a319, #d4921a); }
.rm-service-card .service-icon.icon-negatives { background: linear-gradient(135deg, #6c5ce7, #5a4bd1); }
.rm-service-card .service-icon.icon-video    { background: linear-gradient(135deg, #e17055, #d35d47); }
.rm-service-card .service-icon.icon-film     { background: linear-gradient(135deg, #00b894, #009a7d); }
.rm-service-card .service-icon.icon-organize { background: linear-gradient(135deg, #1a2744, #2e4a6e); }
.rm-service-card .service-icon.icon-restore  { background: linear-gradient(135deg, #fd79a8, #e84393); }
.rm-service-card .service-icon.icon-albums   { background: linear-gradient(135deg, #0984e3, #0770c4); }

.rm-service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.rm-service-card p {
    color: var(--rm-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ── Pricing Cards ────────────────────────────────────────────── */
.rm-pricing-card {
    background: var(--rm-white);
    border-radius: var(--rm-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--rm-shadow);
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.rm-pricing-card:hover {
    border-color: var(--rm-teal);
    transform: translateY(-4px);
    box-shadow: var(--rm-shadow-lg);
}

.rm-pricing-card.featured {
    border-color: var(--rm-amber);
    transform: scale(1.03);
}

.rm-pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.rm-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rm-amber);
    color: var(--rm-navy);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rm-pricing-card .pricing-icon {
    font-size: 2.2rem;
    color: var(--rm-teal);
    margin-bottom: 14px;
}

.rm-pricing-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.rm-pricing-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--rm-navy);
    margin-bottom: 4px;
}

.rm-pricing-card .price-unit {
    color: var(--rm-text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.rm-pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.rm-pricing-card .pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--rm-text-light);
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rm-pricing-card .pricing-features li i {
    color: var(--rm-teal);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ── How It Works ─────────────────────────────────────────────── */
.rm-step {
    text-align: center;
    padding: 20px;
}

.rm-step .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rm-amber);
    color: var(--rm-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 18px;
}

.rm-step h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.rm-step p {
    color: var(--rm-text-light);
    font-size: 0.95rem;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.rm-testimonial {
    background: var(--rm-white);
    border-radius: var(--rm-radius-lg);
    padding: 32px;
    box-shadow: var(--rm-shadow);
    height: 100%;
    position: relative;
    border-left: 4px solid var(--rm-amber);
}

.rm-testimonial .quote-icon {
    font-size: 2rem;
    color: var(--rm-amber);
    opacity: 0.4;
    margin-bottom: 12px;
}

.rm-testimonial p {
    font-style: italic;
    color: var(--rm-text);
    font-size: 0.97rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.rm-testimonial .author {
    font-weight: 600;
    color: var(--rm-navy);
    font-size: 0.93rem;
}

.rm-testimonial .author span {
    display: block;
    font-weight: 400;
    color: var(--rm-text-light);
    font-size: 0.85rem;
}

/* ── Stats Bar ────────────────────────────────────────────────── */
.rm-stats {
    background: var(--rm-navy);
    color: var(--rm-white);
    padding: 50px 0;
}

.rm-stat {
    text-align: center;
    padding: 10px;
}

.rm-stat .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--rm-amber);
    display: block;
}

.rm-stat .stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.93rem;
    margin-top: 4px;
}

/* ── FAQ Accordion ────────────────────────────────────────────── */
.rm-faq-accordion .accordion-item {
    border: none;
    border-radius: var(--rm-radius) !important;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.rm-faq-accordion .accordion-button {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--rm-navy);
    padding: 18px 24px;
    background: var(--rm-white);
}

.rm-faq-accordion .accordion-button:not(.collapsed) {
    background: var(--rm-cream);
    color: var(--rm-navy);
    box-shadow: none;
}

.rm-faq-accordion .accordion-button::after {
    filter: none;
    color: var(--rm-teal);
}

.rm-faq-accordion .accordion-body {
    padding: 16px 24px 24px;
    color: var(--rm-text-light);
    font-size: 0.96rem;
    line-height: 1.7;
}

/* ── Contact Form ─────────────────────────────────────────────── */
.rm-contact-form .form-label {
    font-weight: 600;
    color: var(--rm-navy);
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.rm-contact-form .form-control,
.rm-contact-form .form-select {
    border: 2px solid #e0ddd6;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.rm-contact-form .form-control:focus,
.rm-contact-form .form-select:focus {
    border-color: var(--rm-teal);
    box-shadow: 0 0 0 3px rgba(42,157,143,0.12);
}

/* ── About Page ───────────────────────────────────────────────── */
.rm-about-block {
    background: var(--rm-white);
    border-radius: var(--rm-radius-lg);
    padding: 40px;
    box-shadow: var(--rm-shadow);
    height: 100%;
}

.rm-about-block h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.rm-about-block p {
    color: var(--rm-text-light);
    font-size: 0.96rem;
}

.rm-value-item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.rm-value-item:last-child {
    border-bottom: none;
}

.rm-value-item .value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--rm-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--rm-teal);
    flex-shrink: 0;
}

.rm-value-item h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--rm-navy);
}

.rm-value-item p {
    margin-bottom: 0;
    color: var(--rm-text-light);
    font-size: 0.92rem;
}

/* ── Contact Info Cards ───────────────────────────────────────── */
.rm-contact-card {
    background: var(--rm-white);
    border-radius: var(--rm-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--rm-shadow);
    height: 100%;
    transition: transform 0.3s;
}

.rm-contact-card:hover {
    transform: translateY(-4px);
}

.rm-contact-card .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--rm-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--rm-teal);
}

.rm-contact-card h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}

.rm-contact-card p {
    color: var(--rm-text-light);
    font-size: 0.93rem;
    margin-bottom: 0;
}

/* ── Footer ───────────────────────────────────────────────────── */
.rm-footer {
    background: var(--rm-navy);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.rm-footer h5 {
    color: var(--rm-white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.rm-footer a {
    color: rgba(255,255,255,0.6);
    font-size: 0.93rem;
    transition: color 0.2s;
}

.rm-footer a:hover {
    color: var(--rm-amber);
}

.rm-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-footer .footer-links li {
    margin-bottom: 10px;
}

.rm-footer .footer-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--rm-white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.rm-footer .footer-brand i {
    color: var(--rm-amber);
}

.rm-footer .footer-desc {
    font-size: 0.93rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.rm-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    margin-right: 8px;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}

.rm-footer .social-links a:hover {
    background: var(--rm-amber);
    color: var(--rm-navy);
}

.rm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.85rem;
    text-align: center;
}

/* ── CTA Banner ───────────────────────────────────────────────── */
.rm-cta {
    background: linear-gradient(135deg, var(--rm-teal) 0%, var(--rm-teal-dark) 100%);
    color: var(--rm-white);
    padding: 60px 0;
    text-align: center;
}

.rm-cta h2 {
    color: var(--rm-white);
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.rm-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Detailed Service Section ─────────────────────────────────── */
.rm-service-detail {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px 0;
}

.rm-service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.rm-service-detail .detail-icon-wrap {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--rm-white);
    flex-shrink: 0;
}

.rm-service-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.rm-service-detail p {
    color: var(--rm-text-light);
    font-size: 0.97rem;
    margin-bottom: 14px;
}

.rm-service-detail .detail-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.rm-service-detail .detail-features li {
    font-size: 0.92rem;
    color: var(--rm-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rm-service-detail .detail-features li i {
    color: var(--rm-teal);
    font-size: 0.8rem;
}

/* ── Pricing Table Section ────────────────────────────────────── */
.pricing-table-card {
    background: var(--rm-white);
    border-radius: var(--rm-radius-lg);
    overflow: hidden;
    box-shadow: var(--rm-shadow);
    margin-bottom: 30px;
}

.pricing-table-card .table-header {
    background: var(--rm-navy);
    color: var(--rm-white);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pricing-table-card .table-header i {
    font-size: 1.4rem;
    color: var(--rm-amber);
}

.pricing-table-card .table-header h4 {
    color: var(--rm-white);
    margin: 0;
    font-size: 1.15rem;
}

.pricing-table-card table {
    width: 100%;
    margin: 0;
}

.pricing-table-card table th {
    background: var(--rm-cream);
    font-weight: 600;
    color: var(--rm-navy);
    padding: 12px 28px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table-card table td {
    padding: 14px 28px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    color: var(--rm-text);
}

.pricing-table-card table tr:last-child td {
    border-bottom: none;
}

.pricing-table-card .price-cell {
    font-weight: 700;
    color: var(--rm-teal);
}

/* ── Scroll-to-top ────────────────────────────────────────────── */
.rm-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rm-teal);
    color: var(--rm-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(42,157,143,0.35);
}

.rm-scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.rm-scroll-top:hover {
    background: var(--rm-teal-dark);
    transform: translateY(-3px);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .rm-hero { padding: 70px 0 50px; text-align: center; }
    .rm-hero p.lead { margin-left: auto; margin-right: auto; }
    .rm-hero-img { margin-top: 40px; }
    .rm-service-detail { flex-direction: column !important; gap: 24px; text-align: center; }
    .rm-service-detail .detail-features { justify-content: center; }
    .rm-navbar .nav-link.active::after { display: none; }
}

@media (max-width: 767.98px) {
    .rm-hero h1 { font-size: 2.2rem; }
    .rm-page-hero h1 { font-size: 2rem; }
    .rm-section, .rm-section-alt, .rm-section-cream { padding: 50px 0; }
    .rm-section-title h2 { font-size: 1.8rem; }
    .rm-pricing-card.featured { transform: none; }
    .rm-pricing-card.featured:hover { transform: translateY(-4px); }
    .rm-service-detail .detail-features { grid-template-columns: 1fr; }
}
