/* ===== HERO SECTION (Copied from about-design.css) ===== */
.about-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark, #0c0c0c);
    background-size: cover;
    background-position: center;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.7) 100%);
    z-index: 2;
}

/* Background Animation: Blueprint Lines & Glow */
.about-hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.5;
    pointer-events: none;
}
.hero-noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    z-index: 4;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}
.hero-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0.25;
}
.hero-bg-lines svg {
    width: 100%;
    height: 100%;
}
.blueprint-grid {
    stroke: rgba(206, 158, 81, 0.12);
    stroke-dasharray: 20 20;
}
.blueprint-line {
    stroke: rgba(206, 158, 81, 0.25);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.about-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(237, 139, 51, 0.1);
    border: 1px solid #ED8B33;
    color: #ED8B33;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.luxury-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(237, 139, 51, 0.1);
    border: 1px solid #ED8B33;
    color: #ED8B33;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.luxury-badge i {
    font-size: 9px;
    margin-right: 6px;
}

.about-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: -1px;
}

.about-hero p {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    padding: calc(76px + 3rem) 0 4rem;
    background: linear-gradient(135deg, #0A2647 0%, #144272 60%, #1a5a9a 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,100 100,0 100,100" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat bottom right;
    background-size: 50%;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-banner p.banner-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}


/* ===== BREADCRUMB (Matches Contact Page) ===== */
.contact-breadcrumb {
    background-color: var(--color-white, #fff);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-breadcrumb li {
    font-size: 14px;
    color: var(--color-text-muted, #6c757d);
    display: flex;
    align-items: center;
}

.contact-breadcrumb a {
    color: var(--color-primary, #1e293b);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-breadcrumb a:hover {
    color: var(--color-dark, #ED8B33);
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.gallery-filter-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2D3748;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #ED8B33;
    color: #fff;
    border-color: #ED8B33;
    box-shadow: 0 5px 15px rgba(237, 139, 51, 0.2);
}

/* ===== PREMIUM CTA SECTION ===== */
.gallery-cta {
    position: relative;
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
    overflow: hidden;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.gallery-cta .container {
    position: relative;
    z-index: 2;
}

.gallery-cta h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.gallery-cta p {
    font-size: 1.15rem;
    color: #cbd5e1 !important;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.gallery-cta .btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ED8B33;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(237, 139, 51, 0.3);
}

.gallery-cta .btn-cta:hover {
    background-color: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(237, 139, 51, 0.4);
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    transition: all 0.4s ease;
}

.gallery-item.hide {
    display: none;
}

.gallery-item-inner {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 38, 71, 0.9) 0%, rgba(10, 38, 71, 0.4) 50%, rgba(10, 38, 71, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.gallery-title {
    color: #fff;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-desc {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.gallery-zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-zoom-btn:hover {
    background: #fff;
    color: var(--accent);
}

.gallery-item:hover .gallery-zoom-btn {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    .gallery-overlay {
        opacity: 1;
        visibility: visible;
        background: linear-gradient(to top, rgba(10, 38, 71, 0.95) 0%, rgba(10, 38, 71, 0.4) 70%, transparent 100%);
    }
    .gallery-overlay-content {
        transform: translateY(0);
    }
    .gallery-zoom-btn {
        opacity: 1;
        transform: scale(1);
    }
}
