/**
 * PREMIUM SECTIONS - QUOTE & ABOUT
 * Black & White Theme with Premium Aesthetics
 */

/* ========================================
   SECTION 1: QUOTE SECTION
   ======================================== */

.premium-quote-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
    color: #ffffff;
    padding: 100px 0;
}

/* Background Image */
.quote-bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.quote-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
}

/* Dark Overlay */
.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Content */
.premium-quote-section .container {
    position: relative;
    z-index: 3;
}

.quote-content {
    padding: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-content:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.quote-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    color: #000000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-content:hover .quote-icon {
    transform: scale(1.1) rotate(-5deg);
}

.quote-icon svg {
    width: 32px;
    height: 32px;
}

.quote-text {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

/* ========================================
   SECTION 2: ABOUT SECTION
   ======================================== */

.premium-about-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

.premium-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.about-image-wrapper:hover .about-image {
    transform: translate(-8px, -8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Image Accent (Black border effect) */
.image-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    bottom: 20px;
    border: 3px solid #000000;
    border-radius: 24px;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover .image-accent {
    transform: translate(8px, 8px);
}

/* Content */
.about-content {
    padding-left: 40px;
}

.section-label {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-label:hover {
    background: #1a1a1a;
    transform: translateX(4px);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 32px;
    position: relative;
    padding-left: 24px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #000000;
    border-radius: 2px;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-text-secondary {
    font-size: 16px;
    line-height: 1.7;
    color: #6a6a6a;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Premium Button */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.btn-premium:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium:hover svg {
    transform: translateX(4px);
}

.btn-premium:active {
    transform: translateY(-1px);
}

/* ========================================
   ANIMATIONS (AOS Alternative)
   ======================================== */

[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-60px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(60px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

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

@media (max-width: 1024px) {
    .premium-quote-section {
        min-height: 400px;
        padding: 80px 0;
    }

    .quote-bg-image-1 {
        width: 100%;
        opacity: 0.3;
    }

    .quote-bg-image-1::after {
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    }

    .quote-content {
        padding: 40px;
    }

    .premium-about-section {
        padding: 80px 0;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .premium-quote-section {
        min-height: 350px;
        padding: 60px 0;
    }

    .quote-content {
        padding: 32px;
    }

    .quote-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 24px;
    }

    .quote-icon svg {
        width: 24px;
        height: 24px;
    }

    .quote-text {
        font-size: 20px;
    }

    .premium-about-section {
        padding: 60px 0;
    }

    .about-image-wrapper {
        padding: 10px;
    }

    .image-accent {
        display: none;
    }

    .about-content {
        padding-left: 0;
        margin-top: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .btn-premium {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .premium-quote-section {
        padding: 40px 0;
    }

    .quote-content {
        padding: 24px;
        border-radius: 16px;
    }

    .premium-about-section {
        padding: 40px 0;
    }

    .section-label {
        font-size: 11px;
        padding: 8px 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 18px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.btn-premium:focus-visible,
.section-label:focus-visible {
    outline: 3px solid #000000;
    outline-offset: 4px;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .premium-quote-section,
    .premium-about-section {
        break-inside: avoid;
    }

    .quote-bg-image {
        display: none;
    }

    .btn-premium {
        border: 2px solid #000000;
    }
}