/* ==============================
   Photography Page
============================== */

.photography-section {
    position: relative;
    padding: 135px 0 35px;
    background:
        radial-gradient(circle at 12% 8%, rgba(212,175,55,0.16), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255,255,255,0.06), transparent 24%),
        linear-gradient(180deg, #020202 0%, #080808 45%, #050505 100%);
    color: #fff;
    overflow: hidden;
}

.photography-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 80%);
    pointer-events: none;
}

.photography-section .container {
    position: relative;
    z-index: 2;
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #d4af37;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-heading span::before,
.section-heading span::after {
    content: "";
    width: 42px;
    height: 1px;
    background: rgba(212,175,55,0.7);
}

.section-heading h2 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #f7e7aa, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #c8c8c8;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Cards */

.photography-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 35px;
}

.photography-card {
    position: relative;
    height: 440px;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(212,175,55,0.22);
    box-shadow: 0 30px 80px rgba(0,0,0,0.62);
    isolation: isolate;
    transform: translateZ(0);
    transition: all 0.45s ease;
}

.photography-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(212,175,55,0.9), transparent 32%, rgba(255,255,255,0.18));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    z-index: 4;
    transition: 0.4s ease;
    pointer-events: none;
}

.photography-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow:
        0 38px 100px rgba(0,0,0,0.75),
        0 0 45px rgba(212,175,55,0.12);
}

.photography-card:hover::before {
    opacity: 1;
}

.photography-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: saturate(0.95) contrast(1.05);
}

.photography-card:hover .photography-card-video {
    transform: scale(1.12);
    filter: saturate(1.15) contrast(1.12);
}

.photography-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 34%, rgba(0,0,0,0.25) 72%, rgba(0,0,0,0.05) 100%);
}

.photography-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 30px;
}

.card-mini-label {
    display: inline-block;
    color: #d4af37;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.photography-card-content h3 {
    color: #fff;
    font-size: 1.38rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.photography-card-content p {
    color: #dddddd;
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.photography-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111;
    background: linear-gradient(135deg, #d4af37, #f1d77a);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 800;
    padding: 11px 18px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(212,175,55,0.25);
    transition: 0.35s ease;
}

.photography-card-content a:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #000;
}

.photography-card-content a i {
    font-size: 0.82rem;
}

/* Highlight Section */

.photography-highlight-section {
    padding: 95px 0;
    background:
        linear-gradient(180deg, #050505, #0b0b0b);
    color: #fff;
}

.photography-highlight-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.highlight-content .sp-badge {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    color: #d4af37;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.highlight-content h2 {
    font-size: clamp(2.1rem, 4vw, 3.45rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 22px 0 18px;
}

.highlight-content p {
    color: #bfbfbf;
    font-size: 1rem;
    line-height: 1.85;
    max-width: 620px;
}

.highlight-content ul {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.highlight-content li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e4e4e4;
    margin-bottom: 15px;
    font-size: 0.98rem;
}

.highlight-content li i {
    color: #d4af37;
    margin-top: 4px;
}

.highlight-video-box {
    position: relative;
    height: 540px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow:
        0 35px 95px rgba(0,0,0,0.72),
        0 0 40px rgba(212,175,55,0.1);
}

.highlight-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-video-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.38), transparent 55%);
}

/* CTA spacing fix if common CTA exists in style.css */

 /* Photography Page CTA Fix */

.sp-cta-section {
    padding: 50px 0 70px;
    background: #050505;
}

.sp-cta-box {
    padding: 40px 30px !important;
}

.sp-cta-box h2 {
    margin-bottom: 15px;
}

.sp-cta-box p {
    margin-bottom: 30px;
}

.sp-cta-box .btn-main {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 32px;
}

/* Responsive */

@media (max-width: 1199px) {
    .photography-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .photography-card {
        height: 410px;
    }
}

@media (max-width: 991px) {
    .photography-section {
        padding-top: 105px;
    }

    .photography-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photography-highlight-grid {
        grid-template-columns: 1fr;
    }

    .highlight-video-box {
        height: 430px;
    }
}

@media (max-width: 575px) {
    .photography-section {
        padding: 90px 0 60px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading span {
        letter-spacing: 2.5px;
        gap: 10px;
    }

    .section-heading span::before,
    .section-heading span::after {
        width: 24px;
    }

    .section-heading h2 {
        font-size: 2.15rem;
    }

    .section-heading p {
        font-size: 0.96rem;
    }

    .photography-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .photography-card {
        height: 390px;
        border-radius: 24px;
    }

    .photography-card-content {
        padding: 24px;
    }

    .photography-highlight-section {
        padding: 65px 0;
    }

    .highlight-video-box {
        height: 360px;
        border-radius: 24px;
    }
}

.photo-top-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 16px 24px;
    margin-bottom: 40px;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
    backdrop-filter: blur(18px);
}

.photo-top-strip span {
    color: #d4af37;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.photo-top-strip p {
    margin: 0;
    color: #d5d5d5;
    font-size: 0.9rem;
}

.photo-tabs {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 18px;
    margin-bottom: 35px;
}

.photo-tabs a {
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.25);
    background: rgba(255,255,255,0.04);
    font-size: 0.9rem;
    transition: 0.3s;
}

.photo-tabs a:hover {
    background: #d4af37;
    color: #000;
}

.card-number {
    position: absolute;
    top: 22px;
    right: 24px;
    z-index: 5;
    color: rgba(255,255,255,0.55);
    font-size: 2.4rem;
    font-weight: 800;
}


.photo-process-section {
    padding: 55px 0 70px;
    background: #050505;
    color: #fff;
}

.small-heading {
    margin-bottom: 45px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    position: relative;
    padding: 34px 28px;
    border-radius: 26px;
    background: linear-gradient(145deg, #111, #050505);
    border: 1px solid rgba(212,175,55,0.22);
    min-height: 230px;
    transition: 0.35s;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.7);
}

.process-card span {
    color: #d4af37;
    font-size: 2.4rem;
    font-weight: 800;
    opacity: 0.8;
}

.process-card h3 {
    margin-top: 22px;
    font-size: 1.3rem;
    font-weight: 800;
}

.process-card p {
    color: #bdbdbd;
    line-height: 1.7;
}

.floating-stat {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 5;
    background: rgba(0,0,0,0.72);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 20px;
    padding: 18px 24px;
    backdrop-filter: blur(14px);
}

.floating-stat strong {
    display: block;
    color: #d4af37;
    font-size: 2rem;
    line-height: 1;
}

.floating-stat span {
    color: #fff;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .photo-top-strip {
        flex-direction: column;
        border-radius: 24px;
        text-align: center;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .photo-top-strip {
        margin-top: 20px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .card-number {
        font-size: 1.8rem;
    }
}
.photo-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.photo-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 22px;
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.photo-stat h3 {
    color: #d4af37;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.photo-stat span {
    color: #d5d5d5;
    font-size: 0.95rem;
}

@media(max-width:768px){
    .photo-stats{
        grid-template-columns:repeat(2,1fr);
    }
}