/* ===================================================
   ROSE EVENTS — Services Page
   =================================================== */
.page-hero { position: relative; height: 50vh; min-height: 400px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,17,17,0.5), rgba(17,17,17,0.7)); }
.page-hero-content { position: relative; z-index: 10; text-align: center; padding: 0 1.5rem; }
.page-hero-content h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--white); font-weight: 700; letter-spacing: -1px; margin-bottom: 1rem; }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 36rem; margin: 0 auto; line-height: 1.7; }
.page-hero-content .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.page-hero-content .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 300ms; }
.page-hero-content .breadcrumb a:hover { color: var(--accent); }
.page-hero-content .breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* Services Grid */
.services-grid-section { padding: 6rem 0; background: var(--secondary); }
.services-full-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .services-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-full-grid { grid-template-columns: repeat(3, 1fr); } }
.service-full-card { position: relative; border-radius: 16px; overflow: hidden; height: 420px; cursor: pointer; }
.service-full-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.service-full-card:hover img { transform: scale(1.08); }
.service-full-card .card-content { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,17,0.85), rgba(17,17,17,0.15)); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.service-full-card .service-number { font-family: var(--font-serif); font-size: 3rem; color: rgba(255,255,255,0.15); font-weight: 700; position: absolute; top: 1.5rem; right: 1.5rem; }
.service-full-card h3 { font-family: var(--font-serif); font-size: 1.75rem; color: var(--white); margin-bottom: 0.5rem; }
.service-full-card p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1.25rem; }
.service-full-card .explore-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); text-decoration: none; transition: color 300ms; }
.service-full-card .explore-link:hover { color: var(--accent-light); }
.service-full-card .explore-link svg { width: 14px; height: 14px; }

/* Service Detail Section */
.service-detail { padding: 6rem 0; background: var(--white); scroll-margin-top: 7rem; }
.service-detail + .service-detail { background: var(--secondary); }
.service-detail-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: flex-start; }
@media (min-width: 1024px) { .service-detail-grid { grid-template-columns: 1fr 1fr; } }
.service-detail:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail-grid > * { direction: ltr; }
@media (max-width: 1023px) { .service-detail:nth-child(even) .service-detail-grid { direction: ltr; } }
.service-detail-img { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); }
.service-detail-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-detail-text .service-tag { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.service-detail-text .tag-number { font-family: var(--font-serif); font-size: 1.25rem; color: var(--accent); font-weight: 600; }
.service-detail-text .tag-line { width: 2rem; height: 1px; background: rgba(155,44,79,0.3); }
.service-detail-text h3 { font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--black); margin-bottom: 0.5rem; line-height: 1.2; }
.service-detail-text .script-accent { font-family: var(--font-script); font-size: 1.75rem; color: var(--accent); margin-bottom: 1.5rem; display: block; }
.service-detail-text p { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 1rem; }
.service-detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
@media (max-width: 639px) { .service-detail-features { grid-template-columns: 1fr; } }
.detail-feature { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: rgba(155,44,79,0.03); border-radius: 12px; transition: all 300ms; }
.detail-feature:hover { background: rgba(155,44,79,0.06); }
.detail-feature .feat-icon { width: 2rem; height: 2rem; border-radius: 50%; background: rgba(155,44,79,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.detail-feature .feat-icon svg { width: 14px; height: 14px; color: var(--accent); }
.detail-feature .feat-label { font-size: 0.8125rem; font-weight: 600; color: var(--text-dark); }
.detail-feature .feat-desc { font-size: 0.75rem; color: var(--gray-500); line-height: 1.5; margin-top: 0.125rem; }
