/**
 * Service Pages Styles V2 - Enhanced
 * Modern, Premium look with Smooth Animations
 * 
 * @package ATH_ATRAHI_DESIGN
 */

/* ==========================================================================
   Variables & Base
   ========================================================================== */
:root {
    --service-gold: #b99d63;
    --service-gold-rgb: 185, 157, 99;
    --service-gold-dark: #9a8352;
    --service-gold-light: #d4c49a;
    --service-dark: #0d0d0d;
    --service-dark-secondary: #1a1a1a;
    --service-radius-sm: 8px;
    --service-radius-md: 14px;
    --service-radius-lg: 20px;
    --service-radius-xl: 28px;
}

/* ==========================================================================
   Service Hero Section - Premium
   ========================================================================== */

.service-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 20px 100px;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(13,13,13,0.95) 0%, 
        rgba(26,26,26,0.85) 50%,
        rgba(13,13,13,0.9) 100%
    );
    z-index: 1;
}

.service-hero::after {
    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='%23b99d63' 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");
    z-index: 1;
}

/* Animated particles */
.service-hero .particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.service-hero .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(185, 157, 99, 0.3);
    border-radius: 50%;
    animation: float-up 15s infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.service-hero-content {
    position: relative;
    z-index: 10;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

/* Badge - Enhanced */
.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(185, 157, 99, 0.15);
    border: 1px solid rgba(185, 157, 99, 0.4);
    color: var(--service-gold);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(185, 157, 99, 0.2); }
    50% { box-shadow: 0 0 40px rgba(185, 157, 99, 0.4); }
}

.service-hero-badge .badge-icon {
    font-size: 18px;
}

/* Title - Enhanced */
.service-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.service-hero h1 .text-gold {
    color: var(--service-gold);
    position: relative;
}

.service-hero h1 .text-gold::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(185, 157, 99, 0.3), transparent);
    border-radius: 4px;
    z-index: -1;
}

/* Hero description */
.service-hero-desc {
    font-size: clamp(1.0625rem, 2vw, 1.3125rem);
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats - Premium Cards */
.service-hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.service-hero-stats .stat-item {
    text-align: center;
    padding: 24px 32px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--service-radius-lg);
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-hero-stats .stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(185, 157, 99, 0.15);
    border-color: rgba(185, 157, 99, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-hero-stats .stat-number {
    display: block;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--service-gold);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(185, 157, 99, 0.5);
}

.service-hero-stats .stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero CTA Buttons - Premium */
.service-hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-hero-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--service-gold), var(--service-gold-dark));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--service-radius-md);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(185, 157, 99, 0.4);
    position: relative;
    overflow: hidden;
}

.service-hero-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.6s;
}

.service-hero-cta .btn-primary:hover::before {
    left: 100%;
}

.service-hero-cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(185, 157, 99, 0.5);
}

.service-hero-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--service-radius-md);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-hero-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-4px);
}

/* ==========================================================================
   Service Types Section - Premium Cards
   ========================================================================== */

.service-types-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.service-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--service-dark) 0%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(185, 157, 99, 0.1);
    border: 1px solid rgba(185, 157, 99, 0.2);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--service-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--service-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title .text-gold {
    color: var(--service-gold);
}

