@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

body {
    font-family: "Montserrat", sans-serif;
}

a {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif !important;
}

:root {
    --ink: #1f1f1f;
    --gold: #c79a52;
}
html {
    scroll-behavior: smooth;
}



/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: all .35s ease;
}

/* Container */
.custom-container {
    max-width: 1400px;
}

/* Header after scroll */
.site-header.scrolled {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* Logo */
.logo {
    gap: 8px;
}

.logo-title {
    font-size: 28px;
    line-height: 1;
    color: #fff;
    font-family: 'Cormorant Garamond';
}

.logo-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c79a52;
    margin-bottom: 0px;
    font-weight: 500;
}

/* Navigation */
.nav-menu {
    gap: 42px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    transition: .3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Commission Button */
.commission-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid rgb(199 154 82);
    padding-bottom: 4px;
    transition: .3s;
}

.commission-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.commission-btn i {
    transition: .3s;
}

.commission-btn:hover i {
    transform: translate(3px, -3px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: background-color .4s ease,
        padding .4s ease,
        box-shadow .4s ease;
    padding: 20px 0;
}

.site-header.scrolled {
    background-color: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/*=====================================================
=                    HERO SECTION                     =
=====================================================*/

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 83%), rgb(0 0 0 / 42%), rgb(0 0 0 / 31%));
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px;
    padding-top: 110px;
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-title {
    margin-top: 15px;
    max-width: 900px;
    font-size: 60px;
    line-height: .95;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    line-height: 1.2;
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.hero-description {
    margin-top: 15px;
    max-width: 686px;
    font-size: 18px;
    line-height: 1.9;
    color: rgb(255 255 255 / 93%);
}

/* Hero Buttons */
.hero-buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Primary Button */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: #c39751;
    color: #fff;
    text-decoration: none;
    transition: .35s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    height: fit-content;
    border: 1px solid #c39751;
    border-radius: 100px;
    font-weight: 500;
}

.btn-primary-custom:hover {
    background: transparent;
    color: #c39751;
    border-radius: 0;
}

.btn-primary-custom i {
    transition: .3s;
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

/* Outline Button */
.btn-outline-custom {
    align-items: center;
    color: #222;
    text-decoration: none;
    transition: .35s;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #000000;
    font-weight: 500;
    border-bottom: 1px solid rgb(199 154 82);
    padding-bottom: 12px;
    transition: .3s;
}

a.btn-outline-custom i {
    margin-right: 8px;
    font-size: 14px;
}

.btn-outline-custom:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #fff;
}

/* Scroll Indicator */
.scroll-indicator a {
    position: absolute;
    right: 45px;
    bottom: 35px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.scroll-indicator a span {
    width: 38px;
    height: 1px;
    background: var(--gold);
}

/* Floating Sketch */
.floating-sketch {
    position: absolute;
    color: rgba(199, 154, 82, .35);
    animation: floatSketch 9s ease-in-out infinite;
}

.floating-sketch svg {
    width: 100%;
    height: 100%;
}

.sketch-1 {
    top: 18%;
    left: 8%;
    width: 120px;
    height: 120px;
}

.sketch-2 {
    top: 62%;
    left: 80%;
    width: 90px;
    height: 90px;
    animation-delay: 1.4s;
}

.sketch-3 {
    top: 28%;
    left: 70%;
    width: 60px;
    height: 60px;
    animation-delay: 2.1s;
}

/* Floating Animation */
@keyframes floatSketch {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.about-section {
    padding: 90px 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
    object-position: top;
}

/* Experience Badge */

.experience-badge {
    position: absolute;
    right: -25px;
    bottom: -25px;
    background: #ffffffcf;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    display: none !important;
}

.experience-badge h3 {

    margin: 0;


    font-size: 42px;

    color: var(--ink);

}

.experience-badge span {

    display: block;

    margin-top: 6px;

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #888;

}

/* Section Eyebrow */
.section-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c39751;
    font-weight: 500;
}

/* Heading */
.about-title {
    margin-top: 25px;
    font-size: 48px;
    line-height: 58px;
    color: #000000;
}

.about-title em {

    color: var(--gold);

    font-style: italic;

    font-weight: 400;

}

/* Paragraph */

.about-content {

    margin-top: 35px;

}

.about-content p {
    margin-bottom: 10px;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 0, 0, .72);
}

