/* ===========================================================
   KOROTSAK.GR
   STYLE.CSS
   PART 1
===========================================================*/

/* ===========================================================
   RESET
===========================================================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    background:#f6f8fb;

    color:#2d2d2d;

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    transition:.30s;

}

button{

    font-family:inherit;

}


/* ===========================================================
   ROOT COLORS
===========================================================*/

:root{

    --white:#ffffff;

    --background:#f6f8fb;

    --section:#ffffff;

    --text:#2d2d2d;

    --light:#6d6d6d;

    --blue:#295c9f;

    --gold:#d4af37;

    --goldHover:#e2bd4d;

    --border:#ececec;

    --shadow:

        0 12px 35px rgba(0,0,0,.08);

}


/* ===========================================================
   GENERAL
===========================================================*/

section{

    max-width:1300px;

    margin:50px auto;

    padding:80px;

    background:var(--section);

    border-radius:22px;

    box-shadow:var(--shadow);

    opacity:0;

    transform:translateY(30px);

    transition:.7s;

}

section.show{

    opacity:1;

    transform:none;

}

h1{

    font-size:56px;

    line-height:1.1;

    font-weight:700;

}

h2{

    font-size:42px;

    margin-bottom:20px;

}

h3{

    font-size:28px;

}

p{

    color:var(--light);

    font-size:17px;

}


/* ===========================================================
   NAVBAR
===========================================================*/

.navbar{

    position:fixed;

    top:18px;

    left:50%;

    transform:translateX(-50%);

    width:94%;

    max-width:1320px;

    height:76px;

    padding:0 30px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(18px);

    border:1px solid rgba(0,0,0,.05);

    border-radius:18px;

    box-shadow:

        0 8px 30px rgba(0,0,0,.08);

    z-index:99999;

}

.branding{

    display:flex;

    align-items:center;

}

.branding img{

    height:48px;

    transition:.35s;

}

.branding img:hover{

    transform:scale(1.04);

}


/* ===========================================================
   HAMBURGER
===========================================================*/

.hamburger{

    width:50px;

    height:50px;

    border:none;

    border-radius:12px;

    background:#f3f5f7;

    color:#333;

    font-size:24px;

    cursor:pointer;

    transition:.30s;

}

.hamburger:hover{

    background:var(--gold);

    color:#111;

}


/* ===========================================================
   MENU
===========================================================*/

.menu{

    position:absolute;

    top:68px;

    right:0;

    display:none;

    flex-direction:column;

    min-width:220px;

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:

        0 15px 40px rgba(0,0,0,.15);

}

.menu.show{

    display:flex;

}

.menu a{

    padding:16px 22px;

    color:#444;

    font-weight:500;

    border-bottom:1px solid #efefef;

}

.menu a:last-child{

    border-bottom:none;

}

.menu a:hover{

    background:var(--gold);

    color:#111;

}


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

.hero-section{

    position:relative;

    height:100vh;

    max-width:100%;

    margin:0;

    padding:0;

    overflow:hidden;

    border-radius:0;

    box-shadow:none;

    background:none;

}

.carousel{

    width:100vw;

    height:100vh;

    margin-left:calc(50% - 50vw);

    position:relative;

    overflow:hidden;

}

.carousel-image,
.carousel video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 1s;

}

.carousel-image.active,
.carousel video.active{

    opacity:1;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        to right,

        rgba(14,33,59,.55),

        rgba(14,33,59,.18)

    );

    z-index:5;

}

.hero-content{

    position:absolute;

    left:8%;

    top:50%;

    transform:translateY(-50%);

    z-index:10;

    max-width:650px;

    color:#fff;

}

.hero-subtitle{

    display:inline-block;

    margin-bottom:20px;

    color:var(--gold);

    letter-spacing:4px;

    font-size:14px;

}

.hero-content h1{

    color:#fff;

    font-size:74px;

    margin-bottom:25px;

}

.hero-content p{

    color:#fff;

    font-size:20px;

    max-width:600px;

    margin-bottom:40px;

}


/* ===========================================================
   BUTTONS
===========================================================*/

