/* =========================================
   DESKURA
   Bringing Aura to the Table
   ========================================= */


/* ---------- COLOUR SYSTEM ---------- */

:root {
    --blue: #0878d1;
    --blue-dark: #04549a;
    --green: #18b879;
    --green-dark: #0c8f5b;

    --dark: #07131f;
    --dark-2: #0b1d2d;
    --white: #ffffff;
    --light: #f5f9fc;
    --text: #263746;
    --muted: #6c7b88;

    --border: rgba(7, 19, 31, 0.10);

    --shadow: 0 20px 50px rgba(7, 19, 31, 0.10);

    --radius: 20px;
}


/* ---------- RESET ---------- */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* ---------- GENERAL ---------- */

.section-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.eyebrow {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

h1,
h2,
h3 {
    color: var(--dark);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.button-primary {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(8, 120, 209, 0.25);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.button-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.button-light {
    background: var(--white);
    color: var(--blue-dark);
}

.button-light:hover {
    transform: translateY(-3px);
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    width: min(1180px, 90%);
    margin: auto;

    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 150px;
    height: auto;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: white !important;
    padding: 12px 18px;
    border-radius: 8px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}


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

.hero {
    min-height: 88vh;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(24, 184, 121, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(8, 120, 209, 0.18),
            transparent 35%
        ),
        var(--dark);
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1180px, 90%);
    margin: auto;
    padding: 100px 0;
}

.hero .eyebrow {
    color: #5ce0a7;
}

.hero h1 {
    color: white;
    font-size: clamp(3.5rem, 8vw, 7rem);
    max-width: 850px;
    letter-spacing: -4px;
}

.hero h1 span {
    background: linear-gradient(
        90deg,
        #29a9ff,
        #45e0a0
    );

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

.hero-description {
    max-width: 650px;
    margin-top: 30px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 1.15rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    margin-top: 35px;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}

.glow-blue {
    background: var(--blue);
    right: -150px;
    top: 10%;
}

.glow-green {
    background: var(--green);
    right: 15%;
    bottom: -250px;
}


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

.intro-section {
    padding: 120px 0;
}

.intro-section .section-container {
    max-width: 850px;
}

.intro-section h2 {
    margin-bottom: 25px;
}

.intro-section h2 span {
    color: var(--blue);
}

.intro-section p:last-child {
    color: var(--muted);
    font-size: 1.1rem;
}


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

.services-section {
    padding: 120px 0;
    background: var(--light);
}

.section-heading {
    max-width: 650px;
    margin-bottom: 60px;
}

.section-heading > p:last-child {
    color: var(--muted);
    margin-top: 20px;
}

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

.service-card {
    position: relative;

    background: white;
    padding: 40px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: 0 5px 20px rgba(7, 19, 31, 0.04);

    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-number {
    position: absolute;
    top: 30px;
    right: 30px;

    color: rgba(8, 120, 209, 0.18);

    font-size: 3rem;
    font-weight: 900;
}

.service-icon {
    width: 55px;
    height: 55px;

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

    margin-bottom: 30px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        rgba(8, 120, 209, 0.12),
        rgba(24, 184, 121, 0.12)
    );

    color: var(--blue);
    font-size: 1.5rem;
    font-weight: 900;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--muted);
    margin-bottom: 25px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-card li {
    margin-bottom: 10px;
    color: var(--text);
}

.service-card li::before {
    content: "✓";
    color: var(--green);
    font-weight: bold;
    margin-right: 10px;
}

.service-link {
    color: var(--blue);
    font-weight: 800;
}


/* =========================================
   FREE EVALUATION
   ========================================= */

.evaluation-section {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--green-dark)
        );
}

.evaluation-container {
    width: min(1000px, 90%);
    margin: auto;
}

.evaluation-content {
    max-width: 750px;
}

.evaluation-content .eyebrow {
    color: #9ff3ca;
}

.evaluation-content h2 {
    color: white;
}

.evaluation-content h2 span {
    display: block;
    color: #9ff3ca;
}

.evaluation-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    margin-top: 25px;
}

.evaluation-content .button {
    margin-top: 30px;
}


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

.about-section {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-grid p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-grid h2 span {
    display: block;
    color: var(--green);
}


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

.portfolio-section {
    padding: 120px 0;
    background: var(--light);
}

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

.portfolio-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;

    border: 1px solid var(--border);

    transition: 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.portfolio-placeholder {
    height: 260px;

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

    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--green-dark)
        );

    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info p {
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.portfolio-info h3 {
    margin: 8px 0;
}

.portfolio-info span {
    color: var(--muted);
    font-size: 0.9rem;
}


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

.contact-section {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-grid > div > p {
    color: var(--muted);
    font-size: 1.1rem;
    margin: 25px 0;
}

.contact-grid > div > a {
    color: var(--blue);
    font-weight: 800;
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #d9e1e7;
    border-radius: 8px;

    background: white;
    color: var(--text);

    outline: none;

    transition: 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8, 120, 209, 0.10);
}

.form-group textarea {
    resize: vertical;
}


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

.site-footer {
    background: var(--dark);
    color: white;
    padding: 70px 0 25px;
}

.footer-container {
    width: min(1180px, 90%);
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;

    padding-bottom: 50px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-container p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-container h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-container a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
    transition: 0.2s ease;
}

.footer-container a:hover {
    color: #5ce0a7;
}

.footer-bottom {
    width: min(1180px, 90%);
    margin: auto;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}


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

@media (max-width: 900px) {

    .nav-links {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 25px;

        background: white;

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

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

    .menu-toggle {
        display: block;
    }

    .service-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .navbar {
        min-height: 70px;
    }

    .logo {
        width: 120px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 3.4rem;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .intro-section,
    .services-section,
    .evaluation-section,
    .about-section,
    .portfolio-section,
    .contact-section {
        padding: 80px 0;
    }

    .service-card {
        padding: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
/* =========================================
   MARKETING PORTFOLIO CARD
   ========================================= */

.marketing-portfolio-card {
    background: #07090a;
    border: 1px solid rgba(69, 224, 160, 0.15);
    overflow: hidden;
}

.marketing-portfolio-link {
    display: block;
}

.marketing-portfolio-image {
    height: 300px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;

    padding: 30px;

    background:
        radial-gradient(circle at 75% 25%, rgba(24, 184, 121, 0.16), transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(8, 120, 209, 0.18), transparent 45%),
        #07090a;
}

.marketing-portfolio-image .mp-mini-aurora {
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: blur(60px);
    opacity: 0.6;
}

.marketing-portfolio-image .mp-mini-aurora span {
    position: absolute;
    border-radius: 50%;
}

.marketing-portfolio-image .mp-mini-aurora span:nth-child(1) {
    width: 220px;
    height: 220px;
    background: var(--blue);
    top: -60px;
    left: -40px;
    animation: mpDrift1 14s ease-in-out infinite alternate;
}

.marketing-portfolio-image .mp-mini-aurora span:nth-child(2) {
    width: 200px;
    height: 200px;
    background: var(--green);
    bottom: -60px;
    right: -30px;
    animation: mpDrift2 16s ease-in-out infinite alternate;
}

.marketing-portfolio-card:hover .marketing-portfolio-image .mp-mini-aurora {
    opacity: 0.85;
}

.mp-mini-icon {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;

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

    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));

    box-shadow: 0 12px 30px rgba(8, 120, 209, 0.35);
}

.mp-mini-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.marketing-portfolio-overlay {
    position: relative;
    z-index: 2;
}

.marketing-portfolio-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #78ffb4;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.marketing-portfolio-overlay h3 {
    margin-top: 12px;
    color: white;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.marketing-portfolio-card .portfolio-info {
    background: #090c0d;
}

.marketing-portfolio-card .portfolio-info p {
    color: #4de0ff;
}

.marketing-portfolio-card .portfolio-info h3 {
    color: white;
    font-size: 1.2rem;
}

.marketing-portfolio-card .portfolio-info span {
    color: #899598;
}


/* =========================================
   MARKETING PAGE
   ========================================= */

.marketing-page {
    background: #fff0f7;
}


/* Hero */

.marketing-hero {
    padding: 85px 0;
    background: linear-gradient(
        135deg,
        #d63384,
        #ec4899
    );
}

.marketing-hero-content {
    width: min(1050px, 90%);
    margin: auto;
}

.marketing-hero .eyebrow {
    color: white;
    margin-bottom: 12px;
}

.marketing-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -1.5px;
    max-width: 750px;
}

.marketing-hero h1 span {
    color: #ffd6e8;
}

.marketing-hero-description {
    max-width: 650px;
    margin-top: 20px;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}


/* Mimi Q image */

.marketing-photo-section {
    padding: 70px 0;
    background: #fff0f7;
}

.marketing-photo-container {
    width: min(1050px, 90%);
    margin: auto;
}

.marketing-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;

    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(190, 24, 93, 0.15);
}


/* Campaign intro */

.marketing-content-section {
    padding: 70px 0;
    background: #fff0f7;
}

.marketing-intro {
    width: min(850px, 90%);
    margin: auto;
    text-align: center;
}

.marketing-intro .eyebrow {
    color: #d63384;
}

.marketing-intro h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 18px;
}

