/* ============================= */
/* GLOBAL */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0b0b0b;
    color: #f5f5f5;
    padding-top: 90px;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: auto;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.btn {
    background: #ff3c3c;
    padding: 14px 28px;
    color: white;
    text-decoration: none;
    border-radius: 999px;
    transition: 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 30px rgba(255, 60, 60, 0.18);
}

.btn:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

/* ============================= */
/* NAVBAR */
/* ============================= */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 18px 0;
    background: rgba(8, 8, 8, 0.82);
    z-index: 1000;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a,
.logo a:link,
.logo a:visited,
.logo a:hover,
.logo a:active,
.navbar .logo a,
.navbar .logo a:visited {
    color: white !important;
    text-decoration: none !important;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 34px;
}

.nav-links li a,
.nav-links li a:visited {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #ff3c3c;
}

/* ============================= */
/* HERO */
/* ============================= */
.hero {
    min-height: 100vh;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.65)),
        linear-gradient(to right, rgba(0,0,0,0.35), rgba(0,0,0,0.15));
    z-index: 1;
}

.hero-overlay {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: transparent;
    text-align: center;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 78px;
    line-height: 1.02;
    letter-spacing: -2px;
    max-width: 900px;
    margin: 0 auto 22px;
    color: #fff;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    max-width: 620px;
    margin: 0 auto 34px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================= */
/* ABOUT */
/* ============================= */
.about {
    background: #101010;
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.about p {
    color: rgba(255,255,255,0.76);
    font-size: 17px;
    max-width: 620px;
}

.about img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

/* ============================= */
/* SERVICES PREVIEW */
/* ============================= */
.services {
    padding: 80px 0;
    background: #0f0f0f;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #222;
}

/* ============================= */
/* PORTFOLIO PREVIEW */
/* ============================= */
.portfolio {
    padding: 80px 0;
    background: #111;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-grid img {
    width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

/* ============================= */
/* PORTFOLIO PAGE */
/* ============================= */
.hero-portfolio {
    min-height: 45vh;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-portfolio::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-portfolio .hero-overlay {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    background: transparent;
}

.hero-portfolio .container {
    position: relative;
    z-index: 2;
}

.portfolio-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.portfolio-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

/* PREMIUM PORTFOLIO CARD */
.portfolio {
    padding: 110px 0;
    background: #0b0b0b;
}

.portfolio-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    gap: 20px;
    flex-wrap: wrap;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.portfolio-card-link {
    text-decoration: none;
    color: inherit;
}

.portfolio-card {
    position: relative;
    background: #121212;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 16px 40px rgba(0,0,0,0.26);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0,0,0,0.34);
}

.portfolio-card img,
.portfolio-card-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.portfolio-card h3,
.editable-portfolio-text,
.editable-gallery-title {
    margin: 0;
    padding: 22px 20px 24px;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.2px;
}

/* ACTIONS */
.portfolio-card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 9999;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-6px);
    transition: 0.25s ease;
}

.portfolio-card:hover .portfolio-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.replace-portfolio-btn,
.delete-btn {
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.78);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.replace-portfolio-btn:hover,
.delete-btn:hover {
    background: #ff3c3c;
    color: white;
}

/* PREMIUM TITLE AREA */
.portfolio-card h3,
.editable-portfolio-text {
    margin: 0;
    padding: 20px 18px 22px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
    border-top: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.2px;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* EDITABLE TITLE */
.editable-portfolio-text[contenteditable="true"] {
    outline: none;
    cursor: text;
}

.editable-portfolio-text[contenteditable="true"]:focus {
    outline: 2px dashed rgba(255, 60, 60, 0.7);
    outline-offset: -8px;
    background: rgba(255,255,255,0.04);
}

/* ============================= */
/* CLIENTS */
/* ============================= */
.clients {
    padding: 80px 0;
    background: #111;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.client-box {
    background: #1a1a1a;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
}

/* ============================= */
/* CTA */
/* ============================= */
.cta {
    padding: 120px 0;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255,60,60,0.94) 0%, rgba(220,45,45,0.94) 100%);
}

.cta h2 {
    margin-bottom: 18px;
    font-size: 52px;
    letter-spacing: -1.2px;
}

.cta p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.88);
    font-size: 18px;
}