/* Statistics */

.about-stats {
    margin-top: 20px;
}

.about-stats h3 {
    margin-bottom: 10px;
    font-size: 54px;
    color: #c79a52;
}

.about-stats span {

    font-size: 12px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #888;

}

/*=====================================================
=                 PORTFOLIO SECTION                   =
=====================================================*/

.portfolio-section {
    padding: 90px 0;
    background: #f8f8f6;
}

/* Header */

.portfolio-header {
    margin-bottom: 70px;
}

.portfolio-title {
    margin-top: 25px;
    font-size: 48px;
    line-height: 58px;
    color: #000000;
}

.portfolio-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

/* Filter */

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.portfolio-filter button {
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    transition: .35s;
    font-weight: 500;
}

.portfolio-filter button:hover {
    border-color: var(--ink);
    color: #c59851;
}
.portfolio-filter .active {

    background: var(--ink);

    color: #fff;

    border-color: var(--ink);

}

/* Gallery */

.portfolio-grid {
    display: flex;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: auto;
    gap: 24px;
    flex-wrap: wrap;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    width: 23.5%;
}
.portfolio-item.large {

    grid-row: span 2;

}

.portfolio-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 1.3s ease;

}

.portfolio-item:hover img {

    transform: scale(1.08);

}

/* Overlay */

.portfolio-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 35px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .70),
            rgba(0, 0, 0, 0));

    opacity: 0;

    transform: translateY(20px);

    transition: .45s;

}

.portfolio-item:hover .portfolio-overlay {

    opacity: 1;

    transform: translateY(0);

}

.portfolio-overlay span {

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #d8b26c;

}

.portfolio-overlay h3 {

    margin-top: 8px;

    margin-bottom: 0;

    font-size: 34px;

    color: #fff;

}

.process-section {
    padding: 90px 0;
}

.process-header {
    margin-bottom: 70px;
}

.process-title {
    margin-top: 25px;
    font-size: 48px;
    line-height: 58px;
    color: #000000;
}

.process-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.process-description {
    margin-left: auto;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 0, 0, .70);
}

/* Process Card */

.process-card {
    position: relative;
    height: 100%;
    padding: 35px;
    background: #fafafa;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    transition: .35s;
}

.process-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.process-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.process-number {
    font-size: 40px;
    color: rgba(199, 154, 82, .8);
    font-family: 'Cormorant Garamond';
    font-weight: 800;
}

.process-top svg {
    color: rgba(0, 0, 0, .55);
}

.process-card h3 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 15px;
    max-width: 272px;
}

.process-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(0, 0, 0, .70);
}

.process-line {
    position: absolute;
    top: 50%;
    right: -16px;
    width: 32px;
    height: 1px;
    background: rgba(199, 154, 82, .45);
}

.why-section {
    padding: 90px 0;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}

.why-title {
    margin-top: 25px;
    line-height: 1.05;
    color: #fff;
    font-size: 48px;
    line-height: 58px;
}

.why-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

/* Feature Grid */

.why-grid {
    margin-top: 35px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 20px;
    overflow: hidden;
}

.why-grid>div {
    border-right: 1px solid rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.why-grid>div:nth-child(4n) {
    border-right: none;
}

.why-card {
    height: 100%;
    padding: 30px;
    background: #000000;
    transition: .4s;
    font-size: 30px;
    text-align: center;
}

.why-card:hover {
    background: rgba(255, 255, 255, .05);
}

.why-card svg {
    color: var(--gold);
}

.why-card h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
}

.why-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .65);
}

.reels-section {
    padding: 90px 0;
}

.reels-header {
    margin-bottom: 35px;
}

.reels-title {
    margin-top: 25px;
    font-size: 48px;
    line-height: 1.05;
    color: var(--ink);
}

.reels-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.reelsSwiper {
    padding: 0 20px 0;
}

.reelsSwiper .swiper-slide {
    height: auto;
}

