/* CSS Styling for Yes2Print (Y2P) Display Solutions Landing Page */

/* --- ROOT VARIABLES --- */
:root {
    --primary: #4d3794;
    /* Official deep brand purple */
    --secondary: #FFCE4F;
    /* Official golden yellow */
    --accent: #F28F1F;
    /* Official orange */
    --dark: #1c123c;
    /* Deep navy blue / background purple */
    --text-color: #5A5C61;
    /* Refined grey for readable body text */
    --title-color: #020202;
    /* Pure black for high-contrast titles */
    --light-bg: #F8F9FC;
    /* Premium soft grey background */
    --white: #FFFFFF;
    --border-color: #E2E6EF;

    /* Gradients */
    --gradient-logo: linear-gradient(135deg, #F28F1F 0%, #FFDD15 100%);
    --gradient-purple: linear-gradient(135deg, #4b3690 0%, #1c123c 100%);
    --gradient-soft: linear-gradient(180deg, #FFFFFF 0%, #F8F9FC 100%);

    /* Layout Tokens */
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(75, 54, 144, 0.08), 0 4px 6px -2px rgba(75, 54, 144, 0.04);
    --shadow-lg: 0 20px 40px -15px rgba(28, 18, 60, 0.15);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASICS --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* --- COMMON UTILITIES --- */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.highlight {
    color: var(--secondary);
    position: relative;
    white-space: normal;
    /* allow wrapping on mobile */
    display: inline;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-logo);
    border-radius: 2px;
    z-index: -1;
}

.sub-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    display: inline-block;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-title.text-white {
    color: var(--white);
}

.section-desc {
    font-size: 17px;
    color: var(--text-color);
}

.section-desc.text-white-op {
    color: rgba(255, 255, 255, 0.8);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 4px 14px rgba(255, 206, 79, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 206, 79, 0.5);
    background-color: #f7c33e;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* Explore Solutions hero button: transparent outline by default, white on hover */
#hero-btn-explore {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

#hero-btn-explore:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* --- HEADER / NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

/* Header Sticky / Scrolled State */
.main-header.scrolled {
    padding: 10px 0;
    background: rgba(75, 54, 144, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.header-container {
    width: 95%;
    max-width: 1720px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo svg {
    transition: var(--transition-smooth);
    height: 60px;
    width: auto;
}

.main-header.scrolled .header-logo svg {
    height: 48px;
}

.navigation-bar {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.85;
    padding: 10px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cta .cta-button {
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(255, 206, 79, 0.3);
}

.header-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 206, 79, 0.45);
}

.header-cta .cta-button.call-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta .cta-button.call-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.4);
        box-shadow: none;
    }

    .header-cta .cta-button.call-cta:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--white);
        color: var(--white);
        transform: translateY(-2px);
    }
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2.5px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 120px;
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;

    /* Full background image */
    background-image: url('assets/banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Dark overlay above the background image */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 18, 60, 0.88) 0%, rgb(75 54 144 / 88%) 50%, rgba(28, 18, 60, 0.92) 100%);
    z-index: 0;
}

/* Decorative golden radial glow â€” top-right accent */
.hero-section::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 206, 79, 0.12) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}