.marketing-intro h2 span {
    color: #d63384;
}

.marketing-intro p {
    color: #666;
    font-size: 1rem;
}


/* Video */

.marketing-video-section {
    padding: 70px 0;
    background: #f9d7e7;
}

.marketing-video-container {
    width: min(1050px, 90%);
    margin: auto;
}

.marketing-video-heading {
    margin-bottom: 30px;
}

.marketing-video-heading .eyebrow {
    color: #d63384;
}

.marketing-video-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.marketing-video-heading h2 span {
    color: #d63384;
}

.marketing-video {
    width: 100%;
    display: block;

    border-radius: 18px;

    background: #111;

    box-shadow:
        0 20px 45px rgba(190, 24, 93, 0.15);
}


/* Locations */

.marketing-locations {
    padding: 70px 0;
    background: #fff0f7;
}

.marketing-locations .section-heading {
    margin-bottom: 35px;
}

.marketing-locations .section-heading .eyebrow {
    color: #d63384;
}

.marketing-locations .section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.marketing-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.marketing-location-card {
    padding: 25px;
    background: white;

    border-radius: 15px;

    border: 1px solid #f1c3d8;

    transition: 0.3s ease;
}

.marketing-location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(190, 24, 93, 0.1);
}

.marketing-location-card span {
    color: #d63384;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.marketing-location-card h3 {
    margin-top: 6px;
    font-size: 1.2rem;
}

.marketing-location-card p {
    color: #777;
    font-size: 0.9rem;
}


/* Campaign focus */

.marketing-focus {
    padding: 70px 0;
    background: #fff;
}

.marketing-focus .section-heading .eyebrow {
    color: #d63384;
}

.marketing-focus .section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.marketing-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.marketing-focus-card {
    padding: 28px;

    border-radius: 15px;

    background: #fff0f7;

    border: 1px solid #f1c3d8;
}

.marketing-focus-card h3 {
    color: #d63384;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.marketing-focus-card p {
    color: #666;
    font-size: 0.95rem;
}


/* Mimi Q closing section */

.mimiq-section {
    padding: 75px 0;
    background: linear-gradient(
        135deg,
        #d63384,
        #ec4899
    );
}

.mimiq-container {
    width: min(850px, 90%);
    margin: auto;
    text-align: center;
}

.mimiq-container .eyebrow {
    color: white;
}

.mimiq-container h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.mimiq-container h2 span {
    color: #ffd6e8;
}

.mimiq-container p {
    max-width: 700px;
    margin: 18px auto 0;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}


/* Mobile */

@media (max-width: 900px) {

    .marketing-location-grid {
        grid-template-columns: 1fr 1fr;
    }

    .marketing-focus-grid {
        grid-template-columns: 1fr;
    }

    .marketing-photo {
        height: 400px;
    }

}


@media (max-width: 600px) {

    .marketing-hero {
        padding: 65px 0;
    }

    .marketing-hero h1 {
        font-size: 2.7rem;
        letter-spacing: -1px;
    }

    .marketing-photo-section,
    .marketing-content-section,
    .marketing-video-section,
    .marketing-locations,
    .marketing-focus,
    .mimiq-section {
        padding: 55px 0;
    }

    .marketing-photo {
        height: 300px;
        border-radius: 15px;
    }

    .marketing-location-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   DESKURA WEBSITE DESIGN CONCEPT
   BLACK / BLUE / GREEN AURA
   ========================================================= */

.website-design-page {
    background: #050607;
    color: #f5f7f8;
}

.website-design-page .site-header {
    background: rgba(5, 6, 7, 0.88);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.website-design-page .nav-links a {
    color: #d9dddf;
}

.website-design-page .nav-links a:hover {
    color: #52d7ff;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.website-design-container {
    width: min(1100px, 90%);
    margin: auto;
}


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

.website-design-hero {
    min-height: 850px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(0, 190, 255, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 20% 75%,
            rgba(0, 255, 140, 0.10),
            transparent 25%
        ),
        #050607;
}


.website-design-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 30%,
            rgba(0, 210, 255, 0.035),
            transparent 70%
        );

    animation: auraSweep 7s infinite linear;
}


@keyframes auraSweep {

    0% {
        transform: translateX(-30%);
    }

    100% {
        transform: translateX(30%);
    }

}


.website-design-hero-content {
    width: min(1100px, 90%);

    margin: auto;

    position: relative;
    z-index: 3;
}


.website-design-eyebrow {
    color: #50d9ff;

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 2.5px;

    margin-bottom: 18px;
}


