/*=================================
    CATEGORY HEADINGS
=================================*/

.section-heading{
    max-width:760px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    border:1px solid rgba(255,204,112,.25);
    background:rgba(255,204,112,.08);
    color:#ffcc70;
    font-size:14px;
    font-weight:500;
    letter-spacing:.5px;
    margin-bottom:20px;
}

/* Main Heading */

.section-heading h2,
.about-content h2,
.feature-content h2,
.highlights-content h2{

    font-family:"Cormorant Garamond",serif;
    font-size:48px;
    font-weight:700;
    line-height:1.15;
    letter-spacing:.4px;
    margin:0 0 22px;

    background:linear-gradient(
        180deg,
        #fffdf6 0%,
        #ffe7a8 35%,
        #ffcc70 65%,
        #d59b2d 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Gold Line */

.section-heading h2::after,
.about-content h2::after,
.feature-content h2::after,
.highlights-content h2::after{

    content:"";
    display:block;
    width:90px;
    height:3px;
    margin-top:18px;
    border-radius:20px;

    background:linear-gradient(
        to right,
        #ffcc70,
        #9d6d1f
    );
}

/* Paragraph */

.section-heading p,
.about-content p,
.feature-content p,
.highlights-content > p{

    color:#b7b7b7;
    font-size:18px;
    line-height:1.9;
    max-width:760px;
}
@media(max-width:991px){

.section-heading h2,
.about-content h2,
.feature-content h2,
.highlights-content h2{
    font-size:40px;
}

}

@media(max-width:576px){

.section-heading h2,
.about-content h2,
.feature-content h2,
.highlights-content h2{
    font-size:32px;
}

.section-heading p,
.about-content p,
.feature-content p,
.highlights-content > p{
    font-size:16px;
    line-height:1.8;
}

.section-heading h2::after,
.about-content h2::after,
.feature-content h2::after,
.highlights-content h2::after{
    width:70px;
}

}

/*==========================
    CATEGORY BANNER
===========================*/

.category-banner{
    position:relative;
    min-height:650px;
    display:flex;
    align-items:center;
    background:url("../images/banner/category-banner.webp") center center/cover no-repeat;
    overflow:hidden;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,8,8,.92) 0%,
        rgba(8,8,8,.75) 35%,
        rgba(8,8,8,.30) 65%,
        rgba(8,8,8,.08) 100%
    );
}

.banner-content{
    position:relative;
    z-index:2;
    max-width:620px;
}

.banner-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    color:#ffcc70;
    font-size:15px;
    margin-bottom:22px;
}

.banner-content h1{
    font-size:60px;
    line-height:1.15;
    color:#ffcc70;
    margin-bottom:25px;
}

.banner-content p{
    color:#f5f5f5;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
}

.banner-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.btn-primary{
    background:#ffcc70;
    color:#111;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.06);
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

/*==========================
    MOBILE
===========================*/

@media(max-width:991px){

.category-banner{
    min-height:560px;
    background-position:68% center;
}

.banner-content{
    max-width:100%;
}

.banner-content h1{
    font-size:42px;
}

.banner-content p{
    font-size:16px;
}

}

@media(max-width:576px){

.category-banner{
    min-height:520px;
    background-position:72% center;
}

.banner-tag{
    font-size:13px;
}

.banner-content h1{
    font-size:32px;
}

.banner-buttons{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:12px;
    flex-wrap:nowrap;
}

.btn-primary,
.btn-secondary{
    width:auto;
    min-width:145px;
    padding:12px 20px;
    font-size:15px;
}

}

/*==============================
    ABOUT CATEGORY
==============================*/

.about-category{
    padding:90px 0;
    background:#0f0f0f;
}

.about-grid{
    display:grid;
    grid-template-columns:40% 60%;
    gap:60px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:22px;
}

.about-image img{
    width:100%;
    height:560px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

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

.section-tag{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(255,204,112,.12);
    border:1px solid rgba(255,204,112,.25);
    color:#ffcc70;
    font-size:14px;
    margin-bottom:18px;
    letter-spacing:.5px;
}

.about-content h2{
    font-size:42px;
    color:#fff;
    margin-bottom:22px;
    line-height:1.3;
}

.about-content p{
    color:#d3d3d3;
    font-size:17px;
    line-height:1.9;
    margin-bottom:18px;
}

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px 22px;
    border-radius:14px;
    background:#181818;
    border:1px solid rgba(255,255,255,.06);
    transition:.3s;
}

.feature-item:hover{
    border-color:#ffcc70;
    transform:translateY(-4px);
}

.feature-item span{
    color:#ffcc70;
    font-size:18px;
}

.feature-item h4{
    color:#fff;
    font-size:17px;
    font-weight:600;
    margin:0;
}

/*==============================
    TABLET
==============================*/

@media(max-width:991px){

.about-grid{
    display:flex;
    flex-direction:column-reverse;
    gap:35px;
}

.about-image img{
   height:500px;
    object-fit:cover;
    object-position:center top;
}

.about-content h2{
    font-size:34px;
}

.feature-list{
    grid-template-columns:repeat(2,1fr);
}

}

/*==============================
    MOBILE
==============================*/

@media(max-width:576px){

.about-category{
    padding:70px 0;
}

.about-image img{
    height:360px;
}

.about-content h2{
    font-size:28px;
}

.about-content p{
    font-size:16px;
}

.feature-list{
    grid-template-columns:1fr;
}

.feature-item{
    padding:15px 18px;
}

}

/*==============================
    WHY SECTION
==============================*/

.why-section{
    padding:90px 0;
    background:#151515;
}

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

.section-heading .section-tag{
    display:inline-block;
    padding:8px 22px;
    background:rgba(255,204,112,.12);
    border:1px solid rgba(255,204,112,.25);
    border-radius:50px;
    color:#ffcc70;
    margin-bottom:18px;
    font-size:14px;
}

.section-heading h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
    line-height:1.3;
}

