/* 
   Global Print Advertising Corp. - Premium Corporate Design System 2026
   Aesthetics: Luxury, Minimalist, Precision-Engineered
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Brand Colors */
    --brand-primary: #002D5B;
    --brand-secondary: #0056b3;
    --brand-accent: #DAA520;
    /* Subtle Gold for Luxury */

    /* Neutrals */
    --bg-main: #ffffff;
    --bg-alt: #f8f9fc;
    --text-heading: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;

    /* Functional */
    --white: #ffffff;
    --black: #000000;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(15, 23, 42, 0.8);

    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -10px rgba(0, 45, 91, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.4s var(--ease-out-expo);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
}

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

/* --- Navigation --- */
.navbar {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    padding: 1.25rem 0;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

/* Custom Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    transition: var(--transition-base);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--brand-primary);
    position: relative;
    transition: var(--transition-base);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--brand-primary);
    transition: var(--transition-base);
}

.navbar-toggler-icon::before {
    top: -8px;
    left: 0;
}

.navbar-toggler-icon::after {
    bottom: -8px;
    left: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.navbar-brand img {
    height: 48px;
    transition: var(--transition-base);
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-heading) !important;
    margin-left: 1.5rem;
    position: relative;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--brand-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

/* --- Hero Section --- */
.hero {
    padding: 180px 0 120px;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 20, 41, 0.8) 0%, rgba(8, 20, 41, 0.4) 100%);
    z-index: 1;
}

.hero-video-window {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.hero-video-window:hover {
    transform: translateY(-5px) scale(1.02);
}

.video-label {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gold);
    color: var(--midnight);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 3;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 650px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0;
}

.stat-item p {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* --- Buttons --- */
.btn-premium {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--brand-primary);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 10px 20px -5px rgba(0, 45, 91, 0.3);
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(8, 20, 41, 0.15);
    opacity: 0.95;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--midnight) !important;
}

.btn-outline-dark {
    transition: var(--transition-base);
    color: var(--text-heading);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.btn-outline-dark:hover {
    color: var(--brand-secondary);
    transform: translateX(5px);
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    background: #1877F2;
    /* Facebook Blue */
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2);
}

.btn-facebook:hover {
    background: #365899;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-social {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-social:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok:hover {
    background: #000;
    border-color: #ff0050;
}

.youtube:hover {
    background: #ff0000;
}

/* --- Video Reels --- */
.video-reel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.video-reel-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.video-reel-card video {
    background: #000;
    width: 100%;
    max-height: 420px;
}

.video-reel-card p {
    margin-top: 0.9rem;
    text-align: center;
}

.section-tag {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--brand-secondary);
    margin-bottom: 1rem;
    display: block;
}

