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

:root {
    --blue: #1f5ea9;
    --red: #ef2026;
    --deep-blue: #03386b;
    --white: #ffffff;
}


/* ================= GLOBAL ================= */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

a{
    text-decoration:none;
}

body {
    overflow-x: hidden;
}

/* Container */
.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* Top Bar */
.top-bar {
    background: #1f5ea9;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-right span {
    white-space: nowrap;
}

.top-bar i {
    margin-right: 6px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
}


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

.navbar {
    background: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 100;
    transition: 0.3s ease;
}

.navbar.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    animation: navbarDown 0.35s ease;
}

@keyframes navbarDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 90px;
}


/* ================= NAVIGATION ================= */

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #111;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
}


/* ================= ORDER BUTTON ================= */

.order-btn {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
}

.cart-icon {
    background: var(--red);
    color: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.order-btn span:last-child {
    background: var(--blue);
    color: #fff;
    padding: 18px 30px;
    font-weight: 600;
}


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

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--deep-blue);
}



/* HERO SECTION */
.hero{
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

/* Background Video */

.hero-video{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* Dark Overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(35, 35, 35, 0.60);
    z-index:2;
}

/* Content */

.hero-container{
    position:relative;
    z-index:3;
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:60px 0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(35, 35, 35, 0.60);
    z-index:2;
}



.hero-left{

    width:55%;

    color:#fff;

}


.hero h1{

    font-size:64px;

    line-height:1.2;

    font-weight:700;

    margin-top:90px;

    color:#fff

}

.hero h1 span{

    color:#ef2026;

}




.hero-buttons{
    display: flex;
    gap: 20px;
    margin-top:90px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-whatsapp{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary{
    background: #ef2026;
    color: #fff;
}

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

.btn-whatsapp{
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover{
    background: #1ca851;
    transform: translateY(-3px);
}

.btn-primary i,
.btn-whatsapp i{
    font-size: 18px;
}


@media (max-width:768px){

    .hero-left{
        width:100%;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .btn-primary,
    .btn-whatsapp{
        width:220px;
    }

}




/* SERVICE GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 180px);
    gap: 12px;
    width: fit-content;
}

/* CARD */
.service-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.7);
    background: #fff;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

/* TITLE */
.service-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-family: Georgia, serif;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.1)
    );
}

/* TABLET */
@media (max-width: 992px) {

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .service-grid {
        grid-template-columns: repeat(2, 160px);
        justify-content: center;
    }

    .service-card img {
        height: 150px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .hero-container {
        display: flex;
        justify-content: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 280px;
    }

    .service-card img {
        height: 200px;
    }

    .service-title {
        font-size: 18px;
    }
}


/* =========================
   CUSTOMIZATION SECTION
========================= */

.customization-section {
    background: #f4f4f4;
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.customization-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT SIDE */

.content-area {
    flex: 1;
    max-width: 550px;
}

.content-area h2 {
    font-size: 48px;
    color: #e62b2b;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-area p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 22px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 10px;
    background: #1d5ea8;
    border-radius: 50%;
}

.feature-list strong {
    display: block;
    color: #222;
    font-size: 16px;
    margin-bottom: 3px;
}

.feature-list span {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* RIGHT SIDE */

.gallery-area {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 520px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 22px;
    border: 2px solid #ff4a4a;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image Heights */

.gallery-item.tall {
    height: 300px;
}

.gallery-item:not(.tall) {
    height: 300px;
}

/* Hover Effect */

.gallery-item img {
    transition: .4s;
}

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

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

@media (max-width: 991px) {

    .customization-section .container {
        flex-direction: column;
        gap: 50px;
    }

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

    .gallery-area {
        width: 100%;
        max-width: 650px;
    }

    .content-area h2 {
        font-size: 40px;
    }
}

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

@media (max-width: 576px) {

    .customization-section {
        padding: 60px 0;
    }

    .content-area h2 {
        font-size: 32px;
        text-align: center;
    }

    .content-area p {
        text-align: center;
    }

    .gallery-area {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.tall {
        height: 240px;
    }

    .feature-list li {
        padding-left: 18px;
    }
}







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

.services-section {
    background: #2f5f89;
    padding: 60px 0 70px;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    color: #e92a2a;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    background: #f5f5f5;
    padding: 25px;
    margin-top: -60px;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

/* CARD */

.service-item {
    display: flex;
    flex-direction: column;
}

/* IMAGE */

.service-image {
    overflow: hidden;
    border-radius: 35px;
    border: 1px solid rgba(255,255,255,.7);
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: .4s;
}

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

/* CONTENT */

.service-content {
    padding: 12px 15px 0;
}

.service-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-content a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-content a span {
    font-size: 26px;
    transition: .3s;
}

.service-content a:hover span {
    transform: translateX(5px);
}

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

@media (max-width: 991px) {

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

    .service-image img {
        height: 300px;
    }

    .section-title {
        font-size: 34px;
    }
}

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

@media (max-width: 576px) {

    .services-section {
        padding: 40px 0 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-image img {
        height: 280px;
    }

    .section-title {
        font-size: 28px;
        padding: 18px;
        margin-bottom: 30px;
    }

    .service-content {
        text-align: center;
    }

    .service-content h3 {
        font-size: 20px;
    }
}



/* ==========================
   PRINTING COMPANY SECTION
========================== */

.printing-company {
    padding: 80px 0;
    background: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    color: #e62424;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* GRID */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */

.stat-card {
    background: #fff;
    border: 2px solid #255a91;
    border-radius: 18px;
    padding: 22px;
    transition: .3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* TOP AREA */

.stat-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.number {
    color: #e62424;
    font-size: 52px;
    line-height: 1;
    font-weight: 300;
    font-family: Georgia, serif;
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f4a57f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

/* CONTENT */

.stat-card h3 {
    color: #e62424;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

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

@media (max-width: 992px) {

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

    .section-title {
        font-size: 38px;
    }

    .stat-card h3 {
        font-size: 24px;
    }
}

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

@media (max-width: 576px) {

    .printing-company {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .number {
        font-size: 40px;
    }

    .icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .stat-card {
        padding: 18px;
    }

    .stat-card h3 {
        font-size: 22px;
    }

    .stat-card p {
        font-size: 14px;
    }
}






/* ============================
   DEVELOP YOUR BRAND SECTION
============================ */

.brand-dev-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.brand-dev-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ============================
   LEFT GALLERY
============================ */

.brand-dev-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.brand-dev-gallery-box {
    overflow: hidden;
    border: 2px solid #ff5a5a;
    
}

.brand-dev-gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.brand-dev-gallery-box:hover img {
    transform: scale(1.05);
}

.brand-dev-tall {
    height: 330px;
}

.brand-dev-small {
    height: 330px;
}

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

.brand-dev-content {
    flex: 1.15;
}

.brand-dev-title {
    font-size: 52px;
    font-weight: 700;
    color: #e62424;
    margin-bottom: 20px;
}

.brand-dev-desc {
    color: #e62424;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 50px;
}

/* ============================
   FEATURES GRID
============================ */

.brand-dev-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 35px;
}

.brand-dev-item {
    transition: 0.3s;
}

.brand-dev-item:hover {
    transform: translateY(-5px);
}

.brand-dev-icon {
    margin-bottom: 15px;
}

.brand-dev-icon i {
    font-size: 50px;
    color: #111;
}

.brand-dev-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.brand-dev-item p {
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

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

@media (max-width: 1024px) {

    .brand-dev-wrapper {
        flex-direction: column;
    }

    .brand-dev-content {
        width: 100%;
    }

    .brand-dev-title {
        font-size: 42px;
    }

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

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

@media (max-width: 768px) {

    .brand-dev-title {
        font-size: 36px;
        text-align: center;
    }

    .brand-dev-desc {
        text-align: center;
    }

    .brand-dev-features {
        gap: 30px;
    }
}

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

@media (max-width: 576px) {

    .brand-dev-section {
        padding: 60px 0;
    }

    .brand-dev-gallery {
        grid-template-columns: 1fr;
    }

    .brand-dev-gallery-box,
    .brand-dev-tall,
    .brand-dev-small {
        height: 300px;
    }

    .brand-dev-title {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .brand-dev-desc {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .brand-dev-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .brand-dev-item {
        text-align: center;
    }

    .brand-dev-icon i {
        font-size: 42px;
    }

    .brand-dev-item h4 {
        font-size: 22px;
    }
}



/* ====================================
   PRINT GALLERY SECTION
==================================== */

.print-gallery-section {
    padding: 70px 0;
    background: #000;
    position: relative;
}

.print-gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/gallery-bg.jpg") center/cover no-repeat;
    opacity: .25;
}

.print-gallery-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}

.print-gallery-heading h2 {
    color: #e52525;
    font-size: 42px;
    font-weight: 700;
}

/* Gallery Grid */

.print-gallery-wrapper {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1300px;
    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(220px, 1fr)
        minmax(280px, 1.15fr)
        minmax(220px, 1fr);

    grid-template-rows:
        180px
        180px
        180px;

    gap: 18px;
}

/* Grid Placement */

.gallery-top-left {
    grid-column: 1;
    grid-row: 1;
}

.gallery-middle-left {
    grid-column: 1;
    grid-row: 2;
}

.gallery-bottom-left {
    grid-column: 1;
    grid-row: 3;
}

.gallery-center {
    grid-column: 2;
    grid-row: 1 / span 3;
}

.gallery-top-right {
    grid-column: 3;
    grid-row: 1;
}

.gallery-middle-right {
    grid-column: 3;
    grid-row: 2;
}

.gallery-bottom-right {
    grid-column: 3;
    grid-row: 3;
}

/* Cards */

.gallery-card {
    overflow: hidden;
    border-radius: 35px;
    border: 2px solid rgba(255,255,255,.9);
    background: #fff;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s ease;
}

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

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

@media (max-width: 991px) {

    .print-gallery-wrapper {

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

        grid-template-rows:
            250px
            250px
            250px
            250px;
    }

    .gallery-center {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .gallery-top-left {
        grid-column: 1;
        grid-row: 2;
    }

    .gallery-top-right {
        grid-column: 2;
        grid-row: 2;
    }

    .gallery-middle-left {
        grid-column: 1;
        grid-row: 3;
    }

    .gallery-middle-right {
        grid-column: 2;
        grid-row: 3;
    }

    .gallery-bottom-left {
        grid-column: 1;
        grid-row: 4;
    }

    .gallery-bottom-right {
        grid-column: 2;
        grid-row: 4;
    }
}

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

@media (max-width: 576px) {

    .print-gallery-section {
        padding: 50px 0;
    }

    .print-gallery-heading h2 {
        font-size: 30px;
    }

    .print-gallery-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .gallery-card,
    .gallery-center,
    .gallery-top-left,
    .gallery-middle-left,
    .gallery-bottom-left,
    .gallery-top-right,
    .gallery-middle-right,
    .gallery-bottom-right {
        grid-column: auto;
        grid-row: auto;
        height: 260px;
    }

    .gallery-card {
        border-radius: 25px;
    }
}






body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

/* =====================================
   TESTIMONIAL SECTION
===================================== */

.testimonial-section {
    width: 100%;
    padding: 60px 0 65px;
    background: #f6f8fd;
    overflow: hidden;
}

.testimonial-heading {
    margin-bottom: 35px;
}


/* SLIDER */

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px 25px;
}

.testimonial-track {
    display: flex;
    gap: 25px;

    transition: transform 0.6s ease;
}


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

.testimonial-card {
    min-width: calc((100% - 50px) / 3);

    position: relative;

    background: #ffffff;

    border-radius: 15px;

    padding: 30px 28px 25px;

    border: 1px solid #e7ebf3;

    box-shadow:
        0 10px 30px rgba(7, 27, 80, 0.08);

    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(7, 27, 80, 0.14);
}


/* QUOTE ICON */

.quote-icon {
    position: absolute;

    right: 25px;
    top: 22px;

    color: #edf0f7;

    font-size: 45px;
}


/* STARS */

.client-stars {
    display: flex;
    gap: 4px;

    color: #ffc107;

    font-size: 12px;

    margin-bottom: 18px;
}


/* REVIEW TEXT */

.testimonial-card > p {
    min-height: 75px;

    position: relative;
    z-index: 2;

    color: #555e72;

    font-size: 12px;
    line-height: 1.8;

    font-style: italic;
}


/* =====================================
   CLIENT INFO
===================================== */

.client-info {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid #edf0f5;
}

.client-info img {
    width: 50px;
    height: 50px;

    object-fit: cover;

    border-radius: 50%;

    border: 3px solid #edf1f8;
}

.client-info h4 {
    color: #081431;

    font-size: 13px;
    font-weight: 800;

    margin-bottom: 4px;
}

.client-info span {
    color: #ed1c2e;

    font-size: 9px;
    font-weight: 600;
}


/* =====================================
   SLIDER DOTS
===================================== */

.testimonial-dots {
    display: flex;
    justify-content: center;

    gap: 8px;

    margin-top: 5px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;
    border-radius: 20px;

    background: #bdc5d5;

    cursor: pointer;

    transition: 0.35s ease;
}

.testimonial-dot.active {
    width: 28px;

    background: #ed1c2e;
}


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

@media (max-width: 900px) {

    .testimonial-card {
        min-width: calc((100% - 25px) / 2);
    }

}


@media (max-width: 600px) {

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .testimonial-track {
        gap: 0;
    }

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

}



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

.footer {
    background:
        linear-gradient(
            110deg,
            #06467f,
            #033664
        );

    color: #fff;

    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;

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

    gap: 35px;
}

.footer-logo img {
    width: 120px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.8;

    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 30px;
    height: 30px;

    background: #fff;
    color: var(--blue);

    border-radius: 50%;

    display: grid;
    place-items: center;

    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--red);
    color: #fff;
}

.footer-column {
    padding-left: 30px;

    border-left:
        1px solid rgba(255, 255, 255, 0.25);
}

.footer-column h3 {
    font-family:
        "Playfair Display",
        serif;

    font-size: 14px;

    margin-bottom: 20px;

    position: relative;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 30px;
    height: 2px;

    background: var(--red);
}

.footer-column a {
    display: block;

    color: #fff;

    font-size: 13px;

    margin-bottom: 11px;

    transition: 0.3s;
}

.footer-column a:hover,
.footer-column .footer-active {
    color: var(--red);
}

.contact-column p {
    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 18px;
}

.contact-column i {
    margin-right: 8px;
}


/* ================= COPYRIGHT ================= */

.copyright {
    border-top:
        1px solid rgba(255, 255, 255, 0.25);

    margin-top: 35px;

    padding-top: 20px;

    text-align: center;

    font-size: 12px;

    color: #ccd9e7;
}

.copyright span {
    color: var(--red);

    margin-left: 15px;
}


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

@media (max-width: 1100px) {

    .nav-links {
        gap: 20px;
    }

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

    .footer-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


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

@media (max-width: 800px) {

    .top-right span {
        display: none;
    }


    /* MOBILE NAV */

    .navbar .container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        order: 3;
    }

    .nav-links {
        width: 100%;

        display: none;

        flex-direction: column;

        align-items: center;

        gap: 0;

        padding: 20px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding: 15px;

        text-align: center;
    }

    .order-btn {
        margin-left: auto;
        margin-right: 15px;
    }


    /* HERO */

    .hero-content {
        flex-direction: column;

        padding: 60px 0;
    }

    .hero-text,
    .hero-collage {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-collage {
        margin-top: 30px;
    } /*


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

@media (max-width: 900px) {

    .final-cta-container {
        flex-direction: column;

        align-items: flex-start;
    }


    .footer-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px;
    }

}


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

@media (max-width: 550px) {

    .final-cta-section {
        padding: 45px 0;
    }


    .final-cta-container {
        max-width: 90%;

        gap: 30px;
    }


    .cta-content h2 {
        font-size: 23px;
    }


    .cta-actions {
        width: 100%;

        flex-direction: column;

        align-items: flex-start;
    }


    .cta-primary {
        width: 100%;

        justify-content: space-between;
    }


    .footer-container {
        max-width: 90%;

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 0;
    }


    .footer-bottom-container {
        max-width: 90%;

        padding: 18px 0;

        flex-direction: column;

        gap: 12px;

        text-align: center;
    }

}

