/* ==========================================
   CONTACT & ABOUT PAGE STYLES
   ========================================== */

/* ==========================================
   SHARED UTILITY
   ========================================== */

.ca-section-line {
    width: 60px;
    height: 1px;
    background-color: var(--branding-gold);
    margin: 1.5rem 0;
}

.ca-section-line--center {
    margin: 1.5rem auto;
}

/* ==========================================
   CONTACT HERO SECTION
   ========================================== */

.ca-hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ca-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.ca-hero-title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.ca-hero-title {
    margin-bottom: 2rem;
}

.ca-hero-line {
    width: 80vw;
    max-width: 600px;
    height: 1px;
    background-color: var(--branding-gold);
}

.ca-hero-text-section {
    max-width: 600px;
}

.ca-hero-intro {
    text-align: center;
}

.ca-hero-arrow {
    position: absolute;
    bottom: 2.5rem;
    font-size: 2rem;
    color: var(--text);
    animation: ca-bounce 2s infinite;
}

@keyframes ca-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==========================================
   CONTACT CARDS SECTION
   ========================================== */

.ca-contact-details-section {
    width: 100%;
    padding: 0 2rem;
}

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

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

.ca-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    border-right: 1px solid var(--line-divider);
    color: var(--text);
}

.ca-contact-card:last-child {
    border-right: none;
}

.ca-contact-icon {
    color: var(--branding-gold);
    margin-bottom: 1.5rem;
}

.ca-contact-label {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.ca-contact-value {
    font-size: 0.85rem;
    color: var(--paragraph-text);
    flex: 1;
}

.ca-contact-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    cursor: pointer;
    border-radius: var(--box-radius);
    padding: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ca-contact-icon-link:hover {
    transform: scale(1.1);
}

/* ==========================================
   LOCATION SECTION
   ========================================== */

.ca-location-section {
    width: 100%;
    padding: 0 2rem;
}

.ca-location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ca-location-title {
    margin-bottom: 0;
}

.ca-location-text p {
    margin-bottom: 0;
}

.ca-airport-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    border-top: 1px solid var(--line-divider);
    padding-top: 1.5rem;
}

.ca-airport-list li {
    font-size: 0.85rem;
    color: var(--paragraph-text);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--grey-border);
    letter-spacing: 0.03em;
}

.ca-airport-list li:last-child {
    border-bottom: none;
}

.ca-location-image {
    overflow: hidden;
    border-radius: var(--box-radius);
    aspect-ratio: 4/3;
}

.ca-location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ca-location-image:hover img {
    transform: scale(1.04);
}

/* ==========================================
   ORDER CTA ELEMENT
   ========================================== */

.ca-order-cta-section {
    width: 100%;
    padding: 0 2rem;
    position: relative;
}

.ca-order-cta-section::before {
    content: '';
    display: block;
    width: 75%;
    max-width: 900px;
    height: 1px;
    background-color: var(--line-divider);
    margin: 0 auto;
}

.ca-order-cta-section::after {
    content: '';
    display: block;
    width: 25%;
    max-width: 300px;
    height: 1px;
    background-color: var(--line-divider);
    margin: 0 auto;
}

.ca-order-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem 0;
}

.ca-order-cta-text {
    text-align: center;
    flex: 1;
}

.ca-order-cta-title {
    margin-bottom: 0.5rem;
}

.ca-order-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.ca-order-btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ca-order-btn-sub {
    font-size: 0.75rem;
    opacity: 0.65;
    letter-spacing: 0.02em;
}

/* ==========================================
   ABOUT HEADING SECTION
   ========================================== */

.ca-about-heading-section {
    height: 70vh;
    width: 100%;
    /* padding: 6rem 2rem 4rem; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ca-about-heading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.ca-about-heading-title {
    margin-bottom: 2rem;
}

/* ==========================================
   ABOUT STORY SECTION
   ========================================== */

.ca-about-story-section {
    width: 100%;
    padding: 0 2rem;
}

.ca-about-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.ca-about-story-image {
    overflow: hidden;
    border-radius: var(--box-radius);
    aspect-ratio: 3/4;
}

.ca-about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ca-about-story-image:hover img {
    transform: scale(1.04);
}

.ca-about-story-title {
    margin-bottom: 0;
}

.ca-about-story-text p {
    margin-bottom: 1.5rem;
}

/* ==========================================
   VALUES SECTION
   ========================================== */

.ca-values-section {
    width: 100%;
    padding: 0 2rem;
}

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

.ca-values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ca-values-title {
    margin-bottom: 0;
}

.ca-values-intro {
    max-width: 650px;
    margin: 0 auto;
}

.ca-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line-divider);
}

.ca-value-item {
    padding: 3rem 2.5rem;
    position: relative;
    text-align: center;
}

.ca-value-item:not(:last-child) {
    border-right: 1px solid var(--line-divider);
}

.ca-value-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--branding-gold);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.ca-value-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}


/* ==========================================
   CLOSING CTA SECTION
   ========================================== */

.ca-cta-section {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url("../../images/background-image.60a9f3f377ac.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ca-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--overlay);
    z-index: 1;
}

.ca-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    padding: 2rem;
    max-width: 800px;
}

.ca-cta-title {
    color: var(--light);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.ca-cta-description {
    color: rgba(244, 244, 244, 0.8);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

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

@media (max-width: 1024px) {
    .ca-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ca-contact-card:nth-child(2) {
        border-right: none;
    }

    .ca-contact-card:nth-child(3) {
        border-top: 1px solid var(--line-divider);
    }

    .ca-contact-card:nth-child(4) {
        border-top: 1px solid var(--line-divider);
        border-right: none;
    }

    .ca-order-cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .ca-location-container,
    .ca-about-story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ca-about-story-image {
        aspect-ratio: 16/9;
        max-height: 400px;
    }

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

    .ca-value-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--line-divider);
    }
}

@media (max-width: 768px) {
    .ca-hero-section {
        height: auto;
        min-height: calc(100vh - 60px);
        padding: 4rem 1.5rem 5rem;
    }

    .ca-contact-grid {
        grid-template-columns: 1fr;
    }

    .ca-contact-card {
        border-right: none;
        border-bottom: 1px solid var(--line-divider);
    }

    .ca-contact-card:last-child {
        border-bottom: none;
    }

    .ca-contact-card:nth-child(2),
    .ca-contact-card:nth-child(3),
    .ca-contact-card:nth-child(4) {
        border-top: none;
    }

    .ca-location-section,
    .ca-about-story-section,
    .ca-values-section {
        padding: 0 1.5rem;
    }

    .ca-order-cta-section {
        padding: 0 1.5rem;
    }

    .ca-order-cta-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 0;
    }

    .ca-order-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .ca-order-btn-wrap {
        width: 100%;
    }

    .ca-order-btn-wrap .btn-primary,
    .ca-order-btn-wrap .btn-outline {
        width: 100%;
    }

    .ca-about-heading-section {
        padding: 4rem 1.5rem 3rem;
    }

    .ca-cta-section {
        height: auto;
        padding: 6rem 1.5rem;
        background-attachment: scroll;
    }
}
