/* Services Page Specific Styles - Inherits base styles from style.css */

/* Hero Section (Cinematic Premium) */
.hero {
    min-height: 110vh;
    padding: 200px 20px 100px;
    background: radial-gradient(circle at 50% 10%, rgba(201, 168, 92, 0.15) 0%, rgba(10, 10, 10, 0.95) 100%),
        url('../assets/services_hero_v2.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(circle at 50% 50%, rgba(201, 168, 92, 0.1) 2px, transparent 2px);
    background-size: 100px 100px;
    animation: drift 30s ease-in-out infinite alternate;
    z-index: 0;
}

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

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(201, 168, 92, 0.08);
    border: 1px solid rgba(201, 168, 92, 0.2);
    border-radius: 50px;
    color: #c9a85c;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(201, 168, 92, 0.1);
    animation: badgePulse 3s infinite alternate;
}

.hero-title {
    color: var(--color-white);
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
    background: linear-gradient(to right, #ffffff, #c9a85c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 3.5rem;
    font-weight: 300;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicator {
    text-align: center;
    padding: 0 1rem;
}

.trust-indicator:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: #c9a85c;
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(201, 168, 92, 0.2);
}

.trust-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Stunning Premium CTA */
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, rgba(194, 168, 120, 0.15), rgba(194, 168, 120, 0.05));
    border: 1px solid rgba(194, 168, 120, 0.5);
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Base rotating border glow */
.hero-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            transparent,
            rgba(194, 168, 120, 0.4),
            rgba(255, 255, 255, 0.8),
            rgba(194, 168, 120, 0.4),
            transparent,
            transparent);
    animation: rotateShine 6s linear infinite;
    z-index: -2;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

/* Inner dark mask to let the border shine */
.hero-cta::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: var(--color-black);
    border-radius: 50px;
    z-index: -1;
    transition: all 0.5s ease;
}

/* Shine sweeping animation */
@keyframes rotateShine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.02);
    color: var(--color-black);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(194, 168, 120, 0.4), 0 0 20px rgba(194, 168, 120, 0.2);
}

.hero-cta:hover::before {
    opacity: 1;
    animation-duration: 3s;
}

.hero-cta:hover::after {
    background: var(--gradient-gold);
    inset: 0;
}

/* Authority Section */
.authority {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    position: relative;
}

.authority-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.authority-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.authority-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.authority-item {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.authority-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.authority-item-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.authority-item-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Social Proof Section */
.social-proof {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
    position: relative;
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 5rem;
}

.social-proof-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.social-proof-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-black);
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.testimonial-info span {
    color: var(--color-gold);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 8rem 4rem;
    background: var(--color-black);
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 199, 165, 0.1), transparent);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.services-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 3rem;
    height: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 199, 165, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card.color-1:hover {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.2), rgba(255, 255, 255, 0.05));
    border-color: rgba(168, 85, 247, 0.4);
}

.service-card.color-2:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(255, 255, 255, 0.05));
    border-color: rgba(59, 130, 246, 0.4);
}

.service-card.color-3:hover {
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.2), rgba(255, 255, 255, 0.05));
    border-color: rgba(14, 165, 233, 0.4);
}

.service-card.color-4:hover {
    background: linear-gradient(135deg, rgba(133, 77, 14, 0.2), rgba(255, 255, 255, 0.05));
    border-color: rgba(234, 179, 8, 0.4);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-weight: 400;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 2px solid var(--color-gold);
}

.service-features li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 600;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, #e3cd9e, #c2a878);
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 168, 120, 0.4);
    background: linear-gradient(135deg, #f5e1a4, #d4ba8a);
}

/* Featured Case Study */
.featured-case-study {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    position: relative;
}

.featured-case-study::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 199, 165, 0.1), transparent);
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-header {
    text-align: center;
    margin-bottom: 5rem;
}

.featured-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.featured-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.featured-content-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(212, 199, 165, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(255, 255, 255, 0.02);
}

.featured-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.featured-content-wrapper:hover .featured-bg-layer {
    opacity: 0.5;
    transform: scale(1.02);
}

.featured-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem;
    backdrop-filter: blur(8px);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.featured-text {
    flex: 1.2;
}

.featured-category {
    color: var(--color-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(212, 199, 165, 0.3);
    border-radius: 50px;
    background: rgba(212, 199, 165, 0.05);
}

.featured-project-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.featured-project-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.featured-metrics {
    display: flex;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    color: var(--color-gold);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.featured-image-container {
    flex: 1.5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: perspective(1200px) rotateY(-8deg) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
}

.featured-content-wrapper:hover .featured-image-container {
    transform: perspective(1200px) rotateY(0deg) scale(1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.featured-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

@media (max-width: 1024px) {
    .featured-content {
        flex-direction: column;
        padding: 4rem 2rem;
        text-align: center;
    }

    .featured-category {
        margin: 0 auto 1.5rem;
        display: inline-block;
    }

    .featured-metrics {
        justify-content: center;
        gap: 3rem;
    }

    .featured-image-container {
        transform: perspective(1000px) rotateY(0deg) scale(1);
        width: 100%;
        margin-top: 2rem;
    }
}

/* Exclusivity Section */
.exclusivity {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
}

.exclusivity::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 199, 165, 0.2), transparent);
}

.exclusivity-container {
    max-width: 800px;
    margin: 0 auto;
}

.exclusivity-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(212, 199, 165, 0.05);
    border: 1px solid rgba(212, 199, 165, 0.2);
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.exclusivity-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.exclusivity-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.exclusivity-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.exclusivity-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.exclusivity-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

/* Final CTA Section */
.final-cta {
    padding: 10rem 4rem;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(circle at 50% 50%, var(--color-gold) 1px, transparent 1px);
    background-size: 40px 40px;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.final-cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 1024px) {

    .authority-grid,
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-trust-indicators,
    .exclusivity-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
        border: none;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .trust-indicator:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2.5rem 1.5rem;
        min-height: 420px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .service-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .authority-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        padding: 13rem 1.5rem 5rem;
        min-height: 80vh;
    }

    .hero-subtitle {
        font-weight: 400;
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .authority,
    .services,
    .exclusivity,
    .featured-case-study,
    .section {
        padding: 5rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .authority-title,
    .services-title {
        font-size: 2.2rem;
    }

    .featured-content {
        padding: 2.5rem 1.5rem;
    }

    .featured-metrics {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .metric-value {
        font-size: 2rem;
    }

    .featured-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}