.website-design-hero h1 {
    max-width: 850px;

    font-size: clamp(
        3rem,
        7vw,
        6.5rem
    );

    line-height: 0.98;

    letter-spacing: -4px;

    color: #f5f7f8;
}


.website-design-hero h1 span {
    display: inline;

    background:
        linear-gradient(
            90deg,
            #45d9ff,
            #38ff9b
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    background-size: 200% auto;

    animation: auraText 5s linear infinite;
}


@keyframes auraText {

    to {
        background-position: 200% center;
    }

}


.website-design-hero-text {
    max-width: 650px;

    margin-top: 35px;

    color: #9ba4a8;

    font-size: 1.05rem;

    line-height: 1.8;
}


.website-design-button {
    display: inline-flex;

    align-items: center;
    gap: 15px;

    margin-top: 35px;

    padding: 15px 24px;

    border: 1px solid rgba(69, 217, 255, 0.5);

    border-radius: 8px;

    color: white;

    background:
        rgba(69, 217, 255, 0.05);

    box-shadow:
        0 0 25px rgba(69, 217, 255, 0.08);

    transition: 0.35s ease;
}


.website-design-button:hover {
    transform: translateY(-3px);

    border-color: #45d9ff;

    box-shadow:
        0 0 35px rgba(69, 217, 255, 0.25),
        0 0 70px rgba(56, 255, 155, 0.10);

    color: white;
}


.website-design-button span {
    color: #38ff9b;
}


/* =========================================================
   AURA ORBIT
   ========================================================= */

.website-design-orbit {
    position: absolute;

    width: 500px;
    height: 500px;

    right: 4%;
    top: 50%;

    transform: translateY(-50%);

    pointer-events: none;
}


.orbit-ring {
    position: absolute;

    inset: 50%;

    border-radius: 50%;

    border: 1px solid rgba(69, 217, 255, 0.22);

    transform: translate(-50%, -50%);
}


.ring-one {
    width: 500px;
    height: 500px;

    animation:
        orbitRotate 14s linear infinite;
}


.ring-two {
    width: 350px;
    height: 350px;

    border-color:
        rgba(56, 255, 155, 0.28);

    animation:
        orbitRotateReverse 10s linear infinite;
}


@keyframes orbitRotate {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}


@keyframes orbitRotateReverse {

    from {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

}


.orbit-core {
    position: absolute;

    width: 120px;
    height: 120px;

    top: 50%;
    left: 50%;

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

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

    border-radius: 50%;

    background: #080b0c;

    border:
        1px solid rgba(69, 217, 255, 0.5);

    box-shadow:
        0 0 30px rgba(69, 217, 255, 0.25),
        0 0 70px rgba(56, 255, 155, 0.12);

    animation: corePulse 3s ease-in-out infinite;
}


@keyframes corePulse {

    0%,
    100% {
        box-shadow:
            0 0 30px rgba(69, 217, 255, 0.2),
            0 0 70px rgba(56, 255, 155, 0.08);
    }

    50% {
        box-shadow:
            0 0 45px rgba(69, 217, 255, 0.35),
            0 0 100px rgba(56, 255, 155, 0.16);
    }

}


.orbit-core span {
    font-size: 1.1rem;

    font-weight: 900;

    letter-spacing: 3px;

    background:
        linear-gradient(
            90deg,
            #45d9ff,
            #38ff9b
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================================
   PROCESS
   ========================================================= */

.website-process-section {
    padding: 120px 0;

    background: #07090a;

    border-top:
        1px solid rgba(255,255,255,0.04);
}


.website-design-heading {
    max-width: 750px;

    margin-bottom: 65px;
}


.website-design-heading h2 {
    font-size:
        clamp(2.3rem, 5vw, 4.2rem);

    line-height: 1;

    letter-spacing: -2px;

    color: white;
}


.website-design-heading h2 span {
    color: #45d9ff;
}


.website-design-heading > p:last-child {
    margin-top: 20px;

    color: #899397;

    line-height: 1.8;
}


.website-process {
    position: relative;
}


.website-process::before {
    content: "";

    position: absolute;

    left: 35px;
    top: 0;
    bottom: 0;

    width: 1px;

    background:
        linear-gradient(
            #45d9ff,
            #38ff9b,
            transparent
        );

    opacity: 0.25;
}


.website-process-card {
    position: relative;

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 30px;

    padding: 35px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.05);

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.website-process-card.process-visible {
    opacity: 1;

    transform: translateY(0);
}


.process-number {
    width: 70px;
    height: 70px;

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

    position: relative;
    z-index: 2;

    border-radius: 50%;

    background: #07090a;

    border:
        1px solid rgba(69, 217, 255, 0.35);

    color: #45d9ff;

    font-size: 0.75rem;

    font-weight: 900;

    box-shadow:
        0 0 25px rgba(69, 217, 255, 0.08);
}


.website-process-card h3 {
    color: white;

    font-size: 1.5rem;

    margin-bottom: 10px;
}


.website-process-card p {
    max-width: 700px;

    color: #858f93;

    line-height: 1.7;
}


/* =========================================================
   PACKAGES
   ========================================================= */

.website-packages-section {
    padding: 120px 0;

    background: #050607;
}


.website-packages-grid {
    display: grid;

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

    gap: 25px;
}


.website-package {
    position: relative;

    padding: 45px;

    overflow: hidden;

    border-radius: 18px;

    background: #090c0d;

    border:
        1px solid rgba(255,255,255,0.07);

    transition: 0.4s ease;
}


.website-package:hover {
    transform: translateY(-8px);

    border-color:
        rgba(69, 217, 255, 0.3);
}


.package-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;
}


.package-label {
    color: #45d9ff;

    font-size: 0.68rem;

    font-weight: 900;

    letter-spacing: 2px;
}


.package-icon {
    width: 45px;
    height: 45px;

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

    border-radius: 50%;

    border:
        1px solid rgba(69,217,255,0.3);

    color: #45d9ff;
}


.website-package h3 {
    color: white;

    font-size: 2rem;

    margin-bottom: 15px;
}


.package-description {
    color: #899397;

    line-height: 1.7;
}


.package-divider {
    height: 1px;

    margin: 30px 0;

    background:
        rgba(255,255,255,0.07);
}


.package-features {
    list-style: none;

    padding: 0;

    margin: 0;
}


.package-features li {
    position: relative;

    padding: 10px 0 10px 25px;

    color: #b2babd;

    border-bottom:
        1px solid rgba(255,255,255,0.04);
}


.package-features li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #38ff9b;

    font-weight: 900;
}


.package-button {
    display: block;

    text-align: center;

    margin-top: 30px;

    padding: 14px 20px;

    border-radius: 8px;

    transition: 0.3s ease;
}


.starter-button {
    border:
        1px solid rgba(69,217,255,0.35);

    color: #45d9ff;
}


.starter-button:hover {
    background:
        rgba(69,217,255,0.08);

    color: white;
}


/* =========================================================
   AURA PACKAGE
   ========================================================= */

.aura-package {
    border-color:
        rgba(56,255,155,0.25);

    box-shadow:
        0 0 50px rgba(56,255,155,0.05);
}


.aura-package:hover {
    border-color:
        rgba(56,255,155,0.5);

    box-shadow:
        0 0 70px rgba(56,255,155,0.10);
}


.aura-package::before {
    content: "DESKURA'S PREMIUM";

    position: absolute;

    top: 20px;
    right: -35px;

    padding: 7px 45px;

    transform: rotate(45deg);

    background:
        linear-gradient(
            90deg,
            #45d9ff,
            #38ff9b
        );

    color: #050607;

    font-size: 0.58rem;

    font-weight: 900;

    letter-spacing: 1px;
}


.aura-package .package-label {
    color: #38ff9b;
}


.aura-icon {
    border-color:
        rgba(56,255,155,0.4);

    color: #38ff9b;

    box-shadow:
        0 0 20px rgba(56,255,155,0.12);
}


.aura-button {
    background:
        linear-gradient(
            90deg,
            #45d9ff,
            #38ff9b
        );

    color: #050607;

    font-weight: 900;
}


.aura-button:hover {
    color: #050607;

    transform: translateY(-2px);

    box-shadow:
        0 0 30px rgba(56,255,155,0.2);
}


/* =========================================================
   DEPLOYMENT
   ========================================================= */

.deployment-section {
    padding: 120px 0;

    background: #07090a;
}


.deployment-content {
    max-width: 850px;
}


.deployment-content h2 {
    font-size:
        clamp(2.3rem, 5vw, 4rem);

    color: white;

    letter-spacing: -2px;
}


.deployment-content h2 span {
    color: #38ff9b;
}


.deployment-content > p:not(.website-design-eyebrow) {
    max-width: 650px;

    margin-top: 20px;

    color: #899397;

    line-height: 1.8;
}


.deployment-list {
    display: grid;

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

    gap: 10px;

    margin-top: 50px;
}


.deployment-list div {
    padding: 20px 15px;

    border:
        1px solid rgba(255,255,255,0.07);

    border-radius: 10px;

    color: #aab2b5;

    font-size: 0.8rem;
}


.deployment-list span {
    display: block;

    margin-bottom: 10px;

    color: #45d9ff;

    font-weight: 900;
}


/* =========================================================
   CTA
   ========================================================= */

.website-design-cta {
    padding: 130px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(69,217,255,0.12),
            transparent 35%
        ),
        #050607;
}


.website-design-cta .website-design-container {
    display: flex;

    align-items: center;

    flex-direction: column;
}


.website-design-cta h2 {
    max-width: 800px;

    color: white;

    font-size:
        clamp(2.5rem, 6vw, 5rem);

    line-height: 1;

    letter-spacing: -3px;
}


.website-design-cta h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #45d9ff,
            #38ff9b
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.website-design-cta p:not(.website-design-eyebrow) {
    max-width: 600px;

    margin-top: 20px;

    color: #899397;
}


/* =========================================================
   WEBSITE DESIGN PORTFOLIO CARD — INDEX
   ========================================================= */

.website-design-portfolio-card {
    background: #07090a;

    border:
        1px solid rgba(69,217,255,0.15);

    overflow: hidden;
}


.website-design-portfolio-link {
    display: block;
}


.website-design-preview {
    min-height: 300px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(69,217,255,0.10),
            transparent 35%
        ),
        #050607;
}


