/* Premium Services Page Styles */

/* Base / Utilities */
:root {
    --gold-glow: rgba(197, 160, 89, 0.3);
    --gold-bright: #c5a059;
}

.py-6 {
    padding-top: clamp(3rem, 8vw, 8rem);
    padding-bottom: clamp(3rem, 8vw, 8rem);
}

/* Hero Section */
.services-hero-section {
    min-height: 90vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    padding-top: 160px; /* Space for header */
}

@media (max-width: 991px) {
    .services-hero-section {
        min-height: 80vh;
        padding-top: 120px;
    }
}


.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite alternate;
}

.orb-1 {
    top: -10%;
    right: 0%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation-delay: -5s;
}

.hero-image-composition {
    position: relative;
    height: 500px;
    width: 100%;
}

@media (max-width: 991px) {
    .hero-image-composition {
        display: none; /* Hide complex image composition on mobile to save space */
    }
}

.hero-img-main {
    width: 80%;
    height: 90%;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.hero-img-glass {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    padding: 2rem;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 3;
    border-radius: 4px;
}

/* Showcase Section */
.showcase-section {
    background: #111;
}

.showcase-row {
    margin-bottom: clamp(4rem, 8vw, 8rem);
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-img-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: clamp(300px, 40vw, 500px);
}

.showcase-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.showcase-row:hover .showcase-img-wrapper img {
    transform: scale(1.05);
}

.showcase-content {
    padding: clamp(1rem, 3vw, 2rem) 0;
}

.service-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(197, 160, 89, 0.4);
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
}

.feature-list li .material-symbols-outlined {
    color: var(--gold-bright);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Premium Services Grid */
.premium-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2rem);
    height: 100%;
    transition: all 0.4s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(197, 160, 89, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2) 0%, rgba(0,0,0,0) 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1rem, 2vw, 2rem);
    color: var(--gold-bright);
}

/* Why Choose Us / Stats */
.stats-section {
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.stat-box {
    text-align: center;
    padding: clamp(1rem, 3vw, 2rem);
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold-bright);
    margin-bottom: 0.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .stat-box:last-child {
        border-bottom: none;
    }
}

/* Process Timeline */
.timeline-interactive {
    position: relative;
    padding: 4rem 0;
}

.timeline-interactive::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255,255,255,0.1);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    width: 50%;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #111;
    border: 2px solid var(--gold-bright);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -24px;
    right: auto;
}

.timeline-content {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .timeline-interactive::after {
        left: 24px;
    }
    .timeline-item, .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 4rem;
        padding-right: 0;
        margin-left: 0;
    }
    .timeline-marker, .timeline-item:nth-child(even) .timeline-marker {
        left: 0;
        right: auto;
    }
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.quote-icon {
    font-family: var(--font-display);
    font-size: clamp(5rem, 8vw, 8rem);
    color: rgba(197, 160, 89, 0.15);
    line-height: 0;
    margin-bottom: -1rem;
    display: block;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced CTA */
.premium-cta {
    position: relative;
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #000;
    overflow: hidden;
}

.cta-glass-panel {
    position: relative;
    z-index: 2;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 4px;
}

@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}
@media (max-width: 1300px) {
    
.services-hero-section {
    padding-top: 62px;
    min-height: 63vh;
}
}

@media (max-width: 767px) {
    .services-hero-section {
        min-height: 40vh;
        padding-top: 20px;
    }
}