/* ============================= */
/* FOOTER */
/* ============================= */
.footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ff3c3c;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 14px;
    color: #888;
}

/* ============================= */
/* LOGIN */
/* ============================= */
.login-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f0f0f;
    padding: 20px;
}

.login-box {
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
    padding: 40px;
    border-radius: 18px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.login-box h2 {
    margin-bottom: 30px;
    font-size: 42px;
    color: white;
}

.login-box input {
    width: 100%;
    padding: 14px 16px;
    margin: 12px 0;
    border: none;
    border-radius: 10px;
    background: #f3f3f3;
    color: #111;
    font-size: 16px;
}

.login-box input:focus {
    outline: 2px solid #ff3c3c;
}

.login-box button {
    width: 100%;
    padding: 14px;
    margin-top: 16px;
    background: #ff3c3c;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.login-box button:hover {
    background: white;
    color: black;
}
/* ============================= */
/* EDITABLE TEXT */
/* ============================= */
.editable-text[contenteditable="true"] {
    outline: none;
    padding: 4px 6px;
    cursor: text;
    display: inline-block;
    background: transparent !important;
}

.editable-text[contenteditable="true"]:focus {
    outline: 2px dashed rgba(255, 60, 60, 0.7);
    background: transparent !important;
}

/* ============================= */
/* EDITABLE IMAGE */
/* ============================= */
.editable-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.editable-image-preview {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.change-image-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    display: none;
}

.editable-image-wrapper:hover .change-image-btn {
    display: inline-block;
}

.hero-image-editor {
    position: absolute;
    top: 120px;
    left: 20px;
    z-index: 1000;
}

.hero-image-editor .change-image-btn {
    display: none;
}

.hero:hover .hero-image-editor .change-image-btn,
.hero-portfolio:hover .hero-image-editor .change-image-btn {
    display: inline-block;
}

/* ============================= */
/* BOOKING FORM */
/* ============================= */
.booking-section {
    position: relative;
    padding: 100px 0;
    background: url('../Images/DSC09221.jpg') center/cover no-repeat;
}

.booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.booking-section .container {
    position: relative;
    z-index: 2;
}

.booking-section h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.booking-section label {
    color: #ccc;
}

.booking-form {
    margin-top: 40px;
    max-width: 800px;
    background: rgba(20, 20, 20, 0.75);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(6px);
}

.booking-form:hover {
    box-shadow: 0 0 30px rgba(255, 60, 60, 0.2);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #1a1a1a;
    color: white;
    font-size: 14px;
}

.booking-form textarea {
    min-height: 120px;
    resize: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: 2px solid #ff3c3c;
}

.booking-btn {
    margin-top: 10px;
}

/* ============================= */
/* PORTFOLIO MANAGER */
/* ============================= */
.portfolio-manager-section {
    padding: 100px 0;
    background: #111;
    min-height: 100vh;
}

.portfolio-upload-form {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.portfolio-upload-form input[type="file"] {
    background: #1a1a1a;
    color: white;
    padding: 12px;
    border-radius: 8px;
    border: none;
}

.portfolio-manager-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-manager-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
}

.portfolio-manager-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.portfolio-manager-card h3 {
    margin-top: 12px;
    text-align: center;
    font-size: 16px;
    color: white;
}

.portfolio-manager-actions {
    margin-top: 15px;
    text-align: center;
}

/* ============================= */
/* SERVICES PAGE */
/* ============================= */
.hero-services {
    min-height: 50vh;
    position: relative;
    background: url('../../Images/service.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-services .hero-overlay {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    background: transparent;
}

.hero-services .container {
    position: relative;
    z-index: 2;
}

.services-page-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-page-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 30px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.service-page-card:hover {
    transform: translateY(-8px);
    background: #222;
}

.service-page-card h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}

.service-page-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-page-card ul li {
    margin-bottom: 12px;
    color: #ddd;
    position: relative;
    padding-left: 22px;
    line-height: 1.6;
}

.service-page-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff3c3c;
    font-weight: bold;
}

