/* ===================================
   PREMIUM PAGES STYLING
   =================================== */

/* ========== SHARED ELEMENTS ========== */

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 184, 0, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
}

.section-heading {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-light {
    background: white;
    color: var(--color-text);
}

.btn-light:hover {
    background: #f5f5f5;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ========== ABOUT PAGE ========== */

/* About Hero */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(83, 83, 83, 0.8) 0%, rgba(164, 164, 164, 0.5) 80%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.about-hero-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 184, 0, 0.2);
    border: 1px solid rgba(255, 184, 0, 0.5);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
}

.about-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.about-hero-title span {
    color: var(--color-primary);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
}

/* About Story */
.about-story {
    padding: 120px 0;
}

.about-story-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.about-story-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: var(--spacing-md);
}

.about-story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

/* About Stats */
.about-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.about-stat-item {
    text-align: center;
    padding: 60px 40px;
    color: white;
    position: relative;
    .about-stat-number{
    color: #f9f1e3;
}
}


.about-stat-divider {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.about-stat-item:last-child .about-stat-divider {
    display: none;
}

.about-stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--spacing-md);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.about-stat-number.counting {
    color: var(--color-accent);
}

.about-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* About Philosophy */
.about-philosophy {
    padding: 120px 0;
    background: #fafafa;
}

.about-philosophy-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.philosophy-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.philosophy-item-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.philosophy-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.philosophy-item:hover .philosophy-item-image img {
    transform: scale(1.08);
}

.philosophy-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.philosophy-item-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.philosophy-item-content {
    padding: 32px;
}

.philosophy-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.philosophy-item-desc {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* About Values */
.about-values {
    padding: 120px 0;
}

.about-values-content {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
    align-items: start;
}

.about-values-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.about-values-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-2xl);
}

.about-values-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-box {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.value-box:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.value-box-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
}

.value-box-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.value-box-text {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.938rem;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #e6a800 100%);
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
}

.about-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-2xl);
}

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

/* ========== SERVICES PAGE ========== */

/* Services Hero */
.services-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(121, 121, 121, 0.85) 0%, rgba(134, 134, 134, 0.6) 80%);
}

.services-hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.services-hero-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 184, 0, 0.2);
    border: 1px solid rgba(255, 184, 0, 0.5);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
}

.services-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.services-hero-title span {
    color: var(--color-primary);
}

.services-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Services Grid */
.services-grid-section {
    padding: 120px 0;
    background: #fafafa;
}

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

.service-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #e6a800 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-box-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 184, 0, 0.06);
    line-height: 1;
}

.service-box-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.service-box:hover .service-box-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

.service-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.service-box-desc {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.service-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-box-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text);
    font-size: 0.938rem;
}

.service-box-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Services Process */
.services-process {
    padding: 120px 0;
}

.services-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(255, 184, 0, 0.2) 100%);
}

.process-step-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step-item:last-child {
    margin-bottom: 0;
}

.process-step-badge {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step-item:hover .process-step-badge {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.process-step-content {
    flex: 1;
    padding-top: 12px;
}

.process-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.process-step-text {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
}

.services-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-2xl);
}

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

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

@media (max-width: 1200px) {
    .about-story-wrapper,
    .about-values-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

@media (max-width: 968px) {
    .about-hero-title,
    .services-hero-title {
        font-size: 3rem;
    }

    .section-heading,
    .about-story-title,
    .about-values-title {
        font-size: 2.25rem;
    }

    .about-philosophy-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .about-stat-divider {
        display: none;
    }

    .about-values-right {
        grid-template-columns: 1fr;
    }

    .about-cta-title,
    .services-cta-title {
        font-size: 2.25rem;
    }

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

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .services-hero {
        min-height: 500px;
        height: 60vh;
    }

    .about-hero-title,
    .services-hero-title {
        font-size: 2.25rem;
    }

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

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-buttons,
    .services-cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .process-step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* 480px Breakpoint - About & Services Pages */
@media (max-width: 480px) {
    /* Hero Sections */
    .about-hero,
    .services-hero {
        min-height: 450px;
        height: 55vh;
    }

    .about-hero-title,
    .services-hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .about-hero-tag {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .about-hero-subtitle,
    .services-hero-subtitle {
        font-size: 0.938rem;
    }

    /* Story Section */
    .about-story {
        padding: 2.5rem 0;
    }

    .about-story-title,
    .services-intro-title {
        font-size: 1.5rem;
    }

    .about-story-text {
        font-size: 0.938rem;
        line-height: 1.7;
    }

    /* Stats Section */
    .about-stats {
        padding: 2.5rem 0;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }

    .about-stat-label {
        font-size: 0.875rem;
    }

    /* Philosophy Section */
    .about-philosophy {
        padding: 2.5rem 0;
    }

    .philosophy-item-number {
        font-size: 3rem;
    }

    .philosophy-item-title {
        font-size: 1.125rem;
    }

    /* Values Section */
    .about-values {
        padding: 2.5rem 0;
    }

    .about-values-title {
        font-size: 1.5rem;
    }

    .value-box {
        padding: 1.25rem;
    }

    .value-box-title {
        font-size: 1rem;
    }

    .value-box-desc {
        font-size: 0.875rem;
    }

    /* Services Grid */
    .services-grid {
        gap: 1.5rem;
    }

    .service-box {
        padding: 1.5rem;
    }

    .service-box-number {
        font-size: 2.5rem;
    }

    .service-box-title {
        font-size: 1.125rem;
    }

    .service-box-desc {
        font-size: 0.875rem;
    }

    .service-box-list {
        font-size: 0.875rem;
        gap: 8px;
    }

    /* Process Timeline */
    .services-process {
        padding: 2.5rem 0;
    }

    .process-timeline::before {
        left: 19px;
    }

    .process-step-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .process-step-title {
        font-size: 1rem;
    }

    .process-step-desc {
        font-size: 0.875rem;
    }

    /* CTA Sections */
    .about-cta,
    .services-cta {
        padding: 2.5rem 1rem;
    }

    .about-cta-title,
    .services-cta-title {
        font-size: 1.5rem;
    }

    .about-cta-buttons,
    .services-cta-buttons {
        gap: 1rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 0.938rem;
    }
}

/* 375px Breakpoint - About & Services Pages */
@media (max-width: 375px) {
    /* Hero Sections */
    .about-hero,
    .services-hero {
        min-height: 400px;
        height: 50vh;
    }

    .about-hero-title,
    .services-hero-title {
        font-size: 1.5rem;
    }

    .about-hero-tag {
        font-size: 0.688rem;
        padding: 5px 12px;
    }

    /* Story & Content */
    .about-story-title,
    .services-intro-title {
        font-size: 1.375rem;
    }

    .section-tag {
        font-size: 0.75rem;
    }

    /* Stats */
    .about-stat-number {
        font-size: 2.25rem;
    }

    .about-stat-label {
        font-size: 0.813rem;
    }

    /* Philosophy */
    .philosophy-item-number {
        font-size: 2.5rem;
    }

    /* Services Grid */
    .service-box {
        padding: 1.25rem;
    }

    .service-box-number {
        font-size: 2.25rem;
    }

    .service-box-icon svg {
        width: 36px;
        height: 36px;
    }

    /* Process Timeline */
    .process-step-badge {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    /* CTA */
    .about-cta,
    .services-cta {
        padding: 2rem 0.875rem;
    }

    .about-cta-title,
    .services-cta-title {
        font-size: 1.375rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}