.btn,
.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:none;

    border-radius:60px;

    cursor:pointer;

    font-weight:600;

    transition:.30s;

}

.btn-primary,
.hero-btn-primary{

    background:var(--gold);

    color:#111;

}

.btn-primary:hover,
.hero-btn-primary:hover{

    background:var(--goldHover);

    transform:translateY(-3px);

}

.btn-secondary,
.hero-btn-secondary{

    background:var(--blue);

    color:#fff;

}

.btn-secondary:hover,
.hero-btn-secondary:hover{

    background:#3672bd;

    transform:translateY(-3px);

}

/* ===========================================================
   PART 2
   SERVICES • CARDS • TITLES • TESTIMONIALS
===========================================================*/


/* ===========================================================
   SECTION TITLE
===========================================================*/

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-title span{

    display:inline-block;

    color:var(--gold);

    font-size:14px;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-weight:600;

}

.section-title h2{

    font-size:52px;

    color:var(--text);

    margin-bottom:20px;

}

.section-title p{

    color:var(--light);

    font-size:18px;

    line-height:1.9;

}


/* ===========================================================
   SERVICES
===========================================================*/

.services-section{

    background:transparent;

    box-shadow:none;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}


/* ===========================================================
   SERVICE CARD
===========================================================*/

.service-card{

    position:relative;

    overflow:hidden;

    min-height:430px;

    border-radius:24px;

    background:#fff;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        box-shadow .45s ease;

}

.service-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 28px 65px rgba(0,0,0,.16);

}

.service-card > img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    transform:scale(1);

    transition:
        transform 1.1s cubic-bezier(.16,1,.3,1),
        filter .8s ease;

}

.service-card:hover > img{

    transform:scale(1.075);

    filter:
        brightness(.72)
        saturate(1.08);

}


/* ===========================================================
   IMAGE OVERLAY
===========================================================*/

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    z-index:2;

    background:
        linear-gradient(
            to top,
            rgba(8,22,38,.90) 0%,
            rgba(8,22,38,.44) 48%,
            rgba(8,22,38,.08) 100%
        );

    opacity:.88;

    transition:
        opacity .8s ease,
        background .8s ease;

}

.service-card:hover::before{

    opacity:.96;

    background:
        linear-gradient(
            to top,
            rgba(8,22,38,.94) 0%,
            rgba(8,22,38,.52) 55%,
            rgba(8,22,38,.12) 100%
        );

}


/* ===========================================================
   HOVER ICON
===========================================================*/

.service-hover-icon{

    position:absolute;

    left:50%;
    top:50%;

    width:150px;
    height:150px;

    display:flex;

    align-items:center;
    justify-content:center;

    z-index:4;

    transform:
        translate(-50%,-44%)
        scale(.65);

    opacity:0;

    pointer-events:none;

    transition:
        opacity .6s ease,
        transform .8s cubic-bezier(.16,1,.3,1);

}

.service-hover-icon::before{

    content:"";

    width:112px;
    height:112px;

    border:2px solid rgba(255,255,255,.78);

    border-radius:50%;

    transform:scale(.72);

    transition:
        transform .8s cubic-bezier(.16,1,.3,1),
        border-color .5s ease;

}

.service-hover-icon::after{

    position:absolute;

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    font-size:52px;

    color:#fff;

    opacity:.96;

    transform:scale(.72);

    transition:
        transform .8s cubic-bezier(.16,1,.3,1);

}


/* ===========================================================
   SERVICE ICONS
===========================================================*/

.service-card:nth-child(1)
.service-hover-icon::after{

    content:"\f030";

}

.service-card:nth-child(2)
.service-hover-icon::after{

    content:"\f53f";

}

.service-card:nth-child(3)
.service-hover-icon::after{

    content:"\f109";

}

.service-card:nth-child(4)
.service-hover-icon::after{

    content:"\f1ad";

}


/* ===========================================================
   HOVER
===========================================================*/

.service-card:hover .service-hover-icon{

    opacity:1;

    transform:
        translate(-50%,-50%)
        scale(1);

}

.service-card:hover .service-hover-icon::before{

    transform:scale(1);

    border-color:rgba(255,255,255,.92);

}