.section-heading p{
    color:#cfcfcf;
    font-size:17px;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:20px;
    padding:35px 28px;
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#ffcc70;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.why-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,204,112,.12);
    color:#ffcc70;
    font-size:28px;
    margin-bottom:22px;
}

.why-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:22px;
}

.why-card p{
    color:#bfbfbf;
    line-height:1.8;
    font-size:15px;
}

/* Tablet */

@media(max-width:991px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-heading h2{
    font-size:34px;
}

}

/* Mobile */

@media(max-width:576px){

.why-section{
    padding:70px 0;
}

.section-heading{
    margin-bottom:40px;
}

.section-heading h2{
    font-size:28px;
}

.section-heading p{
    font-size:16px;
}

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

.why-card{
    padding:28px 22px;
}

}

/*======================================
INTRO CONTENT
=======================================*/

.intro-content{

    padding:90px 0;

}

.intro-wrap{

    max-width:900px;
    margin:auto;
    padding:0 20px;
    box-sizing:border-box;

}

.intro-wrap h2{

    margin-bottom:25px;
    text-align:center;
    line-height:1.3;

}

.intro-wrap p{

    margin-bottom:22px;
    line-height:2;
    color:#cfcfcf;

}

@media(max-width:768px){

.intro-content{

    padding:70px 0;

}

.intro-wrap{

    padding:0 18px;

}

}

/*=========================
    FEATURE SECTION
=========================*/

.feature-section{
    padding:90px 0;
    background:#121212;
}

.feature-grid{
    display:grid;
    grid-template-columns:60% 40%;
    gap:60px;
    align-items:center;
}

.feature-content h2{
    color:#fff;
    font-size:42px;
    line-height:1.3;
    margin:20px 0;
}

.feature-content p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:18px;
    font-size:17px;
}

.feature-list{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    list-style:none;
    padding:0;
}

.feature-list li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 20px;
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    color:#fff;
    transition:.3s;
}

.feature-list li:hover{
    border-color:#ffcc70;
    transform:translateY(-4px);
}

.feature-list i{
    color:#ffcc70;
    font-size:18px;
}

.feature-image{
    overflow:hidden;
    border-radius:22px;
}

.feature-image img{
    width:100%;
    height:580px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

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

/* Tablet */

@media(max-width:991px){

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

.feature-content{
    order:1;
}

.feature-image{
    order:2;
}

.feature-content h2{
    font-size:34px;
}

.feature-image img{
    height:460px;
}

}

/* Mobile */

@media(max-width:576px){

.feature-section{
    padding:70px 0;
}

.feature-content h2{
    font-size:28px;
}

.feature-content p{
    font-size:16px;
}

.feature-list{
    grid-template-columns:1fr;
}

.feature-image img{
    height:auto;
}

}
/*=========================
    MORE CATEGORIES
=========================*/

.more-categories{
    padding:90px 0;
    background:#101010;
}

.category-links{
    margin-top:45px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.category-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    background:#181818;
    color:#fff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50px;
    transition:.35s;
    font-size:16px;
    font-weight:500;
}

.category-links a:hover{
    background:#ffcc70;
    color:#111;
    border-color:#ffcc70;
    transform:translateY(-4px);
}

@media(max-width:576px){

.more-categories{
    padding:70px 0;
}

.category-links{
    gap:12px;
}

.category-links a{
    width:calc(50% - 6px);
    padding:13px 15px;
    font-size:15px;
}

}

/*==========================
    HIGHLIGHTS SECTION
==========================*/

.highlights-section{
    padding:90px 0;
    background:#0f0f0f;
}

.highlights-grid{
    display:grid;
    grid-template-columns:60% 40%;
    gap:60px;
    align-items:center;
}

.highlight-cards{
    display:grid;
    gap:20px;
    margin-top:35px;
}

.highlight-card{
    display:flex;
    gap:18px;
    padding:24px;
    background:#181818;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    transition:.35s;
}

.highlight-card:hover{
    transform:translateY(-6px);
    border-color:#ffcc70;
}

.highlight-card i{
    width:60px;
    height:60px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,204,112,.10);
    color:#ffcc70;
    font-size:24px;
    flex-shrink:0;
}

