/* Agency Minimal Theme */
:root {
    --primary-color: #002387;
    /* Deep Purple/Blue */
    --secondary-color: #F4364C;
    /* Red/Pink Accent */
    --tertiary-color: #F5485C;
    /* Lighter Red/Pink */
    --light-bg: #f8f9fa;
    --text-color: #333;
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Mega Menu */
.mega-menu {
    position: static;
}

.mega-menu .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 30px;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 0;
}

/* Desktop Hover */
@media (min-width: 992px) {
    .navbar .nav-item:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
}

/* Custom Link Styles */
.navbar-nav .nav-link {
    font-weight: 700;
    font-size: 1.1rem;
    /* +10% increase */
}

/* Active Nav Item */
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* Button Overrides */
.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff;
}

/* Hero Carousel */
.hero-slide {
    height: 100vh;
    /* Occupy full viewport height */
    min-height: 600px;
}

.object-fit-cover {
    object-fit: cover;
}

/* Adjust Carousel Caption to be more like a Hero Overlay */
.carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 0;
}

.btn-agency {
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary-agency {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-primary-agency:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

/* Abstract Shape Background */
.abstract-shape-bg {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 125%;
    height: 150%;
    background-image: url('../img/home/recommend-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

/* Why Choose Us Section */
.w-50px {
    width: 50px;
}

.feature-card {
    background-color: #FFFDF5 !important;
    /* Cream/Yellowish tint */
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.custom-shape-divider-bottom-1680000000 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1680000000 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-bottom-1680000000 .shape-fill {
    fill: #FFFFFF;
}

/* Quote CTA Section */
.cta-quote-section {
    min-height: 130vh;
    background-image: url('../img/home/calculator-bg.jpg');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.cta-quote-section .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

.clients-recommend-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-listoprint-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.quality-guarantee-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.client-logos-section {
    background-image: url('../img/home/clients-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.client-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}