.service-card:hover .service-hover-icon::after{

    transform:scale(1);

}


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

.service-content{

    position:absolute;

    left:35px;
    right:35px;
    bottom:35px;

    z-index:5;

    color:#fff;

    transition:
        transform .7s cubic-bezier(.16,1,.3,1);

}

.service-card:hover .service-content{

    transform:translateY(-4px);

}

.service-category{

    display:inline-block;

    margin-bottom:18px;

    color:var(--gold);

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

}

.service-content h3{

    color:#fff;

    font-size:36px;

    line-height:1.15;

    margin-bottom:18px;

}

.service-content p{

    color:rgba(255,255,255,.88);

    font-size:16px;

    line-height:1.8;

    margin-bottom:30px;

}

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-weight:600;

    transition:
        transform .45s ease,
        opacity .45s ease;

}

.service-link i{

    transition:
        transform .45s cubic-bezier(.16,1,.3,1);

}

.service-card:hover .service-link i{

    transform:translateX(7px);

}


/* ===========================================================
   LIGHT SWEEP
===========================================================*/

.service-card::after{

    content:"";

    position:absolute;

    top:-40%;
    left:-90%;

    width:45%;
    height:180%;

    z-index:3;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.12),
            transparent
        );

    transform:
        rotate(18deg)
        translateX(0);

    opacity:0;

    pointer-events:none;

}

.service-card:hover::after{

    opacity:1;

    animation:
        serviceSweep .9s cubic-bezier(.16,1,.3,1) forwards;

}

@keyframes serviceSweep{

    from{

        transform:
            rotate(18deg)
            translateX(0);

    }

    to{

        transform:
            rotate(18deg)
            translateX(620%);

    }

}


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

@media (max-width:768px){

    .service-card{

        min-height:380px;

        transform:none !important;

    }

    .service-card:hover{

        transform:none !important;

    }

    .service-card:hover > img{

        transform:scale(1.04);

    }

    .service-hover-icon{

        width:110px;
        height:110px;

        top:38%;

    }

    .service-hover-icon::before{

        width:82px;
        height:82px;

    }

    .service-hover-icon::after{

        font-size:36px;

    }

    .service-content{

        left:25px;
        right:25px;
        bottom:25px;

    }

    .service-card:hover .service-content{

        transform:none;

    }

}


/* ===========================================================
   SIMPLE CARDS
===========================================================*/

.card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:

        0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}


/* ===========================================================
   TESTIMONIALS
===========================================================*/

.testimonials{

    background:#eef4fa;

    border:none;

    box-shadow:none;

    border-radius:28px;

}

.testimonial-container{

    max-width:1200px;

    margin:auto;

}

.testimonials h2{

    text-align:center;

    font-size:42px;

    color:var(--text);

    margin-bottom:50px;

}