.highlight-card h3{
    color:#fff;
    font-size:20px;
    margin-bottom:8px;
}

.highlight-card p{
    color:#cfcfcf;
    line-height:1.8;
    margin:0;
    font-size:15px;
}

.highlights-image{
    overflow:hidden;
    border-radius:22px;
}

.highlights-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

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

/* Tablet */

@media(max-width:991px){

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

.highlights-content{
    order:1;
}

.highlights-image{
    order:2;
}

.highlights-image img{
    height:500px;
}

}

/* Mobile */

@media(max-width:576px){

.highlights-section{
    padding:70px 0;
}

.highlight-card{
    padding:20px;
}

.highlight-card i{
    width:52px;
    height:52px;
    font-size:20px;
}

.highlights-image img{
    height:auto;
}

}

/*==============================
    CONTENT SECTION
==============================*/

.content-section{
    padding:90px 0;
    background:#101010;
}

.content-box{

    max-width:950px;
    margin:auto;

    padding:60px;

    background:linear-gradient(
        180deg,
        rgba(30,30,30,.95),
        rgba(24,24,24,.95)
    );

    border:1px solid rgba(255,255,255,.07);

    border-radius:28px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);

}

.content-box h2{

    margin:22px 0 25px;

}

.content-box p{

    color:#b8b8b8;
    font-size:18px;
    line-height:2;
    margin-bottom:30px;

}

.content-box p:last-child{
    margin-bottom:0;
}
@media(max-width:576px){

.content-section{
    padding:70px 0;
}

.content-box{

    padding:35px 25px;
    border-radius:20px;

}

.content-box p{

    font-size:16px;
    line-height:1.9;

}

}

/*======================================
AGENCY OVERVIEW
=======================================*/

.agency-overview{

    padding:90px 0;

}

.agency-overview-grid{

    display:grid;
    grid-template-columns:60% 40%;
    gap:60px;
    align-items:center;

}

.agency-overview-content{

    max-width:720px;

}

.agency-overview-content h2{

    margin:20px 0 25px;
	font-family:'Playfair Display', serif;
    font-size:40px;
    line-height:1.2;
    font-weight:700;
    color:#f3e7c2;
   

}

.agency-overview-content p{

    margin-bottom:20px;
    line-height:1.9;

}

.agency-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin:35px 0;

}

.agency-feature{

    padding:18px 20px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:#141414;
    font-weight:500;
    transition:.3s;

}

.agency-feature:hover{

    border-color:#d4af37;
    transform:translateY(-4px);

}

.agency-overview-image{

    border-radius:24px;
    overflow:hidden;

}

.agency-overview-image img{

    width:100%;
    height:100%;
    display:block;
    aspect-ratio:4/5;
    object-fit:cover;
    transition:.4s;

}

.agency-overview-image:hover img{

    transform:scale(1.05);

}
.portfolio-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:20px;
    padding:16px 34px;
    background:linear-gradient(135deg,#d4af37,#f4d76a);
    color:#111;
    font-weight:700;
    text-decoration:none;
    border-radius:50px;
    transition:.35s;

}

.portfolio-btn:hover{

    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(212,175,55,.30);

}
/*=========================
TABLET
=========================*/

@media(max-width:991px){

.agency-overview{

    padding:70px 0;

}

.agency-overview-grid{

    grid-template-columns:1fr;
    gap:40px;

}

.agency-overview-image{

    order:-1;

}

}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

.agency-overview{

    padding:60px 0;

}

.agency-overview-content{

    text-align:left;

}

.agency-features{

    grid-template-columns:1fr;

}

.agency-overview-image img{

    aspect-ratio:16/10;

}

}