.reel-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 9/16;
    cursor: pointer;
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.reel-card:hover img {
    transform: scale(1.08);
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .20),
            transparent);
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
    z-index: 2;
}

.play-btn i {
    color: #111;
    margin-left: 4px;
}

.reel-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.12);
}

.reel-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 2;
}

.reel-content span {
    color: #d7b26d;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.reel-content h3 {
    color: #fff;
    margin-top: 8px;
    font-size: 30px;
}

.play-btn {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .90);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .35s;

}

.play-btn svg {

    color: #111;
    margin-left: 3px;

}

.reel-card:hover .play-btn {

    transform: translate(-50%, -50%) scale(1.12);

}


.reel-content {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

}

.reel-content span {

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #d8b26c;

}

.reel-content h3 {

    margin-top: 8px;

    margin-bottom: 0;


    font-size: 30px;

    color: #fff;

}


.video-section {
    padding: 90px 0;
    background: #faf9f6;
}


.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0), rgba(0, 0, 0, .20), #00000000);
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border: none;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .2);
}



.modal-content {
    background: transparent;
    box-shadow: none;
}

.btn-close {
    z-index: 999;
}

.video-card {
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #000;
    font-size: 24px;
    transition: .3s;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}



.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    fill: #222;
    margin-left: 4px;
}

.video-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-info span:first-child {
    color: #d3a95c;
    letter-spacing: 1px;
}

.section-title {
    display: inline-block;

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c39751;
    font-weight: 500;
}

.heading {
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
    color: #000000;
}

.heading em {
    color: #b78b47;
    font-style: italic;
}

.description {
    margin-top: 0px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 0, 0, .70);
}

.stat-number {
    font-size: 44px;
    color: #222;
}

.stat-title {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

.testimonial-section {
    padding: 90px 0;
    background: #fff;
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
    color: #8a8a8a;
}

.section-heading {
    font-size: 60px;
    line-height: 1.05;
    font-weight: 400;
}

.section-heading em {
    color: #b88b43;
    font-style: italic;
}

.testimonialSwiper {
    overflow: visible;
}

.swiper-slide {
    height: auto;
}

.testimonial-card {
    height: 100%;
    padding: 35px;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #faf9f6;
    display: flex;
    flex-direction: column;
    transition: .35s;
}

.testimonial-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.quote {

    font-size: 70px;
    color: #b88b43;
    line-height: 1;

}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0px 0 20px;
    flex: 1;
    color: #212121;
}

.client-info {

    border-top: 1px solid #e5e5e5;
    padding-top: 25px;

}

.client-info h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.client-info span {
    display: block;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #c39751;
}

.faq-section {
    padding: 90px 0;
    background: #faf9f6;
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: #888;
}

.section-heading {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 400;
}

.section-heading em {
    color: #b98a3f;
    font-style: italic;
}


.custom-accordion .accordion-item {
    border: none;
    border-radius: 16px;
    background: #fffffffc;
    padding: 30px;
    margin-bottom: 15px;
}

.custom-accordion .accordion-item:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.custom-accordion .accordion-button {
    background: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.custom-accordion .accordion-button::after {

    margin-left: auto;
    background-size: 18px;

}

.faq-number {
    width: 45px;
    flex-shrink: 0;
    color: #b98a3f;
    font-size: 22px;
    font-weight: 900;
}

.faq-title {
    font-size: 24px;
    color: #212121;
    font-weight: 700;
}

.accordion-button:not(.collapsed) .faq-title {

    color: #b98a3f;

}

.custom-accordion .accordion-body {
    padding: 15px 0 0px 60px;
    max-width: 850px;
    color: #212121;
    line-height: 1.9;
    font-size: 16px;
}

.custom-accordion .accordion-button:not(.collapsed) {

    background: none;

}

.custom-accordion .accordion-button:focus {

    box-shadow: none;

}

.contact-section {
    padding: 90px 0;
}

.section-tag {
    display: inline-block;


    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c39751;
    font-weight: 500;
}

.section-heading {
    font-size: 48px;
    line-height: 1.05;
    color: #000;
}

.section-heading em {

    color: #b88b43;
    font-style: italic;

}

.section-desc {
    max-width: 430px;
    margin-top: 0px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 0, 0, .70);
}