.testimonial-list{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:

        0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.testimonial:hover{

    transform:translateY(-8px);

}

.testimonial p{

    color:#555;

    line-height:1.9;

    margin-bottom:25px;

}

.testimonial span{

    display:block;

    color:var(--blue);

    font-weight:600;

}


/* ===========================================================
   FADE ANIMATION
===========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.fade-up.show{

    opacity:1;

    transform:none;

}


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

@media(max-width:991px){

    .services-grid{

        grid-template-columns:1fr;

    }

    .testimonial-list{

        grid-template-columns:1fr;

    }

    .section-title h2{

        font-size:40px;

    }

    .service-card{

        min-height:380px;

    }

}

@media(max-width:768px){

    .service-content{

        left:25px;

        right:25px;

        bottom:25px;

    }

    .service-content h3{

        font-size:30px;

    }

    .section-title{

        margin-bottom:40px;

    }

    .section-title h2{

        font-size:34px;

    }

}

/* ==========================================================
   CONTACT
========================================================== */

.contact-section{

    padding:120px 20px;
    background:#f6f8fb;

}

.contact-wrapper{

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-info{

    text-align:left;

}

.contact-info h2{

    font-size:46px;
    color:#1f4e79;
    margin-bottom:20px;

}

.contact-info p{

    color:#666;
    line-height:1.9;
    margin-bottom:20px;

}

.contact-details{

    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:30px;

}

.contact-details div{

    display:flex;
    align-items:center;
    gap:12px;

    font-size:16px;
    color:#444;

}

.contact-details i{

    color:#d4af37;
    width:22px;
    text-align:center;

}

.contact-form{

    background:#fff;

    border-radius:22px;

    padding:40px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px;

    margin-bottom:18px;

    border:1px solid #ddd;

    border-radius:12px;

    background:#fff;

    color:#333;

    font-size:15px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#d4af37;

    outline:none;

    box-shadow:0 0 0 4px rgba(212,175,55,.15);

}

.contact-form textarea{

    min-height:170px;

    resize:vertical;

}

.contact-form button{

    width:100%;

}


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

footer{

    background:#ffffff;

    border-top:1px solid #ececec;

    padding:60px 20px 35px;

}

.footer-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;

}

.footer-brand img{

    height:48px;

    margin-bottom:20px;

}

.footer-brand p{

    color:#666;

    line-height:1.8;

}

.footer-links h4,
.footer-social h4{

    color:#1f4e79;

    margin-bottom:20px;

}

.footer-links a{

    display:block;

    color:#666;

    margin-bottom:12px;

}

.footer-links a:hover{

    color:#d4af37;

}

.footer-social a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#f5f5f5;

    color:#1f4e79;

    margin-right:10px;

    transition:.35s;

}

.footer-social a:hover{

    background:#d4af37;

    color:#111;

    transform:translateY(-3px);

}

.footer-copy{

    text-align:center;

    margin-top:50px;

    color:#888;

    font-size:14px;

}


/* ==========================================================
   SCROLL BUTTON
========================================================== */

#scrollUp{

    width:54px;

    height:54px;

    border-radius:50%;

    border:none;

    background:#1f4e79;

    color:#fff;

    font-size:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.20);

    transition:.35s;

}

#scrollUp:hover{

    background:#d4af37;

    color:#111;

    transform:translateY(-4px);

}


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

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.fade-up.show{

    opacity:1;

    transform:none;

}


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

@media(max-width:991px){

.hero-content h1{

font-size:48px;

}

.hero-content p{

font-size:18px;

}

.contact-wrapper{

grid-template-columns:1fr;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-social{

justify-content:center;

}

}


@media(max-width:768px){

section{

padding:80px 20px;

}

.hero-buttons{

flex-direction:column;

}

.hero-btn{

width:100%;

text-align:center;

}

.photo-buttons{

flex-direction:column;

}

.photo-buttons .btn{

width:100%;

}

.services-grid{

grid-template-columns:1fr;

}

.service-card{

min-height:380px;

}

.section-title h2{

font-size:34px;

}

.hero-content{

left:20px;

right:20px;

max-width:none;

}

.hero-content h1{

font-size:38px;

}

}


@media(max-width:480px){

.hero-content h1{

font-size:30px;

}

.hero-content p{

font-size:16px;

}

.service-content h3{

font-size:28px;

}

.section-title h2{

font-size:30px;

}

}

/* ===========================================================
   PHOTO BOOKING MODAL
=========================================================== */

.photo-modal {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px 20px;

    background: rgba(15, 28, 45, 0.72);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index: 999999;

    overflow-y: auto;

}

.photo-modal.show {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


/* ===========================================================
   MODAL BOX
=========================================================== */

.photo-modal-box {

    position: relative;

    width: 100%;

    max-width: 850px;

    max-height: calc(100vh - 60px);

    overflow-y: auto;

    padding: 45px;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
        0 30px 100px rgba(0,0,0,.25);

    transform: translateY(25px) scale(.98);

    transition:
        transform .35s ease;

}

.photo-modal.show .photo-modal-box {

    transform: translateY(0) scale(1);

}


/* ===========================================================
   CLOSE
=========================================================== */

.modal-close {

    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #f3f5f7;

    color: #333;

    font-size: 18px;

    cursor: pointer;

    transition: .25s;

    z-index: 10;

}

.modal-close:hover {

    background: var(--gold);

    color: #111;

    transform: rotate(90deg);

}


/* ===========================================================
   MODAL TYPOGRAPHY
=========================================================== */

.modal-label {

    display: inline-block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

}

.photo-modal-box h2 {

    margin-bottom: 12px;

    color: var(--text);

}

.modal-subtitle {

    margin-bottom: 30px;

    color: var(--light);

    font-size: 16px;

}


/* ===========================================================
   PHOTO TYPE GRID
=========================================================== */

.photo-types {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}


/* ===========================================================
   PHOTO CARD
=========================================================== */

.photo-card {

    position: relative;

    min-height: 175px;

    padding: 25px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5e9ee;

    border-radius: 18px;

    cursor: pointer;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}

.photo-card:hover {

    transform: translateY(-6px);

    border-color: var(--gold);

    box-shadow:
        0 15px 35px rgba(0,0,0,.10);

}

.photo-card i {

    margin-bottom: 15px;

    font-size: 38px;

    color: var(--gold);

}

.photo-card h3 {

    margin-bottom: 8px;

    color: var(--text);

    font-size: 20px;

}

.photo-card p {

    color: var(--light);

    font-size: 13px;

    line-height: 1.5;

}


/* ===========================================================
   SELECTED PHOTO CARD
=========================================================== */

.photo-card.active {

    background: var(--gold);

    border-color: var(--gold);

    box-shadow:
        0 15px 35px rgba(212,175,55,.30);

    transform: translateY(-4px);

}

.photo-card.active i,
.photo-card.active h3,
.photo-card.active p {

    color: #111;

}


/* ===========================================================
   BOOKING FORM
=========================================================== */

.booking-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 5px;

}

#bookingStep2 input,
#bookingStep2 textarea {

    width: 100%;

    padding: 15px 16px;

    border: 1px solid #dde2e7;

    border-radius: 12px;

    background: #f9fafb;

    color: #333;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition: .25s;

}