.service-page-card .btn {
    margin-top: 10px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    .about-grid,
    .service-grid,
    .portfolio-grid,
    .footer-grid,
    .client-grid,
    .portfolio-manager-grid,
    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 40px;
    }

    .portfolio-card img,
    .portfolio-manager-card img {
        height: auto;
    }

    .service-page-card h2 {
        font-size: 24px;
    }
}
.portfolio-card-link {
    text-decoration: none;
    color: inherit;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.gallery-manager-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-manager-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    padding: 15px;
}

.gallery-manager-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-manager-card h3 {
    margin: 15px 0 8px;
    text-align: center;
}

.gallery-manager-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.create-gallery-form {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.create-gallery-form input {
    flex: 1;
    min-width: 240px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #1a1a1a;
    color: white;
}
.gallery-manager-card h3 {
    margin: 16px 0 8px;
    text-align: center;
    font-size: 18px;
    color: white;
    line-height: 1.4;
}

.gallery-manager-card p {
    text-align: center;
    color: #bbb;
    margin-bottom: 14px;
}

.editable-gallery-title[contenteditable="true"] {
    outline: none;
    cursor: text;
    padding: 6px 10px;
    border-radius: 8px;
}

.editable-gallery-title[contenteditable="true"]:focus {
    outline: 2px dashed rgba(255, 60, 60, 0.7);
    background: rgba(255,255,255,0.04);
}
.services-page-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.create-service-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.create-service-form input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #1a1a1a;
    color: white;
}

.editable-service-text[contenteditable="true"] {
    outline: none;
    cursor: text;
}

.editable-service-text[contenteditable="true"]:focus {
    outline: 2px dashed rgba(255, 60, 60, 0.7);
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
}

@media (max-width: 768px) {
    .create-service-form {
        grid-template-columns: 1fr;
    }
}
.portfolio-card-link {
    text-decoration: none;
    color: inherit;
}
@media (max-width: 992px) {
    .hero h1 {
        font-size: 58px;
    }

    .portfolio-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
    }

    .portfolio-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .section-title,
    .testimonials-intro h2,
    .process-intro h2,
    .about h2,
    .cta h2 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* ============================= */
/* CONTACT PAGE */
/* ============================= */
.hero-contact {
    min-height: 50vh;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-contact .hero-overlay {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    background: transparent;
}

.hero-contact .container {
    position: relative;
    z-index: 2;
}

.contact-options-section {
    padding: 90px 0;
    background: #0f0f0f;
}

.contact-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.contact-intro h2 {
    margin-bottom: 15px;
    font-size: 40px;
}

.contact-intro p {
    color: #ccc;
    line-height: 1.7;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
    transition: 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.contact-method-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.contact-method-card p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-message-box {
    background: #1a1a1a;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-message-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-message-box p {
    color: #ccc;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .contact-intro h2,
    .contact-message-box h3,
    .contact-method-card h3 {
        font-size: 30px;
    }
}
/* ============================= */
/* ADMIN FLOATING BAR */
/* ============================= */
.admin-floating-bar {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.28);
    backdrop-filter: blur(10px);
}

.admin-status {
    font-size: 14px;
    font-weight: 600;
}

.admin-status.on {
    color: #59d98e;
}

.admin-status.off {
    color: #ffb347;
}

.admin-toggle-btn,
.admin-mini-link {
    text-decoration: none;
    color: white;
    background: #ff3c3c;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.admin-mini-link {
    background: #1f1f1f;
    border: 1px solid rgba(255,255,255,0.08);
}

.admin-toggle-btn:hover,
.admin-mini-link:hover {
    opacity: 0.9;
}

/* ============================= */
/* DASHBOARD */
/* ============================= */
.dashboard-section {
    padding: 100px 0;
    background: #0f0f0f;
    min-height: 100vh;
}

.dashboard-header {
    margin-bottom: 35px;
}

.dashboard-header h1 {
    font-size: 54px;
    margin-bottom: 12px;
    color: white;
}

.dashboard-header p {
    color: #bdbdbd;
    font-size: 17px;
    max-width: 720px;
    line-height: 1.7;
}

.dashboard-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}