.contact-info {

    display: flex;
    flex-direction: column;
    gap: 20px;

}

.contact-info a {
    text-decoration: none;
    color: #212121;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .3s;
    font-size: 16px;
    font-weight: 700;
}

.contact-info a:hover {

    color: #b88b43;

}

.contact-info i {

    color: #b88b43;
    font-size: 18px;

}

.contact-form {
    background: #faf9f6;
    padding: 38px;
    border-radius: 16px;
    border: 1px solid #ececec;
}

.contact-form label {

    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #777;

}

.contact-form .form-control,
.contact-form .form-select {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    background: transparent;
    padding: 12px 0;
    box-shadow: none;
    margin-bottom: 15px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {

    border-color: #b88b43;
    box-shadow: none;

}

.btn-gold {

    background: #b88b43;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    transition: .3s;

}

.btn-gold:hover {

    background: #9d7537;
    color: #fff;

}

.footer-section {
    background: #161616;
    color: #fff;
    padding: 60px 0 15px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.footer-logo {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 20px;
}

.footer-logo em {
    font-style: normal;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c79a52;
    margin-bottom: 0px;
    font-weight: 500;
    font-family: 'Montserrat';
}

.footer-text {

    max-width: 450px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.9;
    font-size: 15px;

}

.footer-title {
    color: #b88b43;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-links {

    list-style: none;
    margin: 0;
    padding: 0;

}

.footer-links li {

    margin-bottom: 10px;

}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
    font-size: 14px;
}

.footer-links a:hover {

    color: #b88b43;

}

.footer-links i {

    font-size: 16px;

}

.footer-bottom {
    padding-top: 15px;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    text-align: center;
}

section.testimonial-section {
    overflow-y: hidden;
}

.testimonialSwiper {
    overflow-y: hidden !important;
}




.feature-badges {
    margin-top: 15px;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-item strong {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.location-info {
    text-decoration: none;
    color: #212121;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .3s;
    font-size: 16px;
    font-weight: 700;
}

.location-info:hover {
    color: #b88b43;
}

.social-links a {
    background: #000000;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: 0.5s;
    text-align: center;
    display: inline-block;
    margin-right: 15px;
    margin-top: 40px;
    display: block;
    color: #b88b43;
    box-shadow: 5px 5px 0px rgb(184 139 67);
}

.social-links a i {
    font-size: 20px;
}

.social-links a:hover {
    color: #fff;
    transition: 0.5s;
    background-color: #b88b43;
    box-shadow: -5px -5px 0px #000;
}

.creative-process {
    background: linear-gradient(180deg, black, #1f1f1f);
    padding: 90px 0 40px 00;
    color: #fff;
    overflow: hidden;
}

.process-tag {
    margin-bottom: 0px;
    display: inline-block;
    color: #c89b3c;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
}


.creative-process h2 {
    margin-bottom: 60px;
    margin-top: 15px;
    font-size: 48px;
}

.creative-process h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}


.process-wrapper {
    position: relative;
    max-width: 950px;
    margin: auto;
}

.process-wrapper::before {
    content: "";
    position: absolute;
    left: 140px;
    top: 30px;
    bottom: 56px;
    width: 2px;
    background: #c89b3c;
    opacity: .5;
}

.process-step {
    display: grid;
    grid-template-columns: 70px 80px 1fr;
    gap: 35px;
    align-items: flex-start;
    position: relative;
    margin-bottom: 70px;
}

.process-step:last-child {
    margin-bottom: 0;
}


.step-number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, .06);
    text-align: center;
    user-select: none;
}


.step-icon {
    width: 72px;
    height: 72px;
    border: 2px solid #c89b3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    position: relative;
    z-index: 2;
    transition: .35s;
}

.step-icon i {
    font-size: 28px;
    color: #c89b3c;
}

.process-step:hover .step-icon {
    background: #c89b3c;
    transform: scale(1.05);
}

.process-step:hover .step-icon i {
    color: #111;
}

.step-content {
    padding-top: 8px;
}

.step-content h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.step-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #cfcfcf;
    max-width: 650px;
    margin: 0;
}


