/* ================================
   ABOUT US PAGE STYLES
   ================================ */

:root {
    --primary-gold: #D4AF37;
    --dark-brown: #3E2723;
    --light-cream: #FAF8F3;
    --accent-green: #2C5F2D;
    --text-dark: #2C2C2C;
    --text-light: #666666;
}

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

body.about-page {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background: #fff;
}

/* ================================
   NAVIGATION STYLES (Same as experiences)
   ================================ */

.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-navigation.scrolled {
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* Remove the white filter - logo should be visible on all backgrounds */
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.main-navigation.scrolled .logo-img {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 35px;
}

.nav-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-navigation.scrolled .nav-menu li a {
    color: #3E2723;
    text-shadow: none;
}

.main-navigation.scrolled .mobile-menu-toggle span {
    background: var(--dark-brown);
}

.nav-menu li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu li a:hover:before,
.nav-menu li a.active:before {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-gold);
}

.nav-menu li a.nav-cta {
    background: var(--primary-gold);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-menu li a.nav-cta:before {
    display: none;
}

.nav-menu li a.nav-cta:hover {
    background: #C19B2F;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-about {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a3f35 100%);
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 90px 20px 0;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        opacity: 0;
        top: 10px;
    }

    50% {
        opacity: 1;
        top: 25px;
    }
}

/* ================================
   ABOUT INTRO SECTION
   ================================ */

.about-intro {
    padding: 120px 0;
    background: #fff;
}

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

.intro-text-section {
    padding-right: 20px;
}

.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
}

.section-tag.light {
    color: #fff;
    border-color: #fff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 30px;
    line-height: 1.3;
}

.section-title.light {
    color: #fff;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 40px;
    background: var(--primary-gold);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: #E5C158;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.intro-image-section {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.grid-image.main-image {
    grid-column: 1 / -1;
    height: 400px;
}

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

.grid-image:hover img {
    transform: scale(1.1);
}

/* ================================
   WHAT WE DO SECTION
   ================================ */

.what-we-do {
    padding: 100px 0;
    background: var(--light-cream);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: grayscale(0.3);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ================================
   OUR STORY SECTION
   ================================ */

.our-story {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a3f35 100%);
    background-image: url('https://images.unsplash.com/photo-1549366021-9f761d450615?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

.story-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-text p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

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

.our-values {
    padding: 100px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    padding: 40px 30px;
    border-left: 4px solid var(--primary-gold);
    background: var(--light-cream);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.value-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.value-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ================================
   TEAM SECTION
   ================================ */

.our-team {
    padding: 100px 0;
    background: var(--light-cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.team-member.visible {
    opacity: 1;
    transform: scale(1);
}

.member-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
    height: 350px;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #fff;
    color: var(--primary-gold);
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.member-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.member-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ================================
   WHY CHOOSE US SECTION
   ================================ */

.why-choose-us {
    padding: 100px 0;
    background: #fff;
}

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

.choose-us-content {
    padding-right: 20px;
}

.features-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.choose-us-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 600px;
}

.choose-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cta-section {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a3f35 100%);
    background-image: url('https://images.unsplash.com/photo-1535083783855-76ae62b2914e?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* ================================
   FOOTER
   ================================ */

.experience-footer {
    padding: 60px 0 30px;
    background: var(--dark-brown);
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.footer-brand p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
}

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

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
}

.social-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.3s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.6s;
}

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

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
        height: 80px;
    }

    .nav-menu {
        gap: 25px;
    }

    .about-intro-grid,
    .choose-us-grid {
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo-img {
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Mobile menu open state - white background for navigation bar */
    .main-navigation.mobile-menu-open {
        background: rgba(250, 248, 243, 0.98) !important;
    }

    .main-navigation.mobile-menu-open .nav-menu li a {
        color: #3E2723 !important;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(62, 39, 35, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 20px;
    }

    .nav-menu li a {
        font-size: 16px;
        display: block;
        padding: 12px 0;
    }

    .nav-menu li a.nav-cta {
        display: inline-block;
        padding: 15px 40px;
    }

    .hero-about {
        height: 60vh;
    }

    .about-intro,
    .what-we-do,
    .our-story,
    .our-values,
    .our-team,
    .why-choose-us {
        padding: 80px 0;
    }

    .about-intro-grid,
    .choose-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social {
        flex-direction: row;
    }

    .cta-section {
        padding: 100px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .choose-us-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

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

    .service-title {
        font-size: 20px;
    }

    .value-number {
        font-size: 36px;
    }
}