.service-cat-card {


    /* ===============================
   SERVICES GRID (7 ITEMS FIX)
   =============================== */

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

    /* Tablet */
    @media (max-width: 991px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Force equal height */
    .service-cat-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Optional: Image / Placeholder area */
    .service-image {
        width: 100%;
        height: 180px;
        border-radius: var(--radius-sm);
        background: linear-gradient(135deg, #002D5B, #0056b3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.85rem;
        margin-bottom: 1rem;
        position: relative;
        overflow: hidden;
    }

    /* Hover effect (premium feel) */
    .service-cat-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    /* Fix last item (7th item center) */
    .services-grid .service-cat-card:nth-child(7) {
        grid-column: 2 / 3;
    }

    @media (max-width: 991px) {
        .services-grid .service-cat-card:nth-child(7) {
            grid-column: auto;
        }
    }



    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    height: 100%;
}

.service-cat-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(0, 45, 91, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.service-cat-card:hover .service-icon {
    background: var(--brand-primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-icons-wrapper {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(7, minmax(120px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.service-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    color: var(--text-heading);
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-icon-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 45, 91, 0.15);
    box-shadow: 0 20px 40px rgba(0, 45, 91, 0.08);
}

.service-icon-card:hover .service-icon {
    background: var(--brand-primary);
    color: var(--white);
}

.service-icon-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-heading);
}

@media (max-width: 1199px) {
    .service-icons-wrapper {
        grid-template-columns: repeat(4, minmax(140px, 1fr));
    }
}

@media (max-width: 767px) {
    .service-icons-wrapper {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
}

@media (max-width: 575px) {
    .service-icons-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- Detail Sections --- */
.detail-section {
    padding: 100px 0;
}

.detail-section:nth-child(even) {
    background-color: var(--bg-alt);
}

.info-content {
    padding-right: 2rem;
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    margin-top: 2rem;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-list li i {
    color: var(--brand-secondary);
}

/* --- Video Component --- */
.video-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background: var(--brand-primary);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--brand-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--brand-accent);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* --- Swiper Enhancements --- */
.swiper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.swiper-slide {
    height: 400px !important;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--brand-primary);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-soft);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem;
    font-weight: 800;
}

/* --- Projects Grid --- */
.project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

/* Mobile-friendly overlay for touch */
@media (hover: none) {
    .project-overlay {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
        padding: 1rem !important;
    }

    .project-overlay span {
        font-size: 0.75rem;
    }
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition-base);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.project-overlay span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* --- Services Section Wrapper --- */
.services-main-section {
    padding: 0;
}

.services-header {
    padding: 80px 0 60px;
    background: var(--bg-alt);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Projects Section --- */
.projects-section {
    padding: 100px 0;
    background: #0b132b;
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 86, 179, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.projects-section h2 {
    color: #fff;
}

.projects-section .section-tag {
    color: var(--brand-accent);
    border-color: rgba(218, 165, 32, 0.3);
    background: rgba(218, 165, 32, 0.08);
}

.projects-section .video-reel-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.projects-section .video-reel-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-accent);
    transform: translateY(-5px);
}

.projects-section .video-reel-card p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}

/* --- Contact Section --- */
#contact {
    background: var(--brand-primary);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#contact h2 {
    color: var(--white);
    font-size: 3rem;
}

#contact .section-tag {
    color: var(--brand-accent);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.form-control {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--brand-secondary);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* --- Floating Actions --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-float:active {
    transform: scale(0.9);
}

.btn-float.inquiry {
    background: var(--brand-accent);
}

.btn-float.back-to-top {
    background: var(--brand-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-float.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Modal Refinements --- */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 1rem;
    }

    .modal-content {
        border-radius: 20px !important;
    }
}

/* --- Footer --- */
footer {
    padding: 80px 0 0;
    background: #0b1f3a;
    border-top: 3px solid var(--brand-accent);
    color: rgba(255, 255, 255, 0.75);
}

.footer-logo img {
    height: 48px;
    margin: 0 auto 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Column headings */
.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-accent);
    border-bottom: 1px solid rgba(218, 165, 32, 0.3);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-links a i {
    font-size: 0.65rem;
    opacity: 0.6;
}

/* Social list */
.footer-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.footer-social-link i {
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-social-link.youtube {
    border-color: rgba(255, 0, 0, 0.35);
}

.footer-social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff !important;
}

.footer-social-link.tiktok {
    border-color: rgba(255, 0, 80, 0.3);
}

.footer-social-link.tiktok:hover {
    background: #010101;
    border-color: #ff0050;
    color: #fff !important;
}

.footer-social-link.instagram {
    border-color: rgba(220, 39, 67, 0.3);
}

.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #fff !important;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(218, 165, 32, 0.12);
    border: 1px solid rgba(218, 165, 32, 0.3);
    color: var(--brand-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 2px;
}

.footer-contact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.footer-contact-value {
    display: block;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-all;
}

.footer-contact-value:hover {
    color: var(--brand-accent);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    text-align: center;
}

/* --- Responsive --- */

/* Fix for small AOS offset on mobile */
@media (max-width: 768px) {
    [data-aos] {
        transition-delay: 0s !important;
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-soft);
    }

    .navbar-collapse {
        background: white;
        margin: 0 -1rem;
        padding: 1.5rem;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-link {
        margin: 0.5rem 0;
        font-size: 1.1rem;
    }

    .nav-link::after {
        bottom: 0;
        left: 0;
        transform: none;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 30px;
    }

    .hero {
        padding: 140px 0 80px;
        text-align: center;
    }

    .hero p {
        margin-inline: auto;
        font-size: 1.1rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-btns .btn-premium,
    .hero-btns .btn-outline-light {
        width: 100%;
        max-width: 300px;
        margin-left: 0 !important;
    }

    .info-content {
        padding-right: 0;
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .info-list {
        display: inline-block;
        text-align: left;
    }

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

    .section-tag {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --radius-lg: 16px;
        --radius-md: 12px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    h2 {
        font-size: 2rem !important;
    }

    .service-cat-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .swiper-slide {
        height: 250px !important;
    }

    .project-card .project-overlay {
        padding: 1.25rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    #contact h2 {
        font-size: 2.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .col-6 {
        width: 100%;
    }

    /* Stack 2-col grids on very small screens for better readability */

    .service-cat-card {
        text-align: center;
    }

    .service-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info-item {
        gap: 1rem;
    }

    .contact-info-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* --- Mobile Optimizations --- */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 40px;
    }

    .navbar-collapse {
        padding: 1rem 1.25rem 1.25rem;
    }

    .nav-dd-panel {
        position: static;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 0.25rem 0 0 0.5rem;
    }

    .nav-dd-inner {
        padding: 0;
        background: transparent;
    }

    .nav-dd-link {
        padding: 0.6rem 0.75rem;
        border-radius: 10px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 3rem);
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-btns,
    .hero-quick-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btns .btn-premium,
    .hero-btns .btn-outline-light,
    .hqa-btn {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        justify-content: center;
    }

    .detail-section,
    .how-to-order-section,
    .portfolio-section,
    .projects-section,
    .services-header {
        padding: 70px 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .floating-actions {
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero {
        padding: 128px 0 70px;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.98rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .hero-stats .stat-item {
        min-width: 110px;
    }

    .section-tag {
        margin-bottom: 0.75rem;
    }

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

    .pf-item,
    .project-card,
    .masonry-card {
        aspect-ratio: 4 / 3;
    }

    .masonry-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 10px;
    }

    /* Reset slot positioning on mobile — all cards flow naturally */
    .masonry-grid .masonry-card[data-slot="0"],
    .masonry-grid .masonry-card[data-slot="1"],
    .masonry-grid .masonry-card[data-slot="2"],
    .masonry-grid .masonry-card[data-slot="3"],
    .masonry-grid .masonry-card[data-slot="4"],
    .masonry-grid .masonry-card[data-slot="5"],
    .masonry-grid .masonry-card[data-slot="6"],
    .masonry-grid .masonry-card[data-slot="7"],
    .masonry-grid .masonry-card[data-slot="8"],
    .masonry-grid .masonry-card[data-slot="9"] {
        grid-column: auto;
        grid-row: auto;
    }

    .masonry-card {
        width: 100%;
        min-height: unset;
    }

    .masonry-card .card-img-wrap {
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: unset;
        background: #111;
    }

    /* Show FULL image — no cropping on mobile */
    .masonry-card .card-img-wrap img {
        object-fit: contain;
        transform: none;
        background: #111;
    }

    .masonry-card:hover .card-img-wrap img {
        transform: none;
    }

    .ui-grid-card .card-img-wrap {
        height: 220px;
    }

    .video-box video,
    .video-reel-card video {
        height: auto;
        max-height: none;
    }

    .contact-form {
        padding: 1.25rem;
    }

    #contact {
        padding: 80px 0;
    }

    #contact h2 {
        font-size: 2.1rem;
    }

    footer {
        padding: 60px 0 0;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 70px 0;
    }

    .portfolio-filters {
        gap: 0.45rem;
        margin-bottom: 1rem;
    }

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

    .pf-item {
        aspect-ratio: 1 / 1;
        border-radius: 14px;
        min-height: 0;
    }

    .pf-item img {
        object-fit: cover;
    }

    .pf-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.16) 55%, transparent 100%);
        padding: 0.8rem;
    }

    .pf-info p {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }

    .pf-zoom {
        width: 30px;
        height: 30px;
    }

    .pf-lightbox {
        flex-direction: column;
        padding: 1rem 1rem 2rem;
    }

    .pf-lb-content {
        width: min(92vw, 520px);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pf-lb-prev,
    .pf-lb-next {
        position: static;
        transform: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        margin: 0.75rem 0.35rem 0;
    }

    .pf-lb-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }

    .pf-item,
    .project-card,
    .masonry-card {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 36px;
    }

    .hero h1 {
        font-size: 2.05rem;
    }

    .hero-btns .btn-premium,
    .hero-btns .btn-outline-light,
    .hqa-btn {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .hero-quick-actions {
        gap: 0.6rem;
    }

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

    .service-cat-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .service-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .hto-step {
        padding: 1.75rem 1rem;
    }

    .contact-info-item {
        gap: 1rem;
    }

    .contact-info-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .pf-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Utilities --- */
.cursor-pointer {
    cursor: pointer;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

/* =====================================================
   NEW FEATURES CSS
   ===================================================== */

/* --- Hero Quick Actions --- */
.hero-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hqa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    color: #fff !important;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
}

.hqa-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.15);
}

.hqa-quote {
    background: rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.6);
}

.hqa-quote:hover {
    background: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
}

.hqa-call {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.5);
}