.process-step:hover h4 {
    color: #c89b3c;
}

.call-btn {
    display: none;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.call-btn i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #c89b3c;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s ease;
}

.call-btn:hover {
    color: #fff;
}

.call-btn:hover i {
    transform: rotate(-15deg);
}


.award-section {
    padding: 80px 00;
    background: #1f1f1f;
    color: #fff;
}

.award-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c39751;
    font-weight: 500;
}

.award-title {
    font-size: 48px;
    font-weight: 400;
    margin: 15px 0;
}

.award-desc {
    color: #cfcfcf;
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.9;
}

.award-card {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    overflow: hidden;
    transition: .3s;
    height: 100%;
}

.award-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #fff;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.award-info {
    padding: 20px;
    text-align: center;
}

.award-info h5 {
    color: #c09550;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 400;
}

.award-info span {
    color: #fff;
    display: block;
    line-height: 1.7;
    font-size: 15px;
}

.award-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.award-card-link:hover {
    color: inherit;
}

.award-card:hover {
    transform: translateY(-8px);
}





/*=========================
      Reel Slider
=========================*/

.reel-card{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #111;
    cursor: pointer;
}

.reel-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s ease;
}

.reel-card:hover .reel-video{
    transform: scale(1.04);
}

.reel-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.25) 45%,
        rgba(0,0,0,0) 100%
    );
    pointer-events: none;
}

.reel-content{
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #fff;
    z-index: 2;
}

.reel-content span{
    display: inline-block;
    font-size: 13px;
    color: #c79a52;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reel-content h3{
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.swiper-slide{
    height: auto;
}

.reelSlider{
    padding-bottom: 20px;
}

/* Hover */

.reel-card::after{
    content:"";
    position:absolute;
    inset:0;
    border:2px solid transparent;
    border-radius:20px;
    transition:.35s;
}

.reel-card:hover::after{
    border-color:#c79a52;
}


/* ==============================
   THANK YOU SECTION
============================== */

.thank-you-section {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 60px 20px;
}

/* Background */

.thank-you-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(10, 10, 10, 0.78),
            rgba(10, 10, 10, 0.90)
        ),
        url("img/bg.webp") center center / cover no-repeat;

    z-index: 0;
}

/* Decorative Circle */

.thank-you-section::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(199, 154, 82, 0.18);

    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 0;
}

/* ==============================
   CARD
============================== */

.thank-you-card {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 760px;

    padding: 70px 50px;

    text-align: center;

    background: rgba(15, 15, 15, 0.72);

    border: 1px solid rgba(199, 154, 82, 0.35);

    backdrop-filter: blur(8px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);
}

/* ==============================
   LOGO
============================== */

.thank-you-logo {
    margin-bottom: 45px;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #fff;
}

.thank-you-logo em {
    color:#c79a52;
    font-style: italic;
}

/* ==============================
   SUCCESS ICON
============================== */

.success-icon {
    width: 76px;
    height: 76px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #c79a52;

    border-radius: 50%;

    color: #c79a52;

    font-size: 32px;
}

/* ==============================
   EYEBROW
============================== */

.thank-you-eyebrow {
    display: block;

    margin-bottom: 16px;

    color: #c79a52;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}

/* ==============================
   MAIN HEADING
============================== */

.thank-you-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 8vw, 96px);
    line-height: 0.9;
    font-weight: 500;
    color: #fff;
}
.thank-you-title em {
    color: #c79a52;
    font-style: italic;
}

/* ==============================
   MESSAGE
============================== */

.thank-you-message {
    max-width: 540px;

    margin: 30px auto 0;

    color: rgba(245, 240, 232, 0.75);

    font-size: 16px;

    line-height: 1.8;
}

/* ==============================
   RETURN BUTTON
============================== */

.return-site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
    padding: 15px 28px;
    border: 1px solid #c79a52;
    color: #212121;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: #c79a52;
}

.return-site-btn i {
    transition: transform 0.3s ease;
}

.return-site-btn:hover {
    background: #c79a52;

    color:#fff;
}

.return-site-btn:hover i {
    transform: translate(3px, -3px);
}