.dashboard-action-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
    padding: 28px;
    border-radius: 18px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.04);
}

.dashboard-action-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.32);
    background: #202020;
}

.dashboard-action-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.dashboard-action-card p {
    color: #c8c8c8;
    line-height: 1.6;
    font-size: 15px;
}

.logout-card {
    background: linear-gradient(180deg, #2a1313 0%, #1d1010 100%);
}

.dashboard-table-wrapper {
    background: #161616;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.04);
}

.dashboard-table-header {
    margin-bottom: 20px;
}

.dashboard-table-header h2 {
    font-size: 30px;
    color: white;
}

.dashboard-table-scroll {
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.dashboard-table thead th {
    background: #222;
    color: white;
    text-align: left;
    padding: 14px 16px;
    font-size: 15px;
}

.dashboard-table tbody td {
    background: #1a1a1a;
    color: #f2f2f2;
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    vertical-align: top;
    line-height: 1.5;
}

.dashboard-table tbody tr:hover td {
    background: #202020;
}

.table-delete-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #ff3c3c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.table-delete-btn:hover {
    opacity: 0.9;
}

@media (max-width: 992px) {
    .dashboard-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-actions-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header h1 {
        font-size: 40px;
    }

    .admin-floating-bar {
        top: auto;
        bottom: 20px;
        right: 15px;
        left: 15px;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 18px;
    }
}/* ============================= */
/* ADMIN FLOATING BAR */
/* ============================= */
.admin-floating-bar {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.28);
    backdrop-filter: blur(10px);
}

.admin-status {
    font-size: 14px;
    font-weight: 600;
}

.admin-status.on {
    color: #59d98e;
}

.admin-status.off {
    color: #ffb347;
}

.admin-toggle-btn,
.admin-mini-link {
    text-decoration: none;
    color: white;
    background: #ff3c3c;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.admin-mini-link {
    background: #1f1f1f;
    border: 1px solid rgba(255,255,255,0.08);
}

.admin-toggle-btn:hover,
.admin-mini-link:hover {
    opacity: 0.9;
}

/* ============================= */
/* DASHBOARD */
/* ============================= */
.dashboard-section {
    padding: 100px 0;
    background: #0f0f0f;
    min-height: 100vh;
}

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-header h1 {
    font-size: 54px;
    margin-bottom: 12px;
    color: white;
}

.dashboard-header p {
    color: #bdbdbd;
    font-size: 17px;
    max-width: 720px;
    line-height: 1.7;
}

.dashboard-actions-grid {
    display: grid;
    gap: 22px;
    margin-bottom: 40px;
}

.compact-grid {
    grid-template-columns: repeat(2, minmax(260px, 420px));
    justify-content: start;
}

.dashboard-action-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
    padding: 24px;
    border-radius: 18px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.04);
    min-height: 150px;
}

.dashboard-action-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.32);
    background: #202020;
}

.dashboard-action-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.dashboard-action-card p {
    color: #c8c8c8;
    line-height: 1.6;
    font-size: 15px;
}

.dashboard-table-wrapper {
    background: #161616;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.04);
}

.dashboard-table-header {
    margin-bottom: 20px;
}

.dashboard-table-header h2 {
    font-size: 30px;
    color: white;
}

.dashboard-table-scroll {
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.dashboard-table thead th {
    background: #222;
    color: white;
    text-align: left;
    padding: 14px 16px;
    font-size: 15px;
}

.dashboard-table tbody td {
    background: #1a1a1a;
    color: #f2f2f2;
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    vertical-align: top;
    line-height: 1.5;
}

.dashboard-table tbody tr:hover td {
    background: #202020;
}

.table-delete-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #ff3c3c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.table-delete-btn:hover {
    opacity: 0.9;
}

@media (max-width: 992px) {
    .compact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .compact-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header h1 {
        font-size: 40px;
    }

    .admin-floating-bar {
        top: auto;
        bottom: 20px;
        right: 15px;
        left: 15px;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 18px;
    }
}.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-secondary-btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    transition: 0.3s ease;
    font-weight: 600;
}