.website-design-preview-content {
    position: relative;

    z-index: 3;

    text-align: center;
}


.website-design-preview-content span {
    color: #45d9ff;

    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 2px;
}


.website-design-preview-content h3 {
    margin-top: 10px;

    color: white;

    font-size: 1.7rem;
}


.website-design-preview-content p {
    margin-top: 8px;

    color: #899397;

    font-size: 0.85rem;
}


.website-design-line {
    width: 70px;

    height: 2px;

    margin: 20px auto 0;

    background:
        linear-gradient(
            90deg,
            #45d9ff,
            #38ff9b
        );

    box-shadow:
        0 0 15px rgba(69,217,255,0.5);
}


.website-design-glow {
    position: absolute;

    width: 200px;
    height: 200px;

    border-radius: 50%;

    filter: blur(70px);

    opacity: 0.25;
}


.blue-glow {
    background: #45d9ff;

    top: -70px;
    right: -50px;

    animation:
        previewGlow 5s ease-in-out infinite;
}


.green-glow {
    background: #38ff9b;

    bottom: -70px;
    left: -50px;

    animation:
        previewGlow 6s ease-in-out infinite reverse;
}


@keyframes previewGlow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

}


.website-design-portfolio-card .portfolio-info {
    background: #090c0d;
}


.website-design-portfolio-card .portfolio-info p {
    color: #45d9ff;
}


.website-design-portfolio-card .portfolio-info h3 {
    color: white;
}


.website-design-portfolio-card .portfolio-info span {
    color: #899397;
}


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

@media (max-width: 900px) {

    .website-design-orbit {
        opacity: 0.25;

        right: -180px;
    }


    .website-packages-grid {
        grid-template-columns: 1fr;
    }


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

}


@media (max-width: 600px) {

    .website-design-hero {
        min-height: 700px;
    }


    .website-design-hero h1 {
        font-size: 3.1rem;

        letter-spacing: -2px;
    }


    .website-design-hero-text {
        font-size: 0.95rem;
    }


    .website-design-orbit {
        width: 300px;
        height: 300px;

        right: -120px;

        opacity: 0.18;
    }


    .ring-one {
        width: 300px;
        height: 300px;
    }


    .ring-two {
        width: 220px;
        height: 220px;
    }


    .orbit-core {
        width: 80px;
        height: 80px;
    }


    .website-process-card {
        grid-template-columns:
            50px 1fr;

        gap: 20px;
    }


    .process-number {
        width: 50px;
        height: 50px;
    }


    .website-process::before {
        left: 25px;
    }


    .website-package {
        padding: 30px 25px;
    }


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


    .website-design-cta h2 {
        letter-spacing: -1.5px;
    }

}
/* =========================================================
   DESKURA CCTV SECURITY PORTFOLIO
   FUTURISTIC SECURITY COMMAND CENTRE
   ========================================================= */

.cctv-page {
    background: #030506;
    color: #eef4f5;
    overflow-x: hidden;
}

.cctv-page .site-header {
    background: rgba(3,5,6,0.92);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
}

.cctv-page .nav-links a {
    color: #dce5e7;
}

.cctv-page .nav-links a:hover {
    color: #4de0ff;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.cctv-container {
    width: min(1120px, 90%);
    margin: auto;
}


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