.section-desc {
    font-size: 1.125rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Types Grid */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Type Card - Premium */
.service-type-card {
    background: #fff;
    border-radius: var(--service-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--service-gold), var(--service-gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-type-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: rgba(185, 157, 99, 0.2);
}

.service-type-card:hover::before {
    opacity: 1;
}

.service-type-card .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-type-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-type-card:hover .card-image img {
    transform: scale(1.1);
}

.service-type-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        transparent 0%, 
        transparent 40%,
        rgba(13,13,13,0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-type-card:hover .card-overlay {
    opacity: 1;
}

.service-type-card .card-overlay .overlay-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.service-type-card .card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--service-gold), var(--service-gold-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(185, 157, 99, 0.4);
}

.service-type-card .card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--service-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.service-type-card:hover .card-icon {
    background: var(--service-gold);
    transform: rotate(-5deg) scale(1.1);
}

.service-type-card .card-content {
    padding: 28px;
}

.service-type-card .card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--service-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-type-card:hover .card-title {
    color: var(--service-gold-dark);
}

.service-type-card .card-desc {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-type-card .card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-type-card .card-features .feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(185, 157, 99, 0.1);
    color: var(--service-gold-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-type-card .card-features .feature-tag:hover {
    background: rgba(185, 157, 99, 0.2);
}

.service-type-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--service-gold);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-type-card .card-link:hover {
    gap: 14px;
    color: var(--service-gold-dark);
}

/* ==========================================================================
   Standards Section - Premium Grid
   ========================================================================== */

.standards-section {
    padding: 100px 0;
    background: var(--service-dark);
    position: relative;
    overflow: hidden;
}

.standards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(185, 157, 99, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.standard-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--service-radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--service-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.standard-card:hover {
    background: rgba(185, 157, 99, 0.1);
    border-color: rgba(185, 157, 99, 0.3);
    transform: translateY(-8px);
}

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

.standard-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(185, 157, 99, 0.2), rgba(185, 157, 99, 0.1));
    border-radius: var(--service-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s ease;
}

.standard-card:hover .card-icon {
    background: linear-gradient(135deg, var(--service-gold), var(--service-gold-dark));
    transform: scale(1.1) rotate(-5deg);
}

.standard-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.standard-card .card-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ==========================================================================
   Pricing Section - Premium Cards
   ========================================================================== */

.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border-radius: var(--service-radius-xl);
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border-color: var(--service-gold);
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(185, 157, 99, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
}

.pricing-card .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--service-gold), var(--service-gold-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(185, 157, 99, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-card .card-tier {
    font-size: 14px;
    font-weight: 600;
    color: var(--service-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-card .card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--service-dark);
    margin-bottom: 24px;
}

.pricing-card .price-wrapper {
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(185, 157, 99, 0.08), rgba(185, 157, 99, 0.02));
    border-radius: var(--service-radius-lg);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--service-gold);
    line-height: 1;
}

.pricing-card .price .unit {
    font-size: 1rem;
    font-weight: 500;
    color: #888;
    display: block;
    margin-top: 8px;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
    flex-grow: 1;
}

.pricing-card .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 15px;
    color: #555;
}

.pricing-card .features-list li:last-child {
    border-bottom: none;
}

.pricing-card .features-list .check-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card .cta-btn {
    display: block;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--service-gold), var(--service-gold-dark));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--service-radius-md);
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(185, 157, 99, 0.3);
}

.pricing-card .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(185, 157, 99, 0.4);
}

.pricing-card.featured .cta-btn {
    background: linear-gradient(135deg, var(--service-dark), #333);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ==========================================================================
   Portfolio Section - Masonry Grid
   ========================================================================== */

.portfolio-section {
    padding: 100px 0;
    background: var(--service-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--service-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        transparent 0%, 
        transparent 40%,
        rgba(13,13,13,0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item .overlay .category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(185, 157, 99, 0.2);
    color: var(--service-gold);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-item .overlay .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.portfolio-item .overlay .meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   CTA Section - Premium
   ========================================================================== */

.service-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--service-gold) 0%, var(--service-gold-dark) 50%, #8a7445 100%);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.service-cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.service-cta-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.service-cta-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--service-radius-md);
    text-decoration: none;
    transition: all 0.4s ease;
}

.service-cta-buttons .btn-white {
    background: #fff;
    color: var(--service-gold-dark);
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

.service-cta-buttons .btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
}

.service-cta-buttons .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}

.service-cta-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* ==========================================================================
   Responsive - Service Pages
   ========================================================================== */

@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-item.large {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .service-hero {
        min-height: 70vh;
        padding: 140px 20px 80px;
    }
    
    .service-hero-stats {
        gap: 16px;
    }
    
    .service-hero-stats .stat-item {
        padding: 20px 24px;
        min-width: 120px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: auto;
        padding: 120px 16px 60px;
        background-attachment: scroll;
    }
    
    .service-hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .service-hero-stats .stat-item {
        width: 100%;
        max-width: 280px;
        padding: 18px 24px;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero-cta .btn-primary,
    .service-hero-cta .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .service-types-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .service-types-section,
    .standards-section,
    .pricing-section,
    .portfolio-section,
    .service-cta-section {
        padding: 60px 0;
    }
    
    .service-type-card .card-content {
        padding: 20px;
    }
    
    .standard-card {
        padding: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
}

/* ==========================================================================
   Icon Elements - Proper Display & Colors
   ========================================================================== */

/* Service Type Card Icons */
.stc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 157, 99, 0.15), rgba(185, 157, 99, 0.05));
    border: 1px solid rgba(185, 157, 99, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--service-gold) !important;
}

.stc-icon svg {
    width: 24px;
    height: 24px;
    color: var(--service-gold) !important;
}

.service-type-card:hover .stc-icon {
    background: linear-gradient(135deg, var(--service-gold), var(--service-gold-dark));
    color: #fff;
    border-color: var(--service-gold);
}

.service-type-card:hover .stc-icon svg {
    color: #fff;
}

/* Service Type Card Features List */
.stc-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    text-align: left;
}