.hero-secondary-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}.testimonials-section {
    padding: 110px 0;
    background: #101010;
}

.testimonials-intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
}

.testimonials-intro h2 {
    font-size: 46px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.testimonials-intro p {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testimonial-card {
    background: linear-gradient(180deg, #171717 0%, #121212 100%);
    border-radius: 22px;
    padding: 34px 30px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}

.testimonial-card p {
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-card h4 {
    font-size: 15px;
    color: #ffb7b7;
    font-weight: 600;
}.process-section {
    padding: 110px 0;
    background: #0b0b0b;
}

.process-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.process-intro h2 {
    font-size: 46px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.process-intro p {
    color: rgba(255,255,255,0.72);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: #141414;
    border-radius: 22px;
    padding: 32px 26px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.process-card span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ff3c3c;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.process-card p {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.7;
}
/* ============================= */
/* CLIENTELE MARQUEE (PREMIUM FIXED) */
/* ============================= */
.clientele-section {
    padding: 110px 0 90px;
    background: #0b0b0b;
    overflow: hidden;
}

.clientele-intro {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 50px;
}

.clientele-intro h2 {
    font-size: 44px;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.clientele-intro p {
    color: rgba(255,255,255,0.65);
    font-size: 17px;
    line-height: 1.7;
}

/* ===== MARQUEE ===== */
.client-logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;

    mask-image: linear-gradient(to right, transparent, white 8%, white 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 8%, white 92%, transparent);
}

.client-logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

/* ===== REMOVE "BOX LOOK" ===== */
.client-logo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* REMOVE CARD FEEL */
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

/* ===== BASE LOGO STYLE ===== */
.client-logo-item img {
    max-width: 140px;
    max-height: 50px;

    width: auto;
    height: auto;
    object-fit: contain;

    display: block;

    filter: brightness(0) invert(1);
    opacity: 0.8;

    transition: all 0.3s ease;
}

/* Hover effect */
.client-logo-item:hover img {
    opacity: 1;
    transform: scale(1.08);
}

/* ===== LOGO FIX TYPES ===== */

/* Wide logos */
.client-logo-item.logo-wide img {
    max-width: 165px;
    max-height: 50px;
}

/* Tall logos */
.client-logo-item.logo-tall img {
    max-width: 110px;
    max-height: 65px;
}

/* Small / bad quality logos */
.client-logo-item.logo-boost img {
    transform: scale(1.25);
}

.client-logo-item.logo-boost:hover img {
    transform: scale(1.32);
}

/* ===== ANIMATION ===== */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .client-logo-track {
        gap: 50px;
    }

    .client-logo-item {
        width: 130px;
        height: 70px;
    }

    .client-logo-item img {
        max-width: 100px;
        max-height: 36px;
    }

    .client-logo-item.logo-wide img {
        max-width: 115px;
        max-height: 38px;
    }

    .client-logo-item.logo-tall img {
        max-width: 85px;
        max-height: 45px;
    }
}
.testimonial-card .editable-text[contenteditable="true"],
.process-card .editable-text[contenteditable="true"],
.clientele-intro .editable-text[contenteditable="true"],
.cta .editable-text[contenteditable="true"] {
    display: inline-block;
    width: 100%;
}
.compact-grid-home {
    grid-template-columns: repeat(2, minmax(280px, 420px));
    justify-content: start;
}

.compact-grid-wide {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    justify-content: start;
}

@media (max-width: 992px) {
    .compact-grid-home,
    .compact-grid-wide {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .compact-grid-home,
    .compact-grid-wide {
        grid-template-columns: 1fr;
    }
}

.event-showcase {
    background: #0b0b0b;
    padding: 120px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    color: #ff3c3c;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
}

.showcase-copy h2 {
    font-size: clamp(42px, 6vw, 86px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin: 24px 0;
}

.showcase-copy p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 32px;
}

.showcase-visual {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    min-height: 560px;
}

.showcase-visual img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    filter: brightness(0.78);
    transition: 0.8s ease;
}

.showcase-visual:hover img {
    transform: scale(1.06);
}

.showcase-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 24px 30px;
}

.showcase-card strong {
    display: block;
    color: #ff3c3c;
    font-size: 18px;
    margin-bottom: 8px;
}

.showcase-card span {
    font-size: 24px;
    font-weight: 700;
}

@media(max-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-visual,
    .showcase-visual img {
        min-height: 360px;
        height: 360px;
    }
}
.stats-section {
    background: #0b0b0b;
    padding: 90px 0 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    background: #151515;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    padding: 34px;
}

.stat-card h2 {
    font-size: 56px;
    color: #ff3c3c;
    margin-bottom: 8px;
}

.stat-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.why-section {
    background: #0b0b0b;
    padding: 90px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.section-label {
    color: #ff3c3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.why-copy h2 {
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.95;
    margin: 24px 0;
    letter-spacing: -2px;
}

.why-copy p,
.why-points p {
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    font-size: 17px;
}

.why-points {
    display: grid;
    gap: 22px;
}

.why-points div {
    background: #151515;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 30px;
}

.why-points h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

@media(max-width: 900px) {
    .stats-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}
.featured-projects {
    background: #0b0b0b;
    padding: 120px 0;
}

.featured-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: end;
    margin-bottom: 45px;
}

.featured-header .section-label {
    grid-column: 1 / -1;
}

.featured-header h2 {
    font-size: clamp(44px, 6vw, 86px);
    line-height: 0.95;
    letter-spacing: -2px;
    max-width: 850px;
}

.featured-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.featured-project-card {
    position: relative;
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    background: #151515;
}

.featured-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
    filter: brightness(0.75);
}

.featured-project-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.55);
}

.featured-project-info {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 2;
}

.featured-project-info span {
    color: #ff3c3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.featured-project-info h3 {
    font-size: 30px;
    line-height: 1.15;
    margin: 12px 0;
}

.featured-project-info p {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}

@media(max-width: 900px) {
    .featured-header {
        grid-template-columns: 1fr;
    }

    .featured-project-grid {
        grid-template-columns: 1fr;
    }

    .featured-project-card {
        height: 420px;
    }
}

.premium-services {
    background: #0b0b0b;
    padding: 120px 0;
}

.premium-services-header {
    max-width: 900px;
    margin-bottom: 50px;
}

.premium-services-header h2 {
    font-size: clamp(44px, 6vw, 86px);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-top: 20px;
}

.premium-service-list {
    display: grid;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.premium-service-item {
    display: grid;
    grid-template-columns: 120px 1fr 1.2fr;
    gap: 30px;
    padding: 38px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.premium-service-item:hover {
    padding-left: 24px;
    background: rgba(255,255,255,0.025);
}

.premium-service-item span {
    color: #ff3c3c;
    font-weight: 800;
    letter-spacing: 2px;
}

.premium-service-item h3 {
    font-size: 34px;
    line-height: 1.1;
}

.premium-service-item p {
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    font-size: 16px;
}

@media(max-width: 900px) {
    .premium-service-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.difference-section {
    background: #101010;
    padding: 120px 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.difference-image {
    overflow: hidden;
    border-radius: 30px;
}

.difference-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: 0.6s ease;
}

.difference-image:hover img {
    transform: scale(1.05);
}

.difference-content h2 {
    font-size: clamp(44px,6vw,88px);
    line-height: 0.95;
    margin: 24px 0 40px;
}

.difference-point {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.difference-point h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.difference-point p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

@media(max-width:900px) {
    .difference-grid {
        grid-template-columns: 1fr;
    }

    .difference-image img {
        height: 450px;
    }
}
.premium-testimonials {
    background: #0b0b0b;
    padding: 120px 0;
}

.premium-testimonials-header {
    max-width: 900px;
    margin-bottom: 55px;
}

.premium-testimonials-header h2 {
    font-size: clamp(44px, 6vw, 86px);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-top: 20px;
}

.premium-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.premium-testimonial-card {
    background: #151515;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 34px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-testimonial-card.featured {
    background: linear-gradient(180deg, #221111 0%, #151515 100%);
    border-color: rgba(255,60,60,0.28);
    transform: translateY(-20px);
}

.stars {
    color: #ff3c3c;
    letter-spacing: 3px;
    font-size: 18px;
    margin-bottom: 26px;
}

.premium-testimonial-card p {
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.premium-testimonial-card h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.premium-testimonial-card span {
    color: rgba(255,255,255,0.48);
    font-size: 14px;
}

@media(max-width: 900px) {
    .premium-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .premium-testimonial-card.featured {
        transform: none;
    }
}
.final-cta {
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.final-cta-overlay {
    min-height: 85vh;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.48)
    );
    display: flex;
    align-items: center;
}

.final-cta-content {
    max-width: 920px;
}

.final-cta-content h2 {
    font-size: clamp(52px, 7vw, 110px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin: 22px 0;
}

.final-cta-content p {
    max-width: 650px;
    color: rgba(255,255,255,0.78);
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media(max-width: 768px) {
    .final-cta-content h2 {
        font-size: 46px;
    }
}
/* ============================= */
/* ZIZO-STYLE NAVBAR */
/* ============================= */
.zizo-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 3000;
    padding: 18px 0;
}

.zizo-nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.zizo-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.6px;
    text-transform: lowercase;
}

.zizo-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
}

.zizo-nav-links a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.25s ease;
}

.zizo-nav-links a:hover {
    color: #fff;
}

.zizo-book-btn {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ff3c3c;
    transition: 0.25s ease;
}

.zizo-book-btn:hover {
    background: #fff;
    color: #000;
}

@media(max-width: 768px) {
    .zizo-nav-container {
        grid-template-columns: 1fr auto;
    }

    .zizo-nav-links {
        display: none;
    }
}

/* ============================= */
/* SITE-WIDE ZIZO-STYLE MOTION */
/* ============================= */

html {
    scroll-behavior: smooth;
}

.navbar {
    transition: 0.35s ease;
}

.navbar.nav-scrolled {
    padding: 12px 0;
    background: rgba(8, 8, 8, 0.94);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.hero h1,
.hero p,
.hero-buttons {
    opacity: 0;
    transform: translateY(34px);
    animation: heroReveal 1s ease forwards;
}

.hero p {
    animation-delay: 0.18s;
}

.hero-buttons {
    animation-delay: 0.36s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.featured-project-card,
.premium-service-item,
.premium-testimonial-card,
.stat-card,
.why-points div,
.difference-point {
    transition: 0.35s ease;
}

.featured-project-card:hover,
.premium-testimonial-card:hover,
.stat-card:hover,
.why-points div:hover {
    transform: translateY(-8px);
}

.featured-project-card img,
.showcase-visual img,
.difference-image img {
    transition: transform 0.8s ease, filter 0.8s ease;
}

.featured-project-card:hover img,
.showcase-visual:hover img,
.difference-image:hover img {
    transform: scale(1.07);
    filter: brightness(0.7);
}

.btn,
.hero-secondary-btn,
.zizo-book-btn {
    transition: 0.3s ease;
}

.btn:hover,
.hero-secondary-btn:hover,
.zizo-book-btn:hover {
    transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
.video-hero {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.video-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.65)
        );

    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}
.hero-video-portfolio {
   min-height: 38vh;
    padding-top: 90px;
    background: #0b0b0b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-portfolio h1 {
    font-size: clamp(52px, 7vw, 96px);
    margin-bottom: 16px;
}

.hero-video-portfolio p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
}

.video-showcase-section {
    padding: 80px 0 120px;
}

.video-showcase-section {
    padding: 120px 0;
    background: #0b0b0b;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.video-card {
    background: #151515;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.35s ease;
}

.video-card:hover {
    transform: translateY(-8px);
}

.video-card iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.video-info {
    padding: 28px;
}

.video-info span {
    color: #ff3c3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.video-info h3 {
    margin-top: 12px;
    font-size: 28px;
}

@media(max-width:768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
.homepage-video-feature {
    padding: 120px 0;
    background: #101010;
}

.homepage-video-feature h2 {
    font-size: clamp(44px,6vw,88px);
    margin: 20px 0 40px;
}

.featured-video-wrapper {
    border-radius: 30px;
    overflow: hidden;
}

.featured-video-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
}