.cctv-hero {
    min-height: 850px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(40,210,255,0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(50,255,145,0.07),
            transparent 25%
        ),
        #030506;
}

.cctv-grid-background {
    position: absolute;
    inset: 0;

    opacity: 0.20;

    background-image:
        linear-gradient(
            rgba(70,210,255,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(70,210,255,0.08) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

    animation: gridMove 12s linear infinite;
}

@keyframes gridMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(55px);
    }

}

.cctv-scan-line {
    position: absolute;

    left: 0;
    right: 0;
    top: -5px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #4de0ff,
            #45ff9a,
            transparent
        );

    box-shadow:
        0 0 20px #4de0ff,
        0 0 45px rgba(69,255,154,0.5);

    animation: scanScreen 7s linear infinite;

    opacity: 0.65;
}

@keyframes scanScreen {

    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }

}

.cctv-hero-content {
    width: min(1120px, 90%);
    margin: auto;

    position: relative;
    z-index: 5;
}

.cctv-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border: 1px solid rgba(69,255,154,0.25);

    background: rgba(69,255,154,0.04);

    color: #78ffb4;

    font-size: 0.64rem;
    font-weight: 900;

    letter-spacing: 1.7px;

    margin-bottom: 25px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #42ff98;

    box-shadow:
        0 0 8px #42ff98;

    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.65);
    }

}

.cctv-eyebrow {
    color: #4de0ff;

    font-size: 0.70rem;

    font-weight: 900;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.cctv-hero h1 {
    max-width: 820px;

    font-size:
        clamp(3.2rem, 8vw, 7.5rem);

    line-height: 0.88;

    letter-spacing: -5px;

    margin: 0;

    color: #f5f8f9;
}

.cctv-hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #4de0ff,
            #45ff9a
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    background-size: 200% auto;

    animation: securityGradient 4s linear infinite;
}

@keyframes securityGradient {

    to {
        background-position: 200% center;
    }

}

.cctv-hero-text {
    max-width: 650px;

    margin-top: 35px;

    color: #8c989c;

    line-height: 1.8;

    font-size: 1.03rem;
}

.cctv-button {
    display: inline-flex;

    align-items: center;
    gap: 15px;

    margin-top: 32px;

    padding: 15px 22px;

    border: 1px solid rgba(77,224,255,0.45);

    background:
        rgba(77,224,255,0.04);

    color: #eef4f5;

    border-radius: 6px;

    font-size: 0.78rem;

    font-weight: 900;

    letter-spacing: 0.8px;

    transition: 0.35s ease;
}

.cctv-button span {
    color: #45ff9a;

    font-size: 1rem;
}

.cctv-button:hover {
    transform: translateY(-3px);

    border-color: #4de0ff;

    color: white;

    box-shadow:
        0 0 30px rgba(77,224,255,0.18),
        0 0 60px rgba(69,255,154,0.07);
}


/* =========================================================
   RADAR
   ========================================================= */

.cctv-radar {
    position: absolute;

    right: 4%;
    top: 50%;

    width: 500px;
    height: 500px;

    transform: translateY(-50%);

    opacity: 0.55;

    border-radius: 50%;
}

.radar-circle {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

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

    border:
        1px solid rgba(77,224,255,0.20);
}

.radar-one {
    width: 500px;
    height: 500px;
}

.radar-two {
    width: 350px;
    height: 350px;

    border-color:
        rgba(69,255,154,0.18);
}

.radar-three {
    width: 190px;
    height: 190px;
}

.radar-sweep {
    position: absolute;

    width: 50%;
    height: 2px;

    left: 50%;
    top: 50%;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            #4de0ff,
            transparent
        );

    box-shadow:
        0 0 15px #4de0ff;

    animation:
        radarRotate 4s linear infinite;
}

@keyframes radarRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.radar-center {
    position: absolute;

    width: 12px;
    height: 12px;

    left: 50%;
    top: 50%;

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

    border-radius: 50%;

    background: #45ff9a;

    box-shadow:
        0 0 20px #45ff9a,
        0 0 50px rgba(69,255,154,0.5);
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.cctv-showcase-section,
.cctv-status-section,
.security-network-section,
.cctv-services-section,
.cctv-projects-section {
    padding: 120px 0;
}

.cctv-showcase-section {
    background: #050708;
}

.cctv-status-section {
    background: #030506;
}

.security-network-section {
    background: #050708;
}

.cctv-services-section {
    background: #030506;
}

.cctv-projects-section {
    background: #050708;
}

.cctv-section-heading {
    max-width: 750px;

    margin-bottom: 60px;
}

.cctv-section-heading h2 {
    color: white;

    font-size:
        clamp(2.3rem, 5vw, 4.5rem);

    line-height: 0.95;

    letter-spacing: -3px;

    margin: 0;
}

.cctv-section-heading h2 span {
    color: #4de0ff;
}

.cctv-section-heading p:last-child {
    color: #899598;

    line-height: 1.8;

    margin-top: 20px;
}


/* =========================================================
   VIDEO MONITOR
   ========================================================= */

.cctv-video-monitor {
    position: relative;

    border:
        1px solid rgba(77,224,255,0.22);

    background: #020304;

    box-shadow:
        0 0 70px rgba(77,224,255,0.06);

    overflow: hidden;
}

.monitor-topbar,
.monitor-bottombar {
    min-height: 45px;

    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 0 18px;

    background: #080b0c;

    border-bottom:
        1px solid rgba(255,255,255,0.06);

    color: #7f8b8f;

    font-size: 0.62rem;

    font-weight: 900;

    letter-spacing: 1.2px;
}

.monitor-bottombar {
    border-top:
        1px solid rgba(255,255,255,0.06);

    border-bottom: 0;
}

.monitor-live {
    color: #45ff9a;

    animation: liveBlink 1.4s infinite;
}

@keyframes liveBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

}

.cctv-video-container {
    position: relative;

    min-height: 550px;

    background:
        radial-gradient(
            circle,
            rgba(77,224,255,0.06),
            transparent 45%
        ),
        #020304;

    display: flex;

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

    overflow: hidden;
}

.cctv-showcase-video {
    width: 100%;
    height: 550px;

    display: block;

    object-fit: cover;

    position: relative;
    z-index: 2;
}

.video-placeholder {
    position: absolute;

    inset: 0;

    display: flex;

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

    flex-direction: column;

    gap: 9px;

    z-index: 1;

    color: #536065;

    background:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,0.015) 0px,
            rgba(255,255,255,0.015) 1px,
            transparent 1px,
            transparent 4px
        );
}

.placeholder-camera {
    font-size: 3rem;

    color: #4de0ff;

    opacity: 0.6;

    animation:
        cameraPulse 2s infinite;
}

@keyframes cameraPulse {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(77,224,255,0.2);
    }

    50% {
        text-shadow:
            0 0 30px rgba(77,224,255,0.7);
    }

}