.hqa-call:hover {
    background: #22c55e !important;
    border-color: #22c55e !important;
}

.hqa-wa {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.5);
}

.hqa-wa:hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
}

/* --- How to Order / Differentiators --- */
.how-to-order-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.hto-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.hto-step {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--brand-accent);
    text-align: center;
    position: relative;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
    height: 100%;
}

.hto-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(0, 45, 91, 0.1);
    border-top-color: var(--brand-secondary);
}

.hto-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(218, 165, 32, 0.2);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.hto-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 45, 91, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--brand-primary);
    margin: 0 auto 1.5rem;
    transition: var(--transition-base);
}

.hto-step:hover .hto-icon {
    background: var(--brand-primary);
    color: var(--white);
}

.hto-step h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-heading);
}

.hto-step p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1199px) {
    .hto-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hto-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hto-steps {
        grid-template-columns: 1fr;
    }
}

/* --- Portfolio Section --- */
.portfolio-section {
    padding: 100px 0;
    background: var(--bg-main);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pf-btn {
    padding: 0.55rem 1rem;
    border: 2px solid #e2e8f0;
    background: transparent;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.25s ease;
}

.pf-btn:hover,
.pf-btn.active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.pf-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #111;
}

.pf-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.pf-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.pf-item:hover img {
    transform: scale(1.07);
}

.pf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.pf-item:hover .pf-overlay,
.pf-item.placeholder-slot .pf-overlay {
    opacity: 1;
}

.pf-info {
    width: 100%;
}

.pf-cat {
    display: inline-block;
    background: var(--brand-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 0.4rem;
}

.pf-info p {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.pf-zoom {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 0.75rem;
}

.pf-zoom:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.pf-item.hidden {
    display: none;
}

/* Lightbox */
.pf-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pf-lb-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.pf-lb-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.pf-lb-caption {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.pf-lb-close,
.pf-lb-prev,
.pf-lb-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.pf-lb-close:hover,
.pf-lb-prev:hover,
.pf-lb-next:hover {
    background: var(--brand-accent);
}

.pf-lb-close {
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.pf-lb-prev {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 80px;
    border-radius: 8px;
}

.pf-lb-next {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 80px;
    border-radius: 8px;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.testi-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s var(--ease-out-expo);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.testi-featured {
    background: linear-gradient(135deg, var(--brand-primary), #00448a);
    color: white;
    border-color: transparent;
}

.testi-featured .testi-text,
.testi-featured strong {
    color: white;
}

.testi-featured .testi-author span {
    color: rgba(255, 255, 255, 0.65);
}

.testi-stars {
    color: var(--brand-accent);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.testi-text {
    font-size: 0.925rem;
    line-height: 1.7;
    color: var(--text-body);
    flex-grow: 1;
    font-style: italic;
    margin: 0;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testi-featured .testi-avatar {
    background: rgba(255, 255, 255, 0.2);
}

.testi-author strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-heading);
}

.testi-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Quick Inquire Form Fields --- */
.qi-form .contact-form {
    padding: 2rem;
}

.qi-field {
    position: relative;
    margin-bottom: 0;
}

.qi-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-secondary);
    font-size: 0.875rem;
    z-index: 2;
    pointer-events: none;
}

.qi-field textarea+.qi-icon,
.qi-field select+.qi-icon,
.qi-field input+.qi-icon {
    top: 18px;
    transform: none;
}

.qi-field .form-control {
    padding-left: 2.5rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    border-radius: 10px !important;
    margin-bottom: 0;
}

.qi-field select.form-control {
    padding-left: 2.5rem;
    cursor: pointer;
}

.qi-field .form-control.is-invalid {
    border-color: #ef4444;
}

.qi-error {
    display: none;
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 4px;
    padding-left: 4px;
}

.qi-field.has-error .form-control {
    border-color: #ef4444;
}

.qi-field.has-error .qi-error {
    display: block;
}

.qi-upload-zone {
    border: 2px dashed rgba(0, 45, 91, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    background: rgba(0, 45, 91, 0.02);
}

.qi-upload-zone:hover,
.qi-upload-zone.drag-over {
    border-color: var(--brand-secondary);
    background: rgba(0, 86, 179, 0.05);
}

.qi-upload-zone i {
    font-size: 2rem;
    color: var(--brand-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.qi-upload-zone p {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-heading);
}

.qi-upload-zone small {
    color: var(--text-muted);
}

.qi-filename {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--brand-secondary);
    font-weight: 600;
}

.qi-success {
    text-align: center;
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    width: 100%;
    margin-top: 0.5rem;
}

.qi-success i {
    font-size: 3rem;
    color: #22c55e;
    display: block;
    margin-bottom: 0.75rem;
}

.qi-success h5 {
    color: #166534;
    font-size: 1.1rem;
}

.qi-success p {
    color: #15803d;
    margin: 0;
    font-size: 0.875rem;
}

.qi-error-msg {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    width: 100%;
    margin-top: 0.5rem;
}

/* Contact section form: proper light-theme styles on white card */
#contact .qi-field .form-control {
    background: #ffffff;
    border-color: #e2e8f0;
    color: var(--text-heading);
}

#contact .qi-field .form-control::placeholder {
    color: var(--text-muted);
}

#contact .qi-field .form-control option {
    background: #ffffff;
    color: var(--text-heading);
}

#contact .qi-field .form-control:focus {
    border-color: var(--brand-secondary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.08);
}

#contact .qi-icon {
    color: var(--brand-secondary);
}