.hero-container {
    width: 95%;
    max-width: 1720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-form-wrapper {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: 0;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 19px;
    opacity: 0.85;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-bullets li {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.95;
}

.hero-bullets i {
    color: var(--secondary);
    font-size: 16px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.glass-image-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.mobile-hero-image {
    display: none;
}

.floating-badge {
    position: absolute;
    background: rgba(28, 18, 60, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.badge-top {
    top: 40px;
    left: -30px;
}

.badge-bottom {
    bottom: 40px;
    right: -30px;
}

.badge-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.badge-txt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Wave Divider SVG */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: var(--white);
}

/* --- STATS SECTION --- */
.stats-section {
    padding: 30px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(75, 54, 144, 0.06);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.plus::after {
    content: '+';
    color: var(--secondary);
    margin-left: 2px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
}

/* --- PRODUCT CATALOG SECTION --- */
.products-section {
    padding: 30px 0;
    background-color: var(--light-bg);
}

.filter-tabs-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    overflow-x: auto;
    padding: 10px 20px;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -webkit-overflow-scrolling: touch;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, and Opera */
}

@media (min-width: 1200px) {
    .filter-tabs {
        justify-content: center;
    }
}

.filter-nav-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.filter-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    font-size: 14px;
}

.filter-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.filter-tab {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    /* Prevent button text from wrapping */
}

.filter-tab:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.filter-tab.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(75, 54, 144, 0.2);
}

.product-image-container {
    height: 250px;
    background-color: #eef2f7;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container .product-img {
    height: 90%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-specs {
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-specs li {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-specs i {
    font-size: 6px;
    color: var(--accent);
}

.product-cta .btn {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
}

.catalog-download-wrap {
    text-align: center;
    margin-top: 60px;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.catalog-download-wrap p {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.catalog-download-wrap .btn {
    border-color: var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    display: inline-flex;
    gap: 10px;
}

.catalog-download-wrap .btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* --- FEATURES / USPs SECTION --- */
.features-section {
    padding: 30px 0;
    background: var(--gradient-purple);
    color: var(--white);
    position: relative;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 206, 79, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 206, 79, 0.15);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-text {
    font-size: 14.5px;
    opacity: 0.8;
    line-height: 1.6;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 30px 0;
    background-color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 280px;
    /* Increased height to prevent text overflow */
    display: flex;
    align-items: center;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.5s ease-in-out;
    text-align: center;
    background-color: var(--light-bg);
    padding: 30px;
    /* Reduced padding from 40px for a more compact card */
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.stars {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16.5px;
    /* Slightly reduced font size for desktop compactness */
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.client-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.client-title {
    font-size: 13px;
    color: var(--text-color);
    margin-top: 3px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 5px;
}

/* --- ENQUIRY / CALCULATOR SECTION --- */
.enquiry-section {
    padding: 30px 0 80px;
    background: var(--gradient-purple);
    position: relative;
}

.enquiry-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.enquiry-info {
    color: var(--white);
}

.enquiry-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.enquiry-text {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.c-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 206, 79, 0.15);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.c-text span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 3px;
}

.c-text a,
.c-text p {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.c-text a:hover {
    color: var(--secondary);
}

.enquiry-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    color: var(--text-color);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--dark);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition-smooth);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a5b1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(75, 54, 144, 0.1);
}

.form-group select option {
    background-color: var(--white);
    color: var(--dark);
}

/* Error States */
.form-group.error input,
.form-group.error select {
    border-color: #ff4d4d;
}

.error-msg {
    display: none;
    font-size: 12px;
    color: #ff4d4d;
    font-weight: 600;
}

.form-group.error .error-msg {
    display: block;
}

/* Estimator Widget */
.estimator-widget {
    background: rgba(255, 206, 79, 0.08);
    border: 1px solid rgba(255, 206, 79, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 25px;
}

.est-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.est-body p {
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.9;
}

.est-body strong {
    color: var(--secondary);
    font-size: 16px;
}

/* Animated Border Pulse for form */
@keyframes borderPulse {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.12);
    }

    50% {
        border-color: rgba(255, 206, 79, 0.35);
    }
}

.animate-pulse-border {
    animation: borderPulse 4s infinite;
}

/* --- FOOTER --- */
.main-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    padding-bottom: 30px;
}

.footer-col-title {
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 14.5px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.col-contact p {
    font-size: 14.5px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.col-contact p:last-child {
    margin-bottom: 0;
}

.col-contact i {
    margin-top: 4px;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    text-align: center;
}

/* --- FLOATING ACTIONS --- */
.phone-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    /* WhatsApp green */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition-smooth);
}

.phone-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.appointment-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(75, 54, 144, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.appointment-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(75, 54, 144, 0.55);
}

/* Mobile Fixed Bottom CTA Bar (hidden on desktop) */
.mobile-cta-bar {
    display: none;
}

/* Mobile Adjustments for FABs and CTA Bar */
@media (max-width: 768px) {

    .phone-float,
    .appointment-float {
        display: none !important;
    }

    body {
        padding-bottom: 60px;
    }

    .mobile-cta-bar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: rgba(28, 18, 60, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
        z-index: 9999;
    }

    .mobile-cta-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        gap: 4px;
        transition: var(--transition-smooth);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-cta-item:last-child {
        border-right: none;
    }

    .mobile-cta-item i {
        font-size: 18px;
    }

    #mobile-cta-call i {
        color: var(--secondary);
    }

    #mobile-cta-whatsapp i {
        color: #25D366;
    }

    #mobile-cta-enquire i {
        color: #a59bfb;
    }

    .mobile-cta-item:active {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Testimonials Mobile Adjustments to prevent overflow */
    .testimonials-slider {
        height: 330px;
        /* Sufficient height to prevent mobile text overflow */
    }

    .testimonial-card {
        padding: 20px 15px;
        /* Compact padding for small screen widths */
    }

    .testimonial-text {
        font-size: 14.5px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
}

/* --- SUCCESS MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 18, 60, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.success-modal-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.open .success-modal-card {
    transform: translateY(0);
}

.success-icon {
    font-size: 64px;
    color: #25d366;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.modal-msg {
    font-size: 15.5px;
    color: var(--text-color);
    margin-bottom: 25px;
}

.modal-info-box {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14.5px;
}

.modal-info-box strong {
    color: var(--primary);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Class-based Animations triggered on load */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards ease-out;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

/* Delay Helpers */
.hero-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-content>*:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content>*:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-content>*:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-content>*:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile-only enquiry section: hidden by default on desktop */
.mobile-enquiry-section {
    display: none;
}

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-content {
        max-width: 500px;
    }

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

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
        /* Smaller, cleaner titles on mobile */
    }

    /* Header Toggle */
    .mobile-nav-toggle {
        display: flex;
    }

    .navigation-bar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px;
        gap: 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    .navigation-bar.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        width: 100%;
    }

    /* Mobile Hamburger morph */
    .mobile-nav-toggle.open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .mobile-nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    /* â”€â”€ MOBILE HERO: image at top, dark bg fills rest, content overlaid â”€â”€ */
    .hero-section {
        background-image: url('https://display-solution.yes2print.com/images/01%20mobile%20views.png');
        background-size: contain;
        background-position: center top;
        /* image at the top */
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-color: #1c123c;
        /* fills below the image automatically */
        padding: 90px 0 40px;
        min-height: unset;
        height: auto;
        display: block;
    }

    /* Solid dark overlay so text is clearly readable over the image */
    .hero-section::before {
        background: rgba(20, 12, 50, 0.82);
    }

    /* Layer 3: content sits above overlay â€” remove bottom padding, hero fills viewport */
    .hero-container {
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-bottom: 0;
        justify-content: flex-start;
    }

    .hero-content {
        order: 1;
        max-width: 100%;
        background: none;
        backdrop-filter: none;
        padding: 0;
        border: none;
    }

    /* Hide the enquiry form inside the hero on mobile â€“ it appears below */
    .hero-form-wrapper {
        display: none;
    }

    /* Smaller text sizes throughout the hero for mobile */
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 26px;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    .hero-bullets {
        display: none;
    }

    .hero-actions {
        display: none;
    }

    .mobile-hero-image {
        display: none;
        /* image is now the CSS background */
    }

    /* Mobile-only enquiry form section (below hero) */
    .mobile-enquiry-section {
        display: block;
        padding: 30px 0 40px;
        background: var(--light-bg);
    }

    .mobile-enquiry-section .enquiry-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 24px 18px;
        box-shadow: var(--shadow-md);
    }

    .mobile-enquiry-section .card-title {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 6px;
    }

    .mobile-enquiry-section .card-subtitle {
        font-size: 13px;
        color: var(--text-color);
        margin-bottom: 18px;
    }

    .badge-top {
        left: -10px;
    }

    .badge-bottom {
        right: -10px;
    }

    /* Stats Layout */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    .stat-item {
        gap: 12px;
    }

    .stat-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        font-size: 18px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Product grid layout */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* Features layout */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .feature-card {
        padding: 15px 5px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        border-radius: var(--radius-md);
        min-height: 120px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .feature-title {
        font-size: 11px;
        line-height: 1.3;
        margin-bottom: 0;
        word-break: break-word;
    }

    .feature-text {
        display: none;
    }

    /* Enquiry layout */
    .enquiry-container {
        grid-template-columns: 1fr;
        gap: 20px;
        /* Reduced from 60px */
    }

    .enquiry-title {
        font-size: 26px;
        /* Smaller, cleaner titles on mobile */
        text-align: center;
        margin-bottom: 10px;
    }

    .enquiry-text {
        text-align: center;
        margin-bottom: 15px;
        /* Reduced from 40px */
    }

    .contact-details {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .enquiry-card {
        padding: 18px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 14px;
    }

    /* â”€â”€ MOBILE FOOTER: tighten all spacing â”€â”€ */
    .main-footer {
        padding: 28px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 20px;
    }

    .footer-logo {
        margin-bottom: 12px;
    }

    .footer-desc {
        margin-bottom: 0;
        font-size: 14px;
    }

    .footer-col-title {
        margin-bottom: 14px;
        font-size: 15px;
    }

    .col-contact p {
        margin-bottom: 12px;
        font-size: 14px;
    }

    /* Footer logo centered on mobile */
    .col-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        padding: 16px 0;
    }

}

/* end @media (max-width: 768px) */

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}






/* --- OTHER SERVICES SECTION --- */
.other-services-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(242, 143, 31, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.service-title {
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-list {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
}