#bookingStep2 input:focus,
#bookingStep2 textarea:focus {

    background: #fff;

    border-color: var(--gold);

    box-shadow:
        0 0 0 4px rgba(212,175,55,.12);

}

#bookingStep2 textarea {

    min-height: 150px;

    margin-top: 15px;

    resize: vertical;

}


/* ===========================================================
   BOOKING BUTTONS
=========================================================== */

.photo-buttons {

    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 15px;

    margin-top: 25px;

}

.photo-buttons .btn {

    width: auto;

}


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

@media (max-width: 900px) {

    .photo-modal-box {

        max-width: 700px;

        padding: 35px 25px;

    }

    .photo-types {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 600px) {

    .photo-modal {

        padding: 15px;

        align-items: flex-start;

    }

    .photo-modal-box {

        margin-top: 20px;

        max-height: calc(100vh - 40px);

        padding: 30px 18px 25px;

        border-radius: 20px;

    }

    .photo-types {

        grid-template-columns: 1fr;

        gap: 12px;

    }

    .photo-card {

        min-height: 135px;

    }

    .booking-grid {

        grid-template-columns: 1fr;

    }

    .photo-buttons {

        flex-direction: column;

    }

    .photo-buttons .btn {

        width: 100%;

    }

}

/* ==========================================================
   PHOTO PORTFOLIO GRID
========================================================== */

.portfolio-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


.portfolio-item {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.portfolio-item:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.14);
}


.portfolio-item > .gallery-link {
    position: relative;

    display: block;

    width: 100%;

    height: 320px;

    overflow: hidden;
}


.portfolio-item img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position: center;

    border-radius: 0;

    margin: 0;

    box-shadow: none;

    transition:
        transform .7s ease;
}


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


/* ==========================================================
   PORTFOLIO OVERLAY
========================================================== */

.portfolio-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(10,25,40,.82),
            rgba(10,25,40,.15),
            rgba(10,25,40,0)
        );

    opacity: 0;

    transition:
        opacity .35s ease;
}


.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


.portfolio-info {
    width: 100%;

    color: #ffffff;
}


.portfolio-info span {
    display: block;

    margin-bottom: 6px;

    color: #d6a84f;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.portfolio-info h3 {
    margin: 0;

    color: #ffffff;

    font-size: 22px;

    line-height: 1.2;
}