/* ==============================
   COPYRIGHT
============================== */

.thank-you-copyright {
    margin-top: 45px;
    color: rgb(245 240 232 / 84%);
    font-size: 12px;
    letter-spacing: 0.08em;
}

/* ==============================
   MOBILE
============================== */

@media (max-width: 767px) {

    .thank-you-section {
        padding: 30px 15px;
    }

    .thank-you-section::after {
        width: 380px;
        height: 380px;
    }

    .thank-you-card {
        padding: 55px 25px;
    }

    .thank-you-logo {
        font-size: 28px;

        margin-bottom: 35px;
    }

    .success-icon {
        width: 65px;
        height: 65px;

        font-size: 27px;

        margin-bottom: 25px;
    }

    .thank-you-title {
        font-size: 64px;
    }

    .thank-you-message {
        font-size: 14px;
    }

    .return-site-btn {
        padding: 14px 20px;
    }
}


































/*=====================================================
=                 RESPONSIVE CSS                      =
=====================================================*/
@media (max-width:992px) {
    .chf {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .call-btn {
        display: inline-flex;
    }
        .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    width: 31.5%;
}
}

@media (max-width:991px) {

    .hero-title {
        font-size: 42px;
    }

    .about-section {

        padding: 90px 0;

    }

    .about-title {

        font-size: 48px;

    }

    .experience-badge {

        display: none;

    }

    .portfolio-section {

        padding: 90px 0;

    }

    .portfolio-title {

        font-size: 48px;

    }

    .portfolio-filter {

        justify-content: flex-start;

        margin-top: 25px;

    }



    .process-section {
        padding: 90px 0;
    }

    .process-title {
        font-size: 48px;
    }

    .process-description {
        margin: 25px 0 0;
        max-width: 100%;
    }

    .why-section {
        padding: 90px 0;
    }

    .why-title {
        font-size: 48px;
    }

    .why-grid>div:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, .10);
    }

    .why-grid>div:nth-child(2n) {
        border-right: none;
    }

    .reels-section {

        padding: 90px 0;

    }

    .reels-title {

        font-size: 48px;

    }

    .reels-slider {

        padding: 0 25px 25px;

    }

    .reel-card {

        flex: 0 0 300px;

    }

    .video-section {
        padding: 80px 0;
    }

    .heading {
        font-size: 42px;
    }

    .section-heading {

        font-size: 42px;

    }

    .section-heading {

        font-size: 42px;

    }

    .faq-title {

        font-size: 22px;

    }

    .section-heading {

        font-size: 42px;

    }

    .contact-form {

        padding: 35px;

    }

    .footer-logo {

        font-size: 44px;

    }

    .nav-menu {
        gap: 24px;
    }

    .about-content p {
        max-width: 100%;
    }

    .process-wrapper {
        max-width: 100%;
    }

    .creative-process h2 {
        font-size: 38px;
    }

    .process-wrapper::before {
        left: 34px;
    }

    .process-step {
        grid-template-columns: 70px 1fr;
        gap: 25px;
    }

    .step-number {
        display: none;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 24px;
    }

    .step-content h4 {
        font-size: 28px;
    }

    .step-content p {
        font-size: 17px;
    }
 .award-section {
        padding: 80px 0;
    }

    .award-title {
        font-size: 36px;
    }

}