.stc-features li {
    padding: 4px 0;
    font-size: 0.875rem;
    color: #6b7280;
    position: relative;
    padding-left: 16px;
}

.stc-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--service-gold);
}

/* Feature Card Icons (F&B, Playground features) */
.fc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185, 157, 99, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--service-gold) !important;
}

.fc-icon svg {
    width: 20px;
    height: 20px;
    color: var(--service-gold) !important;
}

/* Pricing Step Icons */
.ps-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #10b981;
}

.ps-icon svg {
    width: 20px;
    height: 20px;
    color: #10b981;
}

/* Note Icons */
.note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--service-gold);
    font-size: 1.1rem;
}

.note-icon svg {
    width: 20px;
    height: 20px;
    color: var(--service-gold);
}

/* Ensure service-type-card text is dark on light background  */
.service-type-card,
.service-type-card h3,
.service-type-card p,
.service-type-card li {
    color: var(--service-dark) !important;
}

.service-type-card p,
.service-type-card li {
    color: #6b7280 !important;
}

.service-type-card h3 {
    color: #1a1a1a !important;
}


/* ==========================================================================
   Service Landing Pages - Section Color Fixes
   Ensure proper text contrast on mixed dark/light sections
   ========================================================================== */

/* Dark background sections - white text */
.service-features-section {
    color: #fff;
}

.service-features-section h2,
.service-features-section h3 {
    color: #fff !important;
}

.service-features-section p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.service-features-section .feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.service-features-section .feature-card:hover {
    background: rgba(185, 157, 99, 0.1);
    border-color: rgba(185, 157, 99, 0.25);
}

.service-features-section .feature-card h3 {
    color: #fff !important;
}

.service-features-section .feature-card p {
    color: rgba(255, 255, 255, 0.65) !important;
}

.service-features-section .fc-icon {
    background: rgba(185, 157, 99, 0.15);
    color: #b99d63 !important;
}

.service-features-section .fc-icon svg {
    color: #b99d63 !important;
}

/* Light background sections - dark text */
.design-styles-section h2,
.design-styles-section h3 {
    color: #1a1a1a !important;
}

.design-styles-section p {
    color: #6b7280 !important;
}

.design-styles-section .section-desc {
    color: #6b7280 !important;
}

.design-styles-section .style-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.design-styles-section .style-card:hover {
    border-color: #b99d63;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.design-styles-section .style-icon {
    color: #b99d63 !important;
}

.design-styles-section .style-icon svg {
    color: #b99d63 !important;
}

/* Service Types Section - Light bg, dark text */
.service-types-section h2 {
    color: #1a1a1a !important;
}

.service-types-section .section-desc {
    color: #6b7280 !important;
}

/* Service Portfolio Section - Light bg */
.service-portfolio-section h2 {
    color: #1a1a1a !important;
}

.service-portfolio-section .section-desc {
    color: #6b7280 !important;
}

/* Service Pricing Section - Light bg */
.service-pricing-section h2 {
    color: #1a1a1a !important;
}

.service-pricing-section .section-desc {
    color: #6b7280 !important;
}

/* CTA Section in service landing */
.service-cta-section {
    color: #fff;
}

.service-cta-section h2 {
    color: #fff !important;
}

.service-cta-section p {
    color: rgba(255, 255, 255, 0.8) !important;
}


/* Highlight item - check icon styling */
.highlight-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(185, 157, 99, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    color: #b99d63;
}

.highlight-item span svg {
    width: 12px;
    height: 12px;
}