#contact .qi-upload-zone {
    border-color: rgba(0, 45, 91, 0.2);
    background: rgba(0, 45, 91, 0.02);
}

#contact .qi-upload-zone:hover {
    border-color: var(--brand-secondary);
    background: rgba(0, 86, 179, 0.05);
}

#contact .qi-upload-zone i {
    color: var(--brand-secondary);
}

#contact .qi-upload-zone p {
    color: var(--text-heading);
}

#contact .qi-upload-zone small {
    color: var(--text-muted);
}

#contact .qi-filename {
    color: var(--brand-secondary);
}

/* --- Request Quotation Modal --- */
.rq-modal {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.rq-modal-header {
    background: linear-gradient(135deg, var(--brand-primary), #00448a);
    color: white;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.rq-modal-header h4 {
    color: white;
    font-size: 1.3rem;
    margin: 0 0 0.25rem;
    font-weight: 700;
}

.rq-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}



/* --- Responsive Hero Quick Actions --- */
@media (max-width: 991px) {
    .hero-quick-actions {
        justify-content: center;
    }
}

/* ================================================================
   PORTFOLIO FILTER ANIMATION
   ================================================================ */
@keyframes pfFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.pf-item {
    animation: pfFadeIn 0.35s ease forwards;
}

/* ================================================================
   VIDEO REEL — larger display for cinematic reels
   ================================================================ */
.video-reel {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    max-height: none;
}

.video-reel-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    max-height: none;
}

.projects-section .row.g-3>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.projects-section .row.g-3>[class*="col-"] .video-reel-card {
    flex: 1;
}

@media (min-width: 768px) {
    .video-reel,
    .video-reel-card video {
        max-height: 540px;
    }
}

/* ================================================================
   BLANK VIDEO PLACEHOLDER SLOT
   ================================================================ */
.video-blank-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px dashed rgba(0, 45, 91, 0.2);
    background: var(--bg-alt);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.video-blank-placeholder i {
    font-size: 1.8rem;
    opacity: 0.4;
}

.video-blank-placeholder:hover {
    border-color: var(--brand-secondary);
    color: var(--brand-secondary);
}

@media (min-width: 768px) {
    .video-blank-placeholder {
        height: 220px;
    }
}

/* ================================================================
   FORM DATE INPUT — fix placeholder styling
   ================================================================ */
input[type="date"].form-control {
    color: var(--text-body);
}

input[type="date"].form-control:not(:valid) {
    color: #adb5bd;
}

/* ================================================================
   QUICK INQUIRY / QUOTATION FORM — responsive improvements
   ================================================================ */
@media (max-width: 576px) {
    .contact-form {
        padding: 1.5rem;
    }

    .qi-field {
        margin-bottom: 0.25rem;
    }

    .rq-modal-header {
        padding: 1.25rem !important;
    }
}

/* ===== PORTFOLIO BLANK PLACEHOLDER & UPLOAD CARDS ===== */
.pf-blank-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-md);
    gap: 0.75rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.pf-upload-card:hover .pf-blank-placeholder {
    border-color: var(--brand-accent);
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
}

.pf-blank-placeholder i {
    font-size: 2.5rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.pf-upload-card:hover .pf-blank-placeholder i {
    color: var(--brand-accent);
}

.pf-blank-placeholder p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin: 0;
    text-align: center;
}

.pf-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: var(--brand-primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.02em;
}

.pf-upload-btn:hover {
    background: var(--brand-accent);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.pf-upload-btn input[type="file"] {
    display: none;
}

/* Showcase placeholder (service detail sections) */
.showcase-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-md);
    gap: 1rem;
    color: #94a3b8;
}

.showcase-placeholder i {
    font-size: 3.5rem;
}

.showcase-placeholder span {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

/* ============================================================
   SERVICE GALLERY — upload bar & change button
   ============================================================ */

.service-gallery-wrap {
    position: relative;
}

.svc-upload-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.svc-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-primary, #1a237e);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.svc-upload-btn:hover {
    background: var(--brand-gold, #c9a227);
    transform: translateY(-1px);
}

.svc-upload-btn input[type="file"] {
    display: none;
}

.svc-img-count {
    font-size: 0.78rem;
    font-weight: 600;
    color: #666;
}

/* Floating "Change" button on uploaded service slides */
.svc-change-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
    z-index: 10;
}