@media (max-width:767px) {
    .hero-description {
        font-size: 16px;
    }

    .hero-section {
        min-height: 650px;
    }

    .hero-content {
        padding-bottom: 70px;
    }

    .hero-title {
        font-size: 56px;
        line-height: 1;
    }

    .hero-description {
        font-size: 15px;
    }

    .floating-sketch {
        display: none;
    }

    .about-section {

        padding: 70px 0;

    }

    .about-title {

        font-size: 38px;

    }

    .about-content p {

        font-size: 15px;

    }

    .about-stats {

        margin-top: 40px;

    }

    .about-stats h3 {

        font-size: 36px;

    }

    .about-stats span {

        font-size: 10px;

        letter-spacing: 2px;

    }

    .portfolio-section {

        padding: 70px 0;

    }

    .portfolio-title {

        font-size: 38px;

    }

    .portfolio-grid {

        grid-template-columns: repeat(2, 1fr);

        grid-auto-rows: 220px;

        gap: 15px;

    }

    .portfolio-overlay {

        padding: 20px;

    }

    .portfolio-overlay h3 {

        font-size: 26px;

    }


    .process-section {
        padding: 70px 0;
    }

    .process-title {
        font-size: 38px;
    }

    .process-card {
        padding: 28px;
    }

    .process-number {
        font-size: 46px;
    }

    .process-card h3 {
        font-size: 28px;
    }

    .process-card p {
        font-size: 14px;
    }

    .why-section {
        padding: 70px 0;
    }

    .why-title {
        font-size: 38px;
    }

    .why-card {
        padding: 30px;
    }

    .why-card h3 {
        font-size: 28px;
    }

    .why-grid>div {
        border-right: none !important;
    }

    .reels-section {

        padding: 70px 0;

    }

    .reels-title {

        font-size: 38px;

    }

    .reels-slider {

        padding: 0 15px 20px;

        gap: 15px;

    }

    .reel-card {

        flex: 0 0 260px;

    }

    .play-btn {

        width: 50px;
        height: 50px;

    }

    .reel-content h3 {

        font-size: 24px;

    }

    .heading {
        font-size: 34px;
    }

    .video-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }

    .stat-number {
        font-size: 34px;
    }

    .section-heading {

        font-size: 34px;

    }

    .testimonial-card {

        padding: 30px;

    }

    .testimonial-card p {

        font-size: 18px;

    }

    .faq-section {

        padding: 80px 0;

    }

    .section-heading {

        font-size: 34px;

    }

    .faq-number {

        width: 35px;
        font-size: 18px;

    }

    .faq-title {

        font-size: 19px;

    }

    .custom-accordion .accordion-body {

        padding-left: 35px;

    }

    .section-heading {

        font-size: 34px;

    }

    .contact-form {
        padding: 25px;
        margin-top: 60px;
    }

    .btn-gold {

        width: 100%;

    }

    .footer-section {

        padding: 70px 0 30px;

    }

    .footer-logo {

        font-size: 34px;

    }

    .footer-bottom {

        flex-direction: column;
        text-align: center;

    }

    .testimonialSwiper {
        overflow-y: hidden !important;
    }

    .reelsSwiper {

        overflow-y: hidden !important;
    }

    .feature-badges {
        justify-content: center;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }

    .creative-process {
        padding: 70px 0;
    }

    .creative-process h2 {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 50px;
    }

    .process-wrapper::before {
        left: 29px;
    }

    .process-step {
        gap: 18px;
        margin-bottom: 45px;
    }

    .step-icon {
        width: 58px;
        height: 58px;
    }

    .step-icon i {
        font-size: 22px;
    }

    .step-content h4 {
        font-size: 22px;
    }

    .step-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-section {
        height: auto;
        padding: 65px 0 50px 0;
    }

    .hero-eyebrow {
        letter-spacing: 3px;
    }

    .about-stats .col-lg-3 {
        margin-bottom: 24px !important;
    }

    .award-title {
        font-size: 30px;
    }

    .award-desc {
        font-size: 15px;
    }

    .award-info h5 {
        font-size: 20px;
    }
    .portfolio-item {
    width: 47.5%;
}
}


@media (max-width:480px) {
    .logo-title {
        font-size: 20px;
    }

    .call-btn span {
        font-size: 14px;
    }

    .call-btn {
        gap: 4px;
    }

    .call-btn i {
        width: 29px;
        height: 29px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-eyebrow {
        letter-spacing: 1px;
    }

    .process-wrapper::before {
        bottom: 70px;
    }
        .portfolio-item {
    width: 47.5%;
}
}











@media(max-width:991px){

    .reel-content{
        left:15px;
        right:15px;
        bottom:15px;
    }

    .reel-content h3{
        font-size:18px;
    }

    .reel-content span{
        font-size:12px;
    }

}

@media(max-width:576px){

    .reel-card{
        border-radius:15px;
    }

    .reel-content h3{
        font-size:16px;
    }

}