/* About Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Label */
.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(212, 175, 55, 0.1));
    border: 1px solid #c9a961;
    border-radius: 50px;
    color: #c9a961;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Page Header */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* About Story Section */
.about-story {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c9a961, #d4af37);
    border-radius: 12px;
    z-index: -1;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Values Cards */
.values-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.values-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.cta-button.secondary {
    background: white;
    color: #1a1a2e;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-family: 'Playfair Display', serif;
    color: #c9a961;
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-box p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.footer {
    position: absolute;
    top: 3200px;
}

/*RESPONSIVE*/
@media (min-width: 240px) and (max-width: 359.98px) and (orientation: portrait) {
    .container {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 80px 0 50px !important;
    }
    
    .page-header h1 {
        font-size: 1.75rem !important;
    }
    
    .section-label {
        font-size: 0.625rem;
        padding: 6px 12px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .about-content > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 25px !important;
    }
    
    .about-content > div[style*="grid"] > div {
        padding: 20px !important;
    }
    
    .about-content > div[style*="grid"] h3 {
        font-size: 1.75rem !important;
    }
    
    .about-content > div[style*="grid"] p {
        font-size: 0.75rem !important;
    }
    
    .image-wrapper::before {
        top: -10px;
        right: -10px;
    }
    
    .about-story,
    section[style*="padding: 100px"] {
        padding: 50px 0 !important;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.875rem;
    }
    
    section[style*="grid-template-columns"] > div {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    section[style*="grid-template-columns"] > div > div {
        padding: 25px !important;
    }
    
    section[style*="grid-template-columns"] h3 {
        font-size: 1.125rem !important;
    }
    
    section[style*="grid-template-columns"] p {
        font-size: 0.875rem !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 15px !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div i {
        font-size: 1.25rem !important;
    }
    
    section[style*="background: linear-gradient"] h2 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    section[style*="background: linear-gradient"] p {
        font-size: 0.875rem !important;
        margin-bottom: 25px !important;
    }
    
    section[style*="background: linear-gradient"] > div > div {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }

    .footer {
        position: absolute;
        top: 4580px;
    }
}

@media (min-width: 360px) and (max-width: 575.98px) and (orientation: portrait) {
    .container {
        padding: 0 20px;
    }
    
    .page-header {
        padding: 90px 0 60px !important;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .about-content > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    .about-content > div[style*="grid"] > div {
        padding: 25px !important;
    }
    
    .about-content > div[style*="grid"] h3 {
        font-size: 2rem !important;
    }
    
    .about-content > div[style*="grid"] p {
        font-size: 0.875rem !important;
    }
    
    .image-wrapper::before {
        top: -12px;
        right: -12px;
    }
    
    .about-story,
    section[style*="padding: 100px"] {
        padding: 60px 0 !important;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.9375rem;
    }
    
    section[style*="grid-template-columns"] > div {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    section[style*="grid-template-columns"] > div > div {
        padding: 30px !important;
    }
    
    section[style*="grid-template-columns"] h3 {
        font-size: 1.25rem !important;
    }
    
    section[style*="grid-template-columns"] p {
        font-size: 0.9375rem !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 18px !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div i {
        font-size: 1.375rem !important;
    }
    
    section[style*="background: linear-gradient"] h2 {
        font-size: 1.75rem !important;
        margin-bottom: 18px !important;
    }
    
    section[style*="background: linear-gradient"] p {
        font-size: 0.9375rem !important;
        margin-bottom: 30px !important;
    }
    
    section[style*="background: linear-gradient"] > div > div {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .cta-button {
        padding: 15px 32px;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    .footer {
        position: absolute;
        top: 4800px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) and (orientation: portrait) {
    .container {
        padding: 0 25px;
    }
    
    .page-header {
        padding: 100px 0 70px !important;
    }
    
    .page-header h1 {
        font-size: 2.5rem !important;
    }
    
    .section-label {
        font-size: 0.8125rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .about-content > div[style*="grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .about-content > div[style*="grid"] > div {
        padding: 25px !important;
    }
    
    .about-content > div[style*="grid"] h3 {
        font-size: 2.25rem !important;
    }
    
    .about-content > div[style*="grid"] p {
        font-size: 0.875rem !important;
    }
    
    .image-wrapper::before {
        top: -15px;
        right: -15px;
    }
    
    .about-story,
    section[style*="padding: 100px"] {
        padding: 70px 0 !important;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    section[style*="grid-template-columns"] > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    section[style*="grid-template-columns"] > div > div {
        padding: 35px !important;
    }
    
    section[style*="grid-template-columns"] h3 {
        font-size: 1.375rem !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div i {
        font-size: 1.5rem !important;
    }
    
    section[style*="background: linear-gradient"] h2 {
        font-size: 2rem !important;
    }
    
    section[style*="background: linear-gradient"] p {
        font-size: 1rem !important;
    }
    
    section[style*="background: linear-gradient"] > div > div {
        gap: 15px !important;
    }
    
    .cta-button {
        padding: 16px 35px;
        width: auto;
    }

    .footer {
        position: absolute;
        top: 4450px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
    .container {
        padding: 0 30px;
    }
    
    .page-header {
        padding: 110px 0 75px !important;
    }
    
    .page-header h1 {
        font-size: 3rem !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content p {
        font-size: 1.0625rem;
    }
    
    .about-content > div[style*="grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .about-content > div[style*="grid"] > div {
        padding: 28px !important;
    }
    
    .about-content > div[style*="grid"] h3 {
        font-size: 2.5rem !important;
    }
    
    .about-content > div[style*="grid"] p {
        font-size: 0.9375rem !important;
    }
    
    .about-story,
    section[style*="padding: 100px"] {
        padding: 80px 0 !important;
    }
    
    .section-header {
        margin-bottom: 70px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.0625rem;
    }
    
    section[style*="grid-template-columns"] > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px !important;
    }
    
    section[style*="grid-template-columns"] > div > div {
        padding: 38px !important;
    }
    
    section[style*="grid-template-columns"] h3 {
        font-size: 1.4375rem !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div {
        width: 65px !important;
        height: 65px !important;
        margin-bottom: 22px !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div i {
        font-size: 1.75rem !important;
    }
    
    section[style*="background: linear-gradient"] h2 {
        font-size: 2.5rem !important;
    }
    
    section[style*="background: linear-gradient"] p {
        font-size: 1.0625rem !important;
    }
    .footer {
        position: absolute;
        top: 3950px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) and (orientation: portrait) {
    .container {
        max-width: 960px;
        padding: 0 35px;
    }
    
    .page-header h1 {
        font-size: 3.5rem !important;
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .about-content h2 {
        font-size: 2.75rem;
    }
    
    .about-content > div[style*="grid"] {
        gap: 25px !important;
    }
    
    .about-story,
    section[style*="padding: 100px"] {
        padding: 90px 0 !important;
    }
    
    .section-header h2 {
        font-size: 2.75rem;
    }
    
    section[style*="grid-template-columns"] > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px !important;
    }
    
    section[style*="background: linear-gradient"] h2 {
        font-size: 2.75rem !important;
    }

    .footer {
        position: absolute;
        top: 3600px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container {
        max-width: 1140px;
    }
    
    .page-header h1 {
        font-size: 3.75rem;
    }
    
    .about-grid {
        gap: 70px;
    }
    
    .about-content h2 {
        font-size: 2.875rem;
    }
    
    .section-header h2 {
        font-size: 2.875rem;
    }
    
    section[style*="grid-template-columns"] > div {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .footer {
        position: absolute;
        top: 3300px;
    }
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
    .container {
        max-width: 1320px;
    }
    
    .page-header h1 {
        font-size: 3.875rem;
    }
    
    .about-content h2 {
        font-size: 2.9375rem;
    }
    
    .section-header h2 {
        font-size: 2.9375rem;
    }

    .footer {
        position: absolute;
        top: 3150px;
    }
}


/* LANDSCAPE RESPONSIVE*/
@media (min-width: 500px) and (max-width: 639.98px) and (orientation: landscape) {
    .container {
        padding: 0 20px;
    }
    
    .page-header {
        padding: 90px 0 60px !important;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .about-content > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    .about-content > div[style*="grid"] > div {
        padding: 25px !important;
    }
    
    .about-content > div[style*="grid"] h3 {
        font-size: 2rem !important;
    }
    
    .about-content > div[style*="grid"] p {
        font-size: 0.875rem !important;
    }
    
    .image-wrapper::before {
        top: -12px;
        right: -12px;
    }
    
    .about-story,
    section[style*="padding: 100px"] {
        padding: 60px 0 !important;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.9375rem;
    }
    
    section[style*="grid-template-columns"] > div {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    section[style*="grid-template-columns"] > div > div {
        padding: 30px !important;
    }
    
    section[style*="grid-template-columns"] h3 {
        font-size: 1.25rem !important;
    }
    
    section[style*="grid-template-columns"] p {
        font-size: 0.9375rem !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 18px !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div i {
        font-size: 1.375rem !important;
    }
    
    section[style*="background: linear-gradient"] h2 {
        font-size: 1.75rem !important;
        margin-bottom: 18px !important;
    }
    
    section[style*="background: linear-gradient"] p {
        font-size: 0.9375rem !important;
        margin-bottom: 30px !important;
    }
    
    section[style*="background: linear-gradient"] > div > div {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .cta-button {
        padding: 15px 32px;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    .footer {
        position: absolute;
        top: 4800px;
    }
}

@media (min-width: 640px) and (max-width: 811.98px) and (orientation: landscape) {
   .container {
        padding: 0 25px;
    }
    
    .page-header {
        padding: 100px 0 70px !important;
    }
    
    .page-header h1 {
        font-size: 2.5rem !important;
    }
    
    .section-label {
        font-size: 0.8125rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .about-content > div[style*="grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .about-content > div[style*="grid"] > div {
        padding: 25px !important;
    }
    
    .about-content > div[style*="grid"] h3 {
        font-size: 2.25rem !important;
    }
    
    .about-content > div[style*="grid"] p {
        font-size: 0.875rem !important;
    }
    
    .image-wrapper::before {
        top: -15px;
        right: -15px;
    }
    
    .about-story,
    section[style*="padding: 100px"] {
        padding: 70px 0 !important;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    section[style*="grid-template-columns"] > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    section[style*="grid-template-columns"] > div > div {
        padding: 35px !important;
    }
    
    section[style*="grid-template-columns"] h3 {
        font-size: 1.375rem !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div i {
        font-size: 1.5rem !important;
    }
    
    section[style*="background: linear-gradient"] h2 {
        font-size: 2rem !important;
    }
    
    section[style*="background: linear-gradient"] p {
        font-size: 1rem !important;
    }
    
    section[style*="background: linear-gradient"] > div > div {
        gap: 15px !important;
    }
    
    .cta-button {
        padding: 16px 35px;
        width: auto;
    }

    .footer {
        position: absolute;
        top: 4450px;
    }
}

@media (min-width: 812px) and (max-width: 999.98px) and (orientation: landscape) {
   .container {
        padding: 0 30px;
    }
    
    .page-header {
        padding: 110px 0 75px !important;
    }
    
    .page-header h1 {
        font-size: 3rem !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content p {
        font-size: 1.0625rem;
    }
    
    .about-content > div[style*="grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .about-content > div[style*="grid"] > div {
        padding: 28px !important;
    }
    
    .about-content > div[style*="grid"] h3 {
        font-size: 2.5rem !important;
    }
    
    .about-content > div[style*="grid"] p {
        font-size: 0.9375rem !important;
    }
    
    .about-story,
    section[style*="padding: 100px"] {
        padding: 80px 0 !important;
    }
    
    .section-header {
        margin-bottom: 70px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.0625rem;
    }
    
    section[style*="grid-template-columns"] > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px !important;
    }
    
    section[style*="grid-template-columns"] > div > div {
        padding: 38px !important;
    }
    
    section[style*="grid-template-columns"] h3 {
        font-size: 1.4375rem !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div {
        width: 65px !important;
        height: 65px !important;
        margin-bottom: 22px !important;
    }
    
    section[style*="grid-template-columns"] > div > div > div i {
        font-size: 1.75rem !important;
    }
    
    section[style*="background: linear-gradient"] h2 {
        font-size: 2.5rem !important;
    }
    
    section[style*="background: linear-gradient"] p {
        font-size: 1.0625rem !important;
    }
    .footer {
        position: absolute;
        top: 3950px;
    }
}

@media (min-width: 1000px) and (max-width: 1200px) and (orientation: landscape) {
    .container {
        max-width: 960px;
        padding: 0 35px;
    }
    
    .page-header h1 {
        font-size: 3.5rem !important;
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .about-content h2 {
        font-size: 2.75rem;
    }
    
    .about-content > div[style*="grid"] {
        gap: 25px !important;
    }
    
    .about-story,
    section[style*="padding: 100px"] {
        padding: 90px 0 !important;
    }
    
    .section-header h2 {
        font-size: 2.75rem;
    }
    
    section[style*="grid-template-columns"] > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px !important;
    }
    
    section[style*="background: linear-gradient"] h2 {
        font-size: 2.75rem !important;
    }

    .footer {
        position: absolute;
        top: 3600px;
    }
}