.svc-change-btn:hover {
    background: var(--brand-gold, #c9a227);
}

/* ============================================================
   PORTFOLIO — "Change photo" camera overlay on uploaded cards
   ============================================================ */

.pf-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.pf-change-photo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    color: #fff;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.pf-change-photo:hover {
    background: var(--brand-gold, #c9a227);
    border-color: var(--brand-gold, #c9a227);
}

.pf-change-photo input[type="file"] {
    display: none;
}

/* ============================================================
   PINTEREST-STYLE MASONRY  (Services, Portfolio & Projects)
   ============================================================ */

/* ── Container ─────────────────────────────────────────────
   CSS Grid: 1 large featured card (slot 0, left) + 4 equal
   cards arranged 2 columns x 2 rows (slots 1-4, right).
   Height is capped so the collage stays compact, not oversized.
   ─────────────────────────────────────────────────────────── */
.masonry-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 496px;
    margin-top: 1.5rem;
}

/* Slot 0 = big featured card, spans both rows on the left */
.masonry-grid .masonry-card[data-slot="0"] {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Slots 1-4 = the four equal small cards, 2 cols x 2 rows on the right */
.masonry-grid .masonry-card[data-slot="1"] {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.masonry-grid .masonry-card[data-slot="2"] {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.masonry-grid .masonry-card[data-slot="3"] {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.masonry-grid .masonry-card[data-slot="4"] {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* ── Card shell ────────────────────────────────────────── */
.masonry-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.masonry-card:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

/* ── Image wrapper — fills its grid cell completely ─────── */
.masonry-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    flex: 1;
}

.masonry-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    transform: scale(1.03);
}

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

/* ── Hover overlay ─────────────────────────────────────── */
.masonry-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(10, 20, 40, 0.87) 0%,
            rgba(10, 20, 40, 0.18) 52%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem 1rem 1.05rem;
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

.masonry-card:hover .card-overlay {
    opacity: 1;
}

/* Expand pill — top-right corner */
.card-overlay .ov-expand {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.72rem;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
    pointer-events: all;
}

.masonry-card:hover .ov-expand {
    opacity: 1;
    transform: scale(1);
}

.ov-expand:hover {
    background: var(--brand-gold, #c9a227);
    border-color: var(--brand-gold, #c9a227);
}

/* Overlay text */
.card-overlay .ov-title {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0 0 0.14rem;
    transform: translateY(7px);
    transition: transform 0.3s ease;
    line-height: 1.3;
}

.card-overlay .ov-cat {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    margin: 0;
    transform: translateY(7px);
    transition: transform 0.3s ease 0.04s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.masonry-card:hover .ov-title,
.masonry-card:hover .ov-cat {
    transform: translateY(0);
}

/* ── Card text body (below image) ──────────────────────── */
.masonry-card .card-text-body {
    padding: 0.75rem 0.9rem 0.85rem;
    flex: 1;
}

.card-text-body .ct-tag {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-primary, #0056b3);
    background: rgba(0, 86, 179, 0.09);
    border-radius: 20px;
    padding: 2px 9px;
    display: inline-block;
    margin-bottom: 0.28rem;
}

.card-text-body .ct-title {
    font-size: 0.87rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.35;
}

/* ── "Coming Soon" placeholder card ────────────────────── */
.masonry-card.mc-placeholder {
    cursor: default;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.masonry-card.mc-placeholder:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.masonry-card.mc-placeholder .card-img-wrap {
    background: linear-gradient(135deg, #1a2a4a 0%, #0f3460 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.55rem;
}

.mc-placeholder .ph-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    border: 1.5px dashed rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-placeholder .ph-circle i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.35);
}

.mc-placeholder .ph-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Service Flyer / Poster Display ─────────────────────── */
.svc-flyer-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 0.75rem;
    cursor: pointer;
}

.svc-flyer-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.svc-flyer-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.svc-flyer-wrap:hover img {
    transform: scale(1.03);
}

/* Placeholder state — reuses the same dashed-circle language as mc-placeholder */
.svc-flyer-wrap.mc-placeholder {
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.55rem;
    background: linear-gradient(135deg, #1a2a4a 0%, #0f3460 50%, #16213e 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.svc-flyer-wrap.mc-placeholder:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
    .svc-flyer-wrap {
        aspect-ratio: 16 / 10;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── Upload button ──────────────────────────────────────── */
.ui-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-primary, #0056b3);
    border: 1.5px solid var(--brand-primary, #0056b3);
    border-radius: 8px;
    padding: 6px 14px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    background: transparent;
}

.ui-upload-label:hover {
    background: var(--brand-primary, #0056b3);
    color: #fff;
}

/* ── Jump Navigation Buttons ───────────────────────────── */
.pf-jump-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    color: var(--brand-primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.pf-jump-btn:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ── Responsive ─────────────────────────────────────────── */

/* Tablet: same 1-big + 2x2 grid, just a bit shorter */
@media (max-width: 991px) {
    .masonry-grid {
        height: 374px;
        gap: 14px;
    }
}

/* Mobile: stack every card vertically, single column */
@media (max-width: 767px) {
    .masonry-grid {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 14px;
    }

    .masonry-card {
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100%;
        aspect-ratio: 4 / 3;
        min-height: 220px;
    }

    /* Adjust overlay for mobile to prevent caption merge with photo */
    .masonry-card .card-overlay {
        background: linear-gradient(to top, rgba(10, 20, 40, 0.88) 0%, rgba(10, 20, 40, 0.55) 40%, transparent 100%) !important;
        padding: 1.2rem 1rem 1.5rem !important;
        justify-content: flex-end;
    }

    .masonry-card .card-overlay .ov-title {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
        transform: translateY(0) !important;
    }

    .masonry-card .card-overlay .ov-cat {
        font-size: 0.75rem;
        transform: translateY(0) !important;
    }
}

/* ── Touch devices — always reveal overlay ─────────────── */
@media (hover: none) {
    .masonry-card .card-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(10, 20, 40, 0.88) 0%, rgba(10, 20, 40, 0.5) 45%, transparent 100%);
        padding: 1.2rem 1rem 1.5rem;
    }

    .card-overlay .ov-title,
    .card-overlay .ov-cat {
        transform: translateY(0);
    }

    .card-overlay .ov-expand {
        opacity: 1;
        transform: scale(1);
    }
}


.ui-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 1.5rem;
}

.ui-grid-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.ui-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

/* Image container */
.ui-grid-card .card-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.ui-grid-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ui-grid-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

/* Hover overlay */
.ui-grid-card .card-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 40, 0.82) 0%, rgba(10, 20, 40, 0.2) 55%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem 1.1rem;
}

.ui-grid-card:hover .card-hover-overlay {
    opacity: 1;
}

.card-hover-overlay .overlay-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.card-hover-overlay .overlay-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    margin: 0;
    transform: translateY(8px);
    transition: transform 0.3s ease 0.04s;
}

.ui-grid-card:hover .overlay-title,
.ui-grid-card:hover .overlay-sub {
    transform: translateY(0);
}

/* Expand icon on hover */
.card-hover-overlay .overlay-expand {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s;
}

.ui-grid-card:hover .overlay-expand {
    opacity: 1;
}

.overlay-expand:hover {
    background: var(--brand-gold, #c9a227) !important;
    border-color: var(--brand-gold, #c9a227) !important;
}

/* Card text body (below image) */
.ui-grid-card .card-body-text {
    padding: 1rem 1.1rem 1.1rem;
    flex: 1;
}

.card-body-text .card-cat-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-primary, #0056b3);
    background: rgba(0, 86, 179, 0.08);
    border-radius: 20px;
    padding: 2px 10px;
    margin-bottom: 0.4rem;
}

.card-body-text .card-title-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.25rem;
}

.card-body-text .card-desc-text {
    font-size: 0.82rem;
    color: #718096;
    margin: 0;
    line-height: 1.45;
}

/* "Coming Soon" styled placeholder */
.ui-grid-card.ui-placeholder-card {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    cursor: default;
}

.ui-grid-card.ui-placeholder-card:hover {
    transform: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.ui-grid-card .card-img-wrap.placeholder-img-wrap {
    background: linear-gradient(135deg, #1a2a4a 0%, #0f3460 45%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}

.placeholder-img-wrap .ph-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px dashed rgba(255, 255, 255, 0.3);
}

.placeholder-img-wrap .ph-icon i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.45);
}

.placeholder-img-wrap .ph-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Upload label styled as a ghost button */
.ui-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-primary, #0056b3);
    border: 1.5px solid var(--brand-primary, #0056b3);
    border-radius: 8px;
    padding: 6px 14px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    background: transparent;
}

.ui-upload-label:hover {
    background: var(--brand-primary, #0056b3);
    color: #fff;
}

/* Jump Navigation Buttons */
.pf-jump-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    color: var(--brand-primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.pf-jump-btn:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Touch devices — always show overlay */
@media (hover: none) {
    .ui-grid-card .card-hover-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(10, 20, 40, 0.7) 0%, transparent 60%);
    }

    .card-hover-overlay .overlay-title,
    .card-hover-overlay .overlay-sub {
        transform: translateY(0);
    }

    .card-hover-overlay .overlay-expand {
        opacity: 1;
    }
}

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


/* ================================================================
   NAVBAR HOVER DROPDOWN MENUS  (matches impactsigns.com reference)
   ================================================================ */

/* ── Dropdown item wrapper ─────────────────────────────────────── */
.nav-dd-item {
    position: relative;
}

/* Chevron rotates on hover */
.nav-dd-chevron {
    font-size: 0.65rem;
    margin-left: 3px;
    transition: transform 0.3s ease;
    vertical-align: 1px;
    display: inline-block;
}

.nav-dd-item:hover .nav-dd-chevron,
.nav-dd-item.dd-open .nav-dd-chevron {
    transform: rotate(180deg);
}

/* ── Dropdown panel (desktop: absolute) ───────────────────────── */
.nav-dd-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    z-index: 10000;
    min-width: 270px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.07);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

/* Arrow notch at top of panel */
.nav-dd-panel::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ffffff;
    filter: drop-shadow(0 -2px 1px rgba(0, 0, 0, 0.05));
}

/* Mega menu arrow positioning */
.nav-mega-menu::before {
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
}

/* Show on hover / open */
.nav-dd-item:hover .nav-dd-panel,
.nav-dd-item.dd-open .nav-dd-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* ── Inner scroll container ───────────────────────────────────── */
.nav-dd-inner {
    padding: 0.5rem 0;
    max-height: 420px;
    overflow-y: auto;
}

/* ── Individual dropdown link ─────────────────────────────────── */
.nav-dd-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.1rem;
    color: var(--text-body) !important;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    border-bottom: none !important;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
    white-space: nowrap;
    line-height: 1.4;
}

.nav-dd-link::after {
    display: none !important;
    /* suppress nav-link underline pseudo-element */
}

.nav-dd-link:hover {
    background: var(--bg-alt);
    color: var(--brand-primary) !important;
    padding-left: 1.35rem;
}

/* Icon chip */
.nav-dd-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(0, 45, 91, 0.07);
    color: var(--brand-primary);
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: background 0.18s ease, color 0.18s ease;
}

.nav-dd-link:hover .nav-dd-icon {
    background: var(--brand-primary);
    color: #ffffff;
}

/* ── Keep the toggle link looking normal ─────────────────────── */
.nav-dd-toggle {
    display: flex !important;
    align-items: center;
    gap: 0;
    cursor: pointer;
}

/* ── Mobile override — accordion style ───────────────────────── */
@media (max-width: 991px) {
    .nav-dd-panel {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        border-left: 3px solid var(--brand-primary);
        background: rgba(0, 45, 91, 0.04);
        padding: 0;
        margin: 0.25rem 0 0.5rem 1rem;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s;
        pointer-events: none;
        min-width: 0;
    }

    .nav-dd-panel::before {
        display: none;
    }

    .nav-dd-item.dd-open .nav-dd-panel {
        visibility: visible;
        max-height: 600px;
        pointer-events: all;
    }

    .nav-dd-inner {
        padding: 0.25rem 0;
        max-height: none;
    }

    .nav-dd-link {
        white-space: normal;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .nav-dd-link:hover {
        padding-left: 1.2rem;
    }

    .nav-dd-toggle {
        justify-content: space-between;
        width: 100%;
    }
}

/* ================================================================
   MEGA MENU STYLES (Grid-based Services & Portfolio dropdowns)
   ================================================================ */

/* Mega menu specific overrides */
.nav-mega-menu {
    min-width: 900px;
    width: 90vw;
    max-width: 1200px;
    left: 50% !important;
    transform: translateX(-50%) translateY(-6px) !important;
}

.nav-mega-menu .nav-dd-inner {
    padding: 2rem;
    max-height: 600px;
    overflow-y: auto;
}

/* Main grid container for mega menu items */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0.5rem 0;
}

/* Individual mega menu item */
.mega-menu-item {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none !important;
    color: inherit;
    background: transparent;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mega-menu-item:hover {
    background: rgba(0, 45, 91, 0.05);
    border-left-color: var(--brand-primary);
    padding-left: 1.5rem;
}

/* Service title in mega menu */
.mega-menu-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

/* Icon styling in mega menu items */
.mega-menu-item i {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(0, 45, 91, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.mega-menu-item:hover i {
    background: var(--brand-primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Description text in mega menu */
.mega-menu-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.mega-menu-item:hover .mega-menu-desc {
    color: var(--text-body);
}

/* Responsive: Tablet - 2 columns */
@media (max-width: 1199px) {
    .nav-mega-menu {
        min-width: 700px;
        width: 85vw;
        max-width: 900px;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .nav-mega-menu .nav-dd-inner {
        padding: 1.5rem;
    }
}

/* Responsive: Mobile - single column accordion */
@media (max-width: 991px) {
    .nav-mega-menu {
        position: static !important;
        transform: none !important;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        border-left: 3px solid var(--brand-primary);
        background: rgba(0, 45, 91, 0.04);
        padding: 0;
        margin: 0.25rem 0 0.5rem 1rem;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, visibility 0.3s;
        pointer-events: none;
    }

    .nav-mega-menu::before {
        display: none;
    }

    .nav-dd-item.dd-open .nav-mega-menu {
        visibility: visible;
        max-height: 1200px;
        pointer-events: all;
    }

    .nav-mega-menu .nav-dd-inner {
        padding: 0.5rem 0;
        max-height: none;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .mega-menu-item {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 45, 91, 0.1);
        margin-bottom: 0.5rem;
    }

    .mega-menu-item:hover {
        padding-left: 1.3rem;
    }

    .mega-menu-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .mega-menu-desc {
        font-size: 0.8rem;
    }
}

/* ================================================================
   HERO MASONRY COLLAGE (staggered 2-column image layout)
   ================================================================ */
.hero-masonry {
    display: flex;
    gap: 1.25rem;
    height: 480px;
    padding: 0.5rem;
}

.hm-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Staggered alignments */
.hm-col-left {
    padding-top: 2rem;
}

.hm-col-right {
    padding-bottom: 2rem;
}

.hm-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: #111;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

/* Hover effects */
.hm-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px -10px rgba(0, 45, 91, 0.35);
    z-index: 10;
}

.hm-item:hover img {
    transform: scale(1.08);
}

/* Staggered Heights */
.hm-item-1 {
    height: 60%;
}

.hm-item-2 {
    height: 40%;
}

.hm-item-3 {
    height: 35%;
}

.hm-item-4 {
    height: 40%;
}

.hm-item-5 {
    height: 25%;
}


/* ================================================================
   STRUCTURAL LAYOUT REFINEMENTS  — matching impactsigns.com
   ================================================================ */

/* 1. Service Showcases — split layout (col-lg-4 text / col-lg-8 masonry)
   ──────────────────────────────────────────────────────────────────── */

/* Reduce masonry height inside the narrower right column */
.col-lg-8 .masonry-grid {
    height: 420px;
    margin-top: 0;
}

/* Service showcase section heading sizing */
#service-showcases h3.h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Section-tag left-aligned (used inline on service showcase left columns) */
.section-tag[style*="flex-start"] {
    display: flex;
    justify-content: flex-start !important;
    margin-bottom: 0.75rem;
}

/* Service-trigger button — inherits .btn-premium but tweaked for section use */
.service-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* 2. Hero Section — tighten vertical padding slightly on desktop
   ─────────────────────────────────────────────────────────────── */
.hero {
    padding: 140px 0 80px;
}

/* 3. About Section — video-label overflow fix
   ─────────────────────────────────────────── */
.video-box.overflow-visible {
    overflow: visible !important;
}

/* 4. How to Order heading inside section
   ─────────────────────────────────────── */
.how-to-order-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

/* 5. Testimonials — card review title styling
   ────────────────────────────────────────── */
.testi-card h4.h5 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* 6. Masonry grid responsive inside col-lg-8
   ─────────────────────────────────────────── */
@media (max-width: 991px) {

    /* On tablet/mobile the grid goes full-width, restore normal height */
    .col-lg-8 .masonry-grid {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .col-lg-8 .masonry-grid {
        height: auto;
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(180px, auto);
        margin-top: 1rem;
    }

    .col-lg-8 .masonry-grid .masonry-card {
        grid-column: auto !important;
        grid-row: auto !important;
        height: auto;
        min-height: 0;
    }

    .col-lg-8 .masonry-grid .masonry-card .card-img-wrap {
        aspect-ratio: 1 / 1;
    }

    /* Ensure the service showcase layout stacks cleanly on small screens */
    #service-showcases .row.align-items-center {
        flex-direction: column;
    }

    /* Slider controls centered under the grid */
    .slider-controls {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }

    .slide-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
    }

    .slide-indicator {
        width: 100%;
        text-align: center;
    }

    .btn-slider {
        min-width: 120px;
    }

    /* Hero masonry hides on mobile (already d-none d-lg-block on the column) */
    .hero-masonry {
        display: none;
    }

    /* How to order grid */
    .hto-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hto-steps {
        grid-template-columns: 1fr;
    }
}

/* 7. Footer social list (ensure 3-col footer is balanced on medium screens)
   ─────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .footer-grid .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* 8. Smooth section transitions — fade between alternating backgrounds
   ─────────────────────────────────────────────────────────────────── */
#service-showcases section {
    transition: background-color 0.3s ease;
}

/* 9. Detail section text column padding on desktop
   ─────────────────────────────────────────────── */
@media (min-width: 992px) {
    #service-showcases .col-lg-4 {
        padding-right: 2.5rem;
    }
}

/* ==========================================================================
   SERVICES SLIDER & ABOUT US EXTENSIONS
   ========================================================================== */

/* Fade-in slide transition animation */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-slider-container {
    position: relative;
    width: 100%;
}

.services-slider-container .masonry-grid.active-slide {
    display: grid !important;
    animation: fadeInSlide 0.5s var(--ease-out-expo) forwards;
}

.services-slider-container .masonry-grid:not(.active-slide) {
    display: none !important;
}

/* Slider Controls */
.btn-slider {
    background: transparent;
    border: 1px solid rgba(0, 45, 91, 0.15);
    color: var(--brand-primary);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-slider:hover:not(:disabled) {
    background: var(--brand-primary);
    color: var(--white);
    border-color: var(--brand-primary);
    transform: translateY(-1px);
}

.btn-slider:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slide-indicator {
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========================================
   ABOUT US - REDESIGNED
   ======================================== */

.about-section {
    padding: 100px 0;
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Lead / Body text */
.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.75;
    color: #1a2a4a;
    margin-bottom: 1rem;
}

.about-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.about-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
}

.about-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
    background: linear-gradient(135deg, #0b1f3a, #1a3a6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #8a9bb0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(218, 165, 32, 0.25);
    margin: 0 0.5rem;
    flex-shrink: 0;
}

/* Feature Cards */
.about-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0b1f3a 0%, #1a3a6a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(11, 31, 58, 0.25);
    position: relative;
}

.about-feature-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    pointer-events: none;
}

.about-feature-icon i {
    font-size: 1.5rem;
    color: var(--brand-accent);
}

.about-feature-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 0.75rem;
}

.about-feature-card p {
    font-size: 0.875rem;
    color: #6b7c93;
    line-height: 1.75;
    margin: 0;
}

/* Culture Banner */
.about-culture-banner {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    margin-bottom: 0.5rem;
}

.about-culture-col {
    position: relative;
}

.about-culture-col.left-col {
    background: linear-gradient(145deg, #0b1f3a 0%, #0d2b50 100%);
}

.about-culture-col.right-col {
    background: linear-gradient(145deg, #132d55 0%, #1a3a6a 100%);
}

.about-culture-inner {
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.culture-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(218, 165, 32, 0.15);
    border: 1px solid rgba(218, 165, 32, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.culture-icon i {
    font-size: 1.35rem;
    color: var(--brand-accent);
}

.about-culture-inner h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.about-culture-inner p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* Contact Card */
.about-contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(218, 165, 32, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.about-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), var(--brand-primary));
}

.about-contact-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0b1f3a, #1a3a6a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(11, 31, 58, 0.2);
}

.about-contact-icon-wrap i {
    font-size: 1.5rem;
    color: var(--brand-accent);
}

.about-contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b1f3a;
    margin-bottom: 0.5rem;
}

.about-contact-subtitle {
    font-size: 0.9rem;
    color: #8a9bb0;
    margin: 0;
}

@media (max-width: 768px) {
    .about-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .about-stat-divider {
        width: 80%;
        height: 1px;
        margin: 0;
    }

    .about-culture-inner {
        padding: 2rem 1.5rem;
    }

    .about-contact-card {
        padding: 2rem 1.5rem;
    }
}

/* Mobile override: force service showcase masonry into a responsive 2-column layout */
@media (max-width: 767px) {
    #service-showcases .col-lg-8 .masonry-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: minmax(180px, auto) !important;
        height: auto !important;
        gap: 12px !important;
        margin-top: 1rem !important;
    }

    #service-showcases .col-lg-8 .masonry-grid .masonry-card {
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100% !important;
        min-height: 220px !important;
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
    }

    #service-showcases .col-lg-8 .masonry-grid .masonry-card .card-img-wrap {
        aspect-ratio: 1 / 1 !important;
        height: 100% !important;
    }

    .slider-controls {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        text-align: center !important;
        width: 100% !important;
    }

    .slide-buttons {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .slide-indicator {
        width: 100% !important;
        text-align: center !important;
    }

    .btn-slider {
        min-width: 120px !important;
    }

    #service-showcases .row.align-items-center {
        flex-direction: column !important;
    }
}
