/* Main Content */

body {
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

#main {
    scroll-margin-top: calc(var(--header-height) + 8px);
    background: var(--cream);
}

/* ===== HERO SECTION ===== */
.concierge-hero {
    background: linear-gradient(135deg, #1a0f08 0%, var(--espresso) 50%, #4A3625 100%);
    padding: 10rem 4rem 8rem;
    text-align: center;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.concierge-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08), transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.concierge-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--cream));
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(212, 165, 116, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: slideDown 0.8s ease-out 0.2s both;
    color: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-icon {
    width: 20px;
    height: 20px;
    animation: pulse 2s ease-in-out infinite;
    color: var(--accent-gold);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--accent-gold) 50%, var(--light-beige) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 0.8s ease-out 0.4s both;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--sand);
    max-width: 800px;
    margin: 0 auto 3.5rem;
    opacity: 0.95;
    line-height: 1.5;
    animation: fadeIn 0.8s ease-out 0.6s both;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    animation: fadeIn 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ===== CONCIERGE CONTENT ===== */
.concierge-content {
    max-width: 1200px;
    margin: -5rem auto 0;
    padding: 0 4rem 5rem;
    position: relative;
    z-index: 10;
}

/* Focus Card */
.focus-card {
    background: var(--pure-white);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-2xl);
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    animation: cardReveal 0.8s ease-out 0.8s both;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-beige) 0%, var(--accent-gold) 50%, var(--warm-beige-dark) 100%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.focus-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--espresso);
    margin-bottom: 1.25rem;
    position: relative;
}

.focus-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.focus-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.25);
    border-color: var(--accent-gold);
}

.service-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--warm-beige-dark);
}

.service-name {
    font-weight: 700;
    color: var(--espresso);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-price {
    color: var(--warm-beige-dark);
    font-weight: 600;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--warm-beige-darker) 0%, var(--accent-gold) 100%);
    color: var(--espresso);
    padding: 1.25rem 3.5rem;
    border-radius: 60px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.cta-button:hover::before {
    transform: translate(-50%, -50%) scale(3);
}

/* Network Section */
.network-section {
    margin-bottom: 5rem;
    animation: fadeInSection 0.8s ease-out;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--espresso);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.network-card {
    background: var(--pure-white);
    border: 2px solid var(--gray-100);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.network-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-beige), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.network-card:hover {
    border-color: var(--warm-beige);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.15);
}

.network-card:hover::before {
    transform: scaleX(1);
}

.network-card:hover .network-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-gold);
}

.network-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.25rem;
    color: var(--warm-beige-dark);
    transition: all 0.4s ease;
}

.network-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--warm-beige-dark);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.network-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--espresso);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.network-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--espresso) 0%, #4A3625 100%);
    color: var(--pure-white);
    padding: 5rem 4rem;
    border-radius: 24px;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 100%);
    color: var(--espresso);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--sand) 0%, var(--light-beige) 100%);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--espresso);
    margin-bottom: 1.25rem;
}

.contact-info {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.contact-phone {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--warm-beige-dark);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    position: relative;
}

.contact-phone::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-beige-dark), var(--accent-gold));
    transition: width 0.4s ease;
}

.contact-phone:hover {
    color: var(--warm-beige-darker);
    transform: scale(1.05);
}

.contact-phone:hover::after {
    width: 100%;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .concierge-hero {
        padding: 7rem 2rem 6rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .concierge-content {
        padding: 0 2rem 3rem;
        margin-top: -3rem;
    }
    
    .focus-card {
        padding: 2.5rem 2rem;
    }
    
    .network-grid {
        grid-template-columns: 1fr;
    }
    
    .process-section {
        padding: 3rem 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-section {
        padding: 3rem 2rem;
    }
    
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}
        