.video-placeholder strong {
    color: #899598;

    letter-spacing: 2px;

    font-size: 0.8rem;
}

.video-placeholder span {
    color: #4de0ff;

    font-size: 0.65rem;

    letter-spacing: 2px;
}

.video-placeholder small {
    color: #465155;

    font-size: 0.65rem;
}

.camera-crosshair {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 100px;
    height: 100px;

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

    border:
        1px solid rgba(77,224,255,0.25);

    z-index: 3;

    pointer-events: none;
}

.camera-crosshair::before,
.camera-crosshair::after {
    content: "";

    position: absolute;

    background:
        rgba(77,224,255,0.3);
}

.camera-crosshair::before {
    width: 1px;
    height: 150%;

    left: 50%;
    top: -25%;
}

.camera-crosshair::after {
    width: 150%;
    height: 1px;

    left: -25%;
    top: 50%;
}

.camera-corner {
    position: absolute;

    width: 35px;
    height: 35px;

    z-index: 4;

    border-color:
        rgba(69,255,154,0.55);

    border-style: solid;
}

.camera-corner.top-left {
    left: 20px;
    top: 20px;

    border-width:
        2px 0 0 2px;
}

.camera-corner.top-right {
    right: 20px;
    top: 20px;

    border-width:
        2px 2px 0 0;
}

.camera-corner.bottom-left {
    left: 20px;
    bottom: 20px;

    border-width:
        0 0 2px 2px;
}

.camera-corner.bottom-right {
    right: 20px;
    bottom: 20px;

    border-width:
        0 2px 2px 0;
}

.video-overlay {
    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    gap: 5px;

    color: rgba(210,230,235,0.6);

    font-size: 0.58rem;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   STATUS DASHBOARD
   ========================================================= */

.security-dashboard {
    display: grid;

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

    gap: 15px;
}

.security-status-card {
    padding: 28px;

    background: #070a0b;

    border:
        1px solid rgba(255,255,255,0.06);

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        border 0.3s ease;
}

.security-status-card.security-visible {
    opacity: 1;

    transform: translateY(0);
}

.security-status-card:hover {
    border-color:
        rgba(77,224,255,0.3);
}

.status-card-top {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    color: #657176;

    font-size: 0.6rem;

    font-weight: 900;

    letter-spacing: 1px;
}

.online {
    color: #45ff9a;
}

.security-status-card strong {
    display: block;

    margin-top: 30px;

    font-size: 2.5rem;

    color: #eaf2f4;
}

.security-status-card small {
    display: block;

    margin-top: 5px;

    color: #5d686c;

    font-size: 0.6rem;

    letter-spacing: 1px;
}

.status-bar {
    height: 2px;

    margin-top: 30px;

    background: #111719;
}

.status-bar span {
    display: block;

    height: 100%;

    width: 85%;

    background:
        linear-gradient(
            90deg,
            #4de0ff,
            #45ff9a
        );

    box-shadow:
        0 0 10px rgba(77,224,255,0.35);
}


/* =========================================================
   NETWORK
   ========================================================= */

.security-network {
    position: relative;

    min-height: 520px;

    border:
        1px solid rgba(77,224,255,0.12);

    background:
        radial-gradient(
            circle at center,
            rgba(77,224,255,0.07),
            transparent 35%
        ),
        #030506;

    overflow: hidden;
}

.security-network::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(77,224,255,0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(77,224,255,0.05) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}

.network-node,
.network-core {
    position: absolute;

    z-index: 5;

    display: flex;

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

    flex-direction: column;

    width: 110px;
    height: 70px;

    border:
        1px solid rgba(77,224,255,0.35);

    background:
        rgba(3,7,8,0.92);

    color: #4de0ff;

    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 0 25px rgba(77,224,255,0.06);
}

.network-node small {
    margin-top: 6px;

    color: #59666a;

    font-size: 0.5rem;
}

.camera-1 {
    left: 7%;
    top: 12%;
}

.camera-2 {
    left: 7%;
    top: 39%;
}

.camera-3 {
    left: 7%;
    top: 66%;
}

.camera-4 {
    left: 32%;
    top: 80%;
}

.network-core {
    left: 46%;
    top: 42%;

    width: 130px;
    height: 90px;

    border-color:
        rgba(69,255,154,0.45);

    color: #45ff9a;

    box-shadow:
        0 0 40px rgba(69,255,154,0.10);
}

.network-core small {
    margin-top: 7px;

    color: #61706b;

    font-size: 0.48rem;
}

.network-node-right {
    right: 22%;
    top: 42%;

    color: #45ff9a;

    border-color:
        rgba(69,255,154,0.35);
}

.remote-node {
    right: 5%;
    top: 42%;

    color: #4de0ff;
}

.network-line {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #4de0ff,
            transparent
        );

    box-shadow:
        0 0 10px rgba(77,224,255,0.45);

    transform-origin: left center;

    z-index: 2;

    animation:
        dataFlow 2s linear infinite;
}

@keyframes dataFlow {

    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }

}

.line-1 {
    left: 16%;
    top: 25%;

    width: 34%;

    transform: rotate(14deg);
}

.line-2 {
    left: 16%;
    top: 50%;

    width: 31%;
}

.line-3 {
    left: 16%;
    top: 72%;

    width: 33%;

    transform: rotate(-13deg);
}

.line-4 {
    left: 39%;
    top: 76%;

    width: 18%;

    transform: rotate(-40deg);
}

.core-line {
    left: 56%;
    top: 49%;

    width: 20%;
}

.remote-line {
    left: 78%;
    top: 49%;

    width: 17%;
}


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

.security-service-grid {
    display: grid;

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

    gap: 15px;
}

.security-service-card {
    position: relative;

    padding: 35px 28px;

    min-height: 330px;

    background: #070a0b;

    border:
        1px solid rgba(255,255,255,0.06);

    transition: 0.35s ease;

    opacity: 0;

    transform: translateY(25px);
}

.security-service-card.security-visible {
    opacity: 1;

    transform: translateY(0);
}

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

    border-color:
        rgba(77,224,255,0.35);

    box-shadow:
        0 0 40px rgba(77,224,255,0.06);
}

.security-service-number {
    position: absolute;

    top: 18px;
    right: 18px;

    color: #263034;

    font-size: 0.65rem;

    font-weight: 900;
}

.security-service-icon {
    width: 55px;
    height: 55px;

    display: flex;

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

    margin-bottom: 30px;

    border-radius: 50%;

    border:
        1px solid rgba(77,224,255,0.3);

    color: #4de0ff;

    font-size: 1.4rem;

    box-shadow:
        0 0 20px rgba(77,224,255,0.06);
}

.security-service-card h3 {
    color: white;

    font-size: 1.2rem;

    margin-bottom: 12px;
}

.security-service-card p {
    color: #778387;

    font-size: 0.85rem;

    line-height: 1.7;
}

