/* ============================================================
   THE CURATED CIRCLE - Custom CSS
   Colors: Navy #0B1B3D | Gold #D4AF37 | Surface #1A2B4C
   ============================================================ */

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

:root {
    --navy: #0B1B3D;
    --navy-light: #1A2B4C;
    --navy-dark: #060F22;
    --gold: #D4AF37;
    --gold-light: #F3D573;
    --gold-dark: #A88B1E;
    --text: #FFFFFF;
    --text-secondary: #94A3B8;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--navy);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
}

/* ---- HEADER ---- */
#site-header {
    background: rgba(11, 27, 61, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

#site-header.scrolled {
    background: rgba(6, 15, 34, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* ---- HERO SLIDER ---- */
.hero-slider {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,15,34,0.88) 0%, rgba(11,27,61,0.75) 50%, rgba(6,15,34,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 48px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 48px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Hero arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ---- SECTION TITLE ---- */
.section-overline {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-top: 12px;
}

/* Gold underline accent */
.gold-underline {
    position: relative;
    display: inline-block;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* ---- CARDS ---- */
.showcase-card {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(212,175,55,0.3);
}

.showcase-card .card-img-wrap {
    overflow: hidden;
    height: 240px;
    position: relative;
}

.showcase-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.showcase-card .card-body {
    padding: 24px;
}

.card-number {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
}

.card-designation {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.card-excerpt {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- BUTTONS ---- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ---- PAGE BANNER ---- */
.page-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--gold-light); }

/* ---- WHAT WE DO SECTION ---- */
.what-we-do-card {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.what-we-do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.what-we-do-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    border-color: rgba(212,175,55,0.2);
}

.what-we-do-card:hover::before {
    transform: scaleX(1);
}

.what-we-do-card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s ease;
}

.what-we-do-card:hover .icon-wrap {
    background: rgba(212,175,55,0.2);
}

.what-we-do-card .icon-wrap i {
    color: var(--gold);
    font-size: 1.4rem;
}

.what-we-do-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.what-we-do-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- FEATURED BANNER ---- */
.featured-banner {
    background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 16px;
    overflow: hidden;
}

.featured-banner .banner-accent {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: 32px;
    color: var(--navy);
}

.featured-banner .banner-accent h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.featured-banner .banner-center {
    padding: 32px;
}

.featured-banner .banner-right {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.08);
}

/* ---- INTERVIEW DETAIL ---- */
.interview-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.interview-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.interview-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, var(--navy-dark), transparent);
}

.interview-profile {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 0 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 40px;
}

.interview-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

.interview-profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.interview-profile-title {
    font-size: 1rem;
    color: var(--gold);
    margin-top: 6px;
    font-weight: 500;
}

/* Q&A Styling */
.qa-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.qa-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
    line-height: 1.4;
}

.qa-answer {
    color: rgba(255,255,255,0.8);
    line-height: 1.85;
    font-size: 0.95rem;
    padding-left: 20px;
}

.qa-answer p { margin-bottom: 14px; }
.qa-answer ol, .qa-answer ul { 
    padding-left: 24px; 
    margin-bottom: 14px;
    color: rgba(255,255,255,0.8);
}
.qa-answer li { margin-bottom: 8px; }
.qa-answer strong { color: #fff; font-weight: 600; }
.qa-answer em { color: var(--gold-light); font-style: italic; }

/* Blockquote in interview */
.interview-quote {
    background: var(--navy-light);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 32px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
}

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.char-counter {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-align: right;
    margin-top: 4px;
}

/* ---- ABOUT PAGE ---- */
.about-content {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.4rem;
    margin: 32px 0 12px;
}

.about-content p { margin-bottom: 18px; }

.quote-box {
    background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: rgba(212,175,55,0.08);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.quote-text span {
    color: var(--gold);
}

/* ---- PRIVACY POLICY ---- */
.privacy-content {
    color: rgba(255,255,255,0.8);
    line-height: 1.85;
}

.privacy-content h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.3rem;
    margin: 36px 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.privacy-content p { margin-bottom: 16px; }
.privacy-content a { color: var(--gold); }

/* ---- ANIMATIONS ---- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ---- ALERTS ---- */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

/* ---- PAGINATION ---- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    background: var(--navy-light);
}

.page-btn:hover, .page-btn.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ---- LOADING ---- */
.btn-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hero-content {
        padding: 60px 24px;
    }
    .hero-dots { left: 24px; }
    .contact-form-wrap { padding: 24px; }
    .interview-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