.portfolio-info i {
    position: absolute;

    right: 25px;
    bottom: 25px;

    font-size: 20px;

    color: #ffffff;
}


/* ==========================================================
   PORTFOLIO DESCRIPTION
========================================================== */

.portfolio-description {
    padding: 15px 18px;

    color: #707070;

    font-size: 14px;

    line-height: 1.6;

    background: #ffffff;
}


/* ==========================================================
   EMPTY GALLERY
========================================================== */

.empty-gallery {
    max-width: 600px;

    margin: 40px auto;

    padding: 60px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5e9ee;

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.06);
}


.empty-gallery i {
    margin-bottom: 20px;

    font-size: 48px;

    color: #d6a84f;
}


.empty-gallery h3 {
    margin-bottom: 10px;

    color: #303030;
}


.empty-gallery p {
    color: #707070;
}


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

@media (max-width: 1000px) {

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

}


@media (max-width: 650px) {

    .portfolio-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .portfolio-item > .gallery-link {
        height: 260px;
    }

}

/* ==========================================================
   PHOTO LIGHTBOX
========================================================== */

.photo-lightbox {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(8, 20, 32, 0.92);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .30s ease,
        visibility .30s ease;

    z-index: 1000000;
}

.photo-lightbox.show {

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


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

.photo-lightbox-content {

    position: relative;

    width: auto;
    max-width: 92vw;
    max-height: 90vh;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}


.photo-lightbox-content img {

    display: block;

    width: auto;
    height: auto;

    max-width: 92vw;
    max-height: 82vh;

    object-fit: contain;

    border-radius: 12px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.45);
}


/* ==========================================================
   TITLE
========================================================== */

.photo-lightbox-title {

    margin-top: 14px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 500;

    letter-spacing: .5px;
}


/* ==========================================================
   CLOSE
========================================================== */

.photo-lightbox-close {

    position: absolute;

    top: 25px;
    right: 25px;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    color: #ffffff;

    font-size: 20px;

    cursor: pointer;

    z-index: 10;

    transition: .25s ease;
}

.photo-lightbox-close:hover {

    background: #d6a84f;

    color: #111;

    transform: rotate(90deg);
}


/* ==========================================================
   PREVIOUS / NEXT
========================================================== */

.photo-lightbox-prev,
.photo-lightbox-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

    z-index: 10;

    transition: .25s ease;
}


.photo-lightbox-prev {

    left: 25px;

}


.photo-lightbox-next {

    right: 25px;

}


.photo-lightbox-prev:hover,
.photo-lightbox-next:hover {

    background: #d6a84f;

    color: #111;

}


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

@media (max-width: 700px) {

    .photo-lightbox {

        padding: 15px;

    }

    .photo-lightbox-content {

        max-width: 100%;
    }

    .photo-lightbox-content img {

        max-width: 100%;

        max-height: 78vh;

        border-radius: 8px;

    }

    .photo-lightbox-prev,
    .photo-lightbox-next {

        width: 42px;
        height: 42px;

        font-size: 16px;

    }

    .photo-lightbox-prev {

        left: 10px;

    }

    .photo-lightbox-next {

        right: 10px;

    }

    .photo-lightbox-close {

        top: 10px;
        right: 10px;

        width: 42px;
        height: 42px;

    }

}

/* ==========================================================
   GRAPHIC DESIGN - MASONRY GALLERY
========================================================== */

.portfolio-grid {
    display: block !important;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    column-count: 3;
    column-gap: 24px;
}


/* ==========================================================
   CARD
========================================================== */

.portfolio-grid .portfolio-item {
    display: inline-block !important;

    width: 100%;

    margin: 0 0 24px;

    vertical-align: top;

    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;

    background: #000;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.portfolio-grid .portfolio-item:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.16);
}


/* ==========================================================
   IMAGE LINK
========================================================== */

.portfolio-grid .graphic-gallery-link {
    position: relative;

    display: block;

    width: 100%;

    background: #000;

    overflow: hidden;

    line-height: 0;
}


/* ==========================================================
   IMAGE
========================================================== */