.service-status {
    position: absolute;

    left: 28px;
    bottom: 25px;

    color: #45ff9a;

    font-size: 0.55rem;

    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.cctv-project-grid {
    display: grid;

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

    gap: 18px;
}

.cctv-project-card {
    background: #070a0b;

    border:
        1px solid rgba(255,255,255,0.06);

    overflow: hidden;

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        border 0.3s ease;
}

.cctv-project-card.security-visible {
    opacity: 1;

    transform: translateY(0);
}

.cctv-project-card:hover {
    border-color:
        rgba(77,224,255,0.3);
}

.project-screen {
    min-height: 240px;

    display: flex;

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

    flex-direction: column;

    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(77,224,255,0.08),
            transparent 45%
        ),
        #030506;

    position: relative;

    overflow: hidden;
}

.project-screen::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,0.02),
            rgba(255,255,255,0.02) 1px,
            transparent 1px,
            transparent 5px
        );

    animation:
        projectScan 5s linear infinite;
}

@keyframes projectScan {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(10px);
    }

}

.project-screen span,
.project-screen strong,
.project-screen small {
    position: relative;
    z-index: 2;
}

.project-screen span {
    color: #4de0ff;

    font-size: 0.58rem;

    letter-spacing: 2px;
}

.project-screen strong {
    margin-top: 12px;

    color: white;

    font-size: 1rem;

    letter-spacing: 1px;
}

.project-screen small {
    margin-top: 8px;

    color: #566165;

    font-size: 0.55rem;

    letter-spacing: 1px;
}

.project-info {
    padding: 25px;
}

.project-info p {
    color: #4de0ff;

    font-size: 0.58rem;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.project-info h3 {
    color: white;

    font-size: 1.05rem;

    margin: 8px 0;
}

.project-info span {
    color: #667276;

    font-size: 0.75rem;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.cctv-final-cta {
    padding: 150px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(77,224,255,0.10),
            transparent 30%
        ),
        #030506;
}

.final-cta-system {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #45ff9a;

    font-size: 0.62rem;

    font-weight: 900;

    letter-spacing: 2px;
}

.cctv-final-cta h2 {
    margin: 30px auto 0;

    max-width: 900px;

    color: white;

    font-size:
        clamp(3rem, 7vw, 6rem);

    line-height: 0.9;

    letter-spacing: -4px;
}

.cctv-final-cta h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #4de0ff,
            #45ff9a
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.cctv-final-cta p {
    max-width: 600px;

    margin: 25px auto 0;

    color: #899598;

    line-height: 1.7;
}


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

@media (max-width: 950px) {

    .cctv-radar {
        right: -180px;
        opacity: 0.20;
    }

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

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

    .cctv-project-grid {
        grid-template-columns:
            1fr;
    }

}

@media (max-width: 650px) {

    .cctv-hero {
        min-height: 720px;
    }

    .cctv-hero h1 {
        font-size: 3.5rem;

        letter-spacing: -2px;
    }

    .cctv-radar {
        width: 300px;
        height: 300px;

        right: -140px;
    }

    .radar-one {
        width: 300px;
        height: 300px;
    }

    .radar-two {
        width: 210px;
        height: 210px;
    }

    .radar-three {
        width: 120px;
        height: 120px;
    }

    .cctv-video-container {
        min-height: 350px;
    }

    .cctv-showcase-video {
        height: 350px;
    }

    .security-dashboard {
        grid-template-columns:
            1fr;
    }

    .security-service-grid {
        grid-template-columns:
            1fr;
    }

    .security-network {
        min-height: 620px;

        transform: scale(0.85);

        transform-origin: top center;

        margin-bottom: -80px;
    }

    .monitor-topbar,
    .monitor-bottombar {
        font-size: 0.5rem;
    }

    .video-overlay {
        font-size: 0.48rem;
    }

    .cctv-final-cta h2 {
        letter-spacing: -2px;
    }

}


/* =========================================================
   CCTV MINI PREVIEW CARD (Homepage Portfolio Grid)
   ========================================================= */

.cctv-portfolio-card {
    background: #07090a;

    border:
        1px solid rgba(77,224,255,0.15);

    overflow: hidden;
}

.cctv-portfolio-link {
    display: block;
}

.cctv-portfolio-preview {
    min-height: 300px;

    position: relative;

    overflow: hidden;

    display: flex;

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

    flex-direction: column;

    text-align: center;

    padding: 30px;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(77,224,255,0.12),
            transparent 45%
        ),
        #030506;
}

.mini-grid {
    position: absolute;
    inset: 0;

    opacity: 0.18;

    background-image:
        linear-gradient(
            rgba(77,224,255,0.10) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(77,224,255,0.10) 1px,
            transparent 1px
        );

    background-size: 34px 34px;

    z-index: 1;
}

.mini-radar {
    position: absolute;

    width: 220px;
    height: 220px;

    right: -60px;
    bottom: -60px;

    border-radius: 50%;

    border: 1px solid rgba(69,255,154,0.20);

    z-index: 1;
}

.mini-radar::before {
    content: "";

    position: absolute;
    inset: 30px;

    border-radius: 50%;

    border: 1px solid rgba(77,224,255,0.18);
}

.mini-status {
    position: relative;
    z-index: 2;

    align-self: flex-start;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 12px;

    border: 1px solid rgba(69,255,154,0.25);

    background: rgba(69,255,154,0.04);

    color: #78ffb4;

    font-size: 0.6rem;
    font-weight: 900;

    letter-spacing: 1.2px;

    margin-bottom: 25px;
}

.mini-camera {
    position: relative;
    z-index: 2;

    color: #4de0ff;

    font-size: 2.4rem;

    margin-bottom: 15px;

    text-shadow:
        0 0 20px rgba(77,224,255,0.4);
}

.mini-title {
    position: relative;
    z-index: 2;

    color: white;

    font-size: 1.8rem;

    font-weight: 900;

    letter-spacing: -1px;

    line-height: 1;
}

.mini-subtitle {
    position: relative;
    z-index: 2;

    margin-top: 8px;

    color: #899598;

    font-size: 0.85rem;

    letter-spacing: 0.5px;
}

.cctv-portfolio-card .portfolio-info {
    background: #090c0d;
}

.cctv-portfolio-card .portfolio-info p {
    color: #4de0ff;
}

.cctv-portfolio-card .portfolio-info h3 {
    color: white;
}

.cctv-portfolio-card .portfolio-info span {
    color: #899397;
}


/* =========================================================
   CONTACT FORM STATUS MESSAGE
   ========================================================= */

.form-status {
    margin-top: 15px;

    color: var(--muted);

    font-size: 0.85rem;

    min-height: 1em;
}
.deskura-game-btn {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #00ff66;
    color: #00ff66;
    background: transparent;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: 0.3s ease;
}

.deskura-game-btn:hover {
    background: #00ff66;
    color: #050505;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
}