.portfolio-grid .graphic-gallery-link img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    margin: 0;

    padding: 0;

    object-fit: contain;

    border: 0;
    border-radius: 0;

    box-shadow: none;

    transition:
        transform 0.5s ease;
}


.portfolio-grid .portfolio-item:hover
.graphic-gallery-link img {
    transform: scale(1.025);
}


/* ==========================================================
   OVERLAY
========================================================== */

.portfolio-grid .portfolio-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 22px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.16) 58%,
            rgba(0, 0, 0, 0)
        );

    opacity: 0;

    z-index: 2;

    transition:
        opacity 0.3s ease;
}


.portfolio-grid .portfolio-item:hover
.portfolio-overlay {
    opacity: 1;
}


/* ==========================================================
   OVERLAY INFO
========================================================== */

.portfolio-grid .portfolio-info {
    position: relative;

    width: 100%;

    color: #fff;
}


.portfolio-grid .portfolio-info span {
    display: block;

    margin-bottom: 6px;

    color: #d6a84f;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.8px;

    line-height: 1.3;

    text-transform: uppercase;
}


.portfolio-grid .portfolio-info h3 {
    margin: 0;

    padding: 0;

    max-width: calc(100% - 45px);

    color: #fff;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.25;
}


.portfolio-grid .portfolio-info i {
    position: absolute;

    right: 0;
    bottom: 0;

    color: #fff;

    font-size: 18px;
}


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

@media (max-width: 1000px) {

    .portfolio-grid {
        column-count: 2;
        column-gap: 20px;
    }

    .portfolio-grid .portfolio-item {
        margin-bottom: 20px;
    }

}


@media (max-width: 650px) {

    .portfolio-grid {
        column-count: 1;
        column-gap: 0;
    }

    .portfolio-grid .portfolio-item {
        margin-bottom: 18px;
        border-radius: 14px;
    }

    .portfolio-grid .portfolio-overlay {
        padding: 18px;
    }

    .portfolio-grid .portfolio-info h3 {
        font-size: 18px;
    }

}

.page-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* ==========================================================
   SCROLL TO TOP
========================================================== */

#scrollUp{

    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 54px;
    height: 54px;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #1f4e79;

    color: #fff;

    font-size: 20px;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(0,0,0,.20);

    z-index: 99998;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}


#scrollUp:hover{

    background: #d4af37;

    color: #111;

    transform: translateY(-4px);

}


@media (max-width: 768px){

    #scrollUp{

        right: 18px;
        bottom: 18px;

        width: 48px;
        height: 48px;

        font-size: 18px;

    }

}

/* ==========================================================
   PARTNERS
========================================================== */

.partners-section {
    background: #ffffff;
}

.partners-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    align-items: center;

    gap: 24px;
}


/* ==========================================================
   PARTNER CARD
========================================================== */

.partner-logo {
    width: 180px;
    height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.partner-logo img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: .72;

    transition:
        filter .3s ease,
        opacity .3s ease,
        transform .3s ease;
}


.partner-logo:hover {

    transform: translateY(-5px);

    border-color: #d4af37;

    box-shadow:
        0 16px 35px rgba(0,0,0,.10);
}


.partner-logo:hover img {

    filter: grayscale(0);

    opacity: 1;

    transform: scale(1.04);
}


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

@media (max-width: 800px) {

    .partners-grid {
        gap: 18px;
    }

    .partner-logo {
        width: 170px;
        height: 120px;
    }

}


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

@media (max-width: 550px) {

    .partners-grid {
        flex-direction: column;
        gap: 18px;
    }

    .partner-logo {
        width: 100%;
        max-width: 280px;
        height: 110px;
    }

    .partner-logo img {
        width: 100%;
        height: 100%;
    }

}
/* ==========================================================
   HERO BUTTONS - DESKTOP / MOBILE
========================================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}


.hero-buttons .hero-btn {
    flex: 0 0 auto;
    white-space: nowrap;
}


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

@media (max-width: 768px) {

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .hero-buttons .hero-btn {
        width: 100%;
        white-space: normal;
    }

}

@media (min-width: 769px) {

    .hero-content {
        max-width: 1000px;
    }

}