/* =========================================================
   MARKETING PROCESS PAGE
   ========================================================= */

.mp-hero {
    min-height: 92vh;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    background: var(--dark);
}

.mp-aurora {
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: blur(90px);
    opacity: 0.55;
}

.mp-aurora span {
    position: absolute;
    border-radius: 50%;
}

.mp-aurora span:nth-child(1) {
    width: 520px;
    height: 520px;
    background: var(--blue);
    top: -120px;
    left: -80px;
    animation: mpDrift1 16s ease-in-out infinite alternate;
}

.mp-aurora span:nth-child(2) {
    width: 460px;
    height: 460px;
    background: var(--green);
    bottom: -160px;
    right: -60px;
    animation: mpDrift2 18s ease-in-out infinite alternate;
}

.mp-aurora span:nth-child(3) {
    width: 380px;
    height: 380px;
    background: var(--blue-dark);
    top: 28%;
    right: 18%;
    animation: mpDrift3 20s ease-in-out infinite alternate;
}

@keyframes mpDrift1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(120px, 80px) scale(1.15); }
}

@keyframes mpDrift2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-100px, -60px) scale(1.1); }
}

@keyframes mpDrift3 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-80px, 100px) scale(0.9); }
}

.mp-hero-content {
    position: relative;
    z-index: 2;

    width: min(1180px, 90%);
    margin: auto;
    padding: 110px 0;
}

.mp-hero .eyebrow {
    color: #5ce0a7;
}

.mp-hero h1 {
    color: white;
    font-size: clamp(3rem, 7vw, 6rem);
    max-width: 800px;
    letter-spacing: -3px;
}

.mp-hero h1 span {
    background: linear-gradient(90deg, #29a9ff, #45e0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mp-hero-description {
    max-width: 620px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.12rem;
}


/* ---------- PROCESS STEPS ---------- */

.mp-process-section {
    padding: 120px 0;
}

.mp-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.mp-step {
    position: relative;
    padding: 32px 22px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: 0.3s ease;
}

.mp-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.mp-step-number {
    display: block;
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.mp-step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.mp-step p {
    color: var(--muted);
    font-size: 0.9rem;
}


/* ---------- SIGNATURE: THE PULSE / LIKE MOMENT ---------- */

.mp-pulse-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    text-align: center;
    background: var(--dark);
}

.mp-pulse-section .mp-aurora {
    opacity: 0.4;
}

.mp-pulse-inner {
    position: relative;
    z-index: 2;
    width: min(700px, 90%);
    margin: auto;
}

.mp-pulse-section .eyebrow {
    color: #5ce0a7;
}

.mp-pulse-heading {
    color: white;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: -2px;
    line-height: 1.1;
}

.mp-pulse-heading span {
    background: linear-gradient(90deg, #29a9ff, #45e0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mp-pulse-sub {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
}

.mp-like-wrap {
    margin: 55px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mp-like-btn {
    position: relative;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(8, 120, 209, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mp-like-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(24, 184, 121, 0.4);
}

.mp-like-btn.is-pressed {
    transform: scale(0.88);
}

.mp-like-btn svg {
    width: 46px;
    height: 46px;
    fill: white;
    position: relative;
    z-index: 2;
}

.mp-like-count {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.mp-like-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mp-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    pointer-events: none;
    animation: mpBurst 0.65s ease-out forwards;
}

@keyframes mpBurst {
    0% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(68px);
        opacity: 0;
    }
}


/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {
    .mp-aurora span {
        animation: none;
    }
    .mp-particle {
        animation: none;
        display: none;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 950px) {
    .mp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .mp-process-grid {
        grid-template-columns: 1fr;
    }

    .mp-hero {
        min-height: 640px;
    }

    .mp-like-btn {
        width: 96px;
        height: 96px;
    }

    .mp-like-btn svg {
        width: 38px;
        height: 38px;
    }
}


/* =========================================================
   PHOTOGRAPHY PAGE
   ========================================================= */

.photography-page {
    background: #05090d;
    color: #e9eef2;
    overflow-x: hidden;
}

.photography-page .site-header {
    background: rgba(5, 9, 13, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
}

.photography-page .nav-links a {
    color: #dfe6ea;
}

.photography-page .nav-links a:hover {
    color: var(--green);
}

.photography-page .nav-links a.nav-active {
    color: var(--green);
}

@media (max-width: 900px) {
    .photography-page .nav-links {
        background: #0b1117;
    }
}


/* ---------- HERO ---------- */

.photo-hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(24, 184, 121, 0.20), transparent 32%),
        radial-gradient(circle at 85% 75%, rgba(8, 120, 209, 0.22), transparent 35%),
        #05090d;
}

.photo-hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 3px 3px;
    pointer-events: none;
}

.photo-hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 90%);
    margin: auto;
    padding: 90px 0 70px;
}

.photo-hero-content h1 {
    color: white;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    margin: 10px 0 20px;
}

.photo-hero-content h1 span {
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.photo-hero-content p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.photo-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.photo-hero-buttons .button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}

.photo-hero-buttons .button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}


/* ---------- GALLERY ---------- */

.photo-gallery-section {
    padding: 110px 0;
}

.photo-gallery-section .section-heading p,
.photo-videos-section .section-heading p {
    color: rgba(255, 255, 255, 0.65);
}

.photo-gallery-section .eyebrow,
.photo-videos-section .eyebrow {
    color: var(--green);
}

.photo-gallery-section .section-heading h2,
.photo-videos-section .section-heading h2 {
    color: white;
}

.photo-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 130px;
    gap: 16px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: zoom-in;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.06);
}

.photo-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 45%);
    opacity: 0;
    transition: 0.3s ease;
}

.photo-item:hover::after {
    opacity: 1;
}

.photo-item-tall {
    grid-row: span 2;
}

.photo-item-wide {
    grid-column: span 2;
}


/* ---------- LIGHTBOX ---------- */

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(2, 4, 6, 0.94);
    padding: 30px;
    cursor: zoom-out;
}

.photo-lightbox.active {
    display: flex;
}

.photo-lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.photo-lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    color: white;
    font-size: 34px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}


/* ---------- VIDEOS ---------- */

.photo-videos-section {
    padding: 30px 0 130px;
}

.photo-video-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.photo-video-card {
    background: #0b1117;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.photo-video-card video {
    width: 100%;
    display: block;
    max-height: 520px;
    background: black;
}

.photo-video-caption {
    padding: 18px 20px 22px;
}

.photo-video-caption p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}


/* ---------- CTA STRIP ---------- */

.photo-cta {
    padding: 70px 0 120px;
    text-align: center;
}

.photo-cta a {
    color: white;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
}

@media (max-width: 600px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
        gap: 10px;
    }

    .photo-item-wide {
        grid-column: span 2;
    }

    .photo-gallery-section,
    .photo-videos-section {
        padding: 70px 0;
    }
}
