
/* =====================================================
   PRINTS BY VIGNESH
   HOME PAGE STYLES
===================================================== */

/* ================= VARIABLES ================= */

:root {

    --navy: #0d1b2e;
    --navy-light: #152941;
    --navy-card: #182d45;

    --coral: #ff684b;
    --coral-hover: #ff8068;

    --white: #ffffff;
    --light-bg: #f6f7f9;
    --light-text: #667085;

    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: #dce1e8;

    --radius: 5px;

    --container: 1200px;

}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {

    font-family: "DM Sans", sans-serif;

    color: #ffffff;

    background: var(--navy);

    overflow-x: hidden;

}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
}

.container {

    width: 100%;

    max-width: var(--container);

    margin: auto;

    padding-left: 25px;
    padding-right: 25px;

}


/* ================= TYPOGRAPHY ================= */

h1,
h2,
h3,
h4 {

    font-family: "Plus Jakarta Sans", sans-serif;

}

h2 {

    font-size: 30px;

    line-height: 1.3;

    font-weight: 800;

}

p {

    font-size: 13px;

    line-height: 1.8;

}


/* ================= BUTTONS ================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 13px 24px;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 700;

    border: 1px solid transparent;

    cursor: pointer;

    transition: all 0.3s ease;

    white-space: nowrap;

}

.btn span {

    font-size: 15px;

}

.btn-primary {

    color: white;

    background: var(--coral);

    border-color: var(--coral);

}

.btn-primary:hover {

    background: var(--coral-hover);

    border-color: var(--coral-hover);

    transform: translateY(-2px);

}

.btn-outline-light {

    color: white;

    background: transparent;

    border-color: rgba(255, 255, 255, 0.4);

}

.btn-outline-light:hover {

    background: white;

    color: var(--navy);

    transform: translateY(-2px);

}

.btn-outline-coral {

    color: var(--coral);

    background: transparent;

    border-color: var(--coral);

}

.btn-outline-coral:hover {

    color: white;

    background: var(--coral);

    transform: translateY(-2px);

}

.center-button {

    display: flex;

    justify-content: center;

    margin-top: 35px;

}


/* ================= HEADER ================= */

.site-header {

    height: 70px;

    width: 100%;

    position: fixed;

    top: 0;

    left: 0;

    z-index: 1000;

    background: var(--navy);

    border-bottom: 1px solid rgba(255, 255, 255, 0.04);

    transition: background 0.3s ease;

}

.site-header.scrolled {

    background: #081323;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

}

.nav-container {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.logo {

    display: flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

}

.logo-mark {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 29px;

    height: 29px;

    background: var(--coral);

    border-radius: 5px;

    color: white;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 19px;

    font-weight: 800;

}

.logo-text {

    display: flex;

    flex-direction: column;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.1;

}

.logo-text small {

    font-size: 6px;

    letter-spacing: 1.1px;

    margin-top: 3px;

    color: #b8c2cf;

    font-weight: 600;

}

.main-nav {

    display: flex;

    align-items: center;

    gap: 23px;

}

.nav-link {

    font-size: 14px;

    color: #d6dce5;

    font-weight: 500;

    transition: color 0.3s ease;

}

.nav-link:hover,
.nav-link.active {

    color: var(--coral);

}

.nav-quote {

    display: none;

}

.desktop-quote {

    padding: 11px 20px;

    font-size: 12px;

}

.menu-toggle {

    display: none;

    background: transparent;

    border: 0;

    cursor: pointer;

    width: 32px;

    padding: 5px;

}

.menu-toggle span {

    display: block;

    height: 2px;

    width: 100%;

    margin: 5px 0;

    background: white;

    transition: all 0.3s ease;

}

.menu-toggle.active span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}

.menu-toggle.active span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}


/* ================= HERO ================= */

.hero-section {

    position: relative;

    min-height: 590px;

    display: flex;

    align-items: center;

    background-color: #20344b;

    background-image: url("https://images.unsplash.com/photo-1562408590-e32931084e23?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;

    background-position: center;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            90deg,

            rgba(8, 22, 39, 0.95) 0%,

            rgba(13, 27, 46, 0.85) 50%,

            rgba(13, 27, 46, 0.65) 100%

        );

}

.hero-container {

    position: relative;

    z-index: 1;

    padding-top: 70px;

}

.hero-content {

    max-width: 650px;

}

.section-tag {

    display: inline-block;

    color: var(--coral);

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 13px;

}

.hero-tag {

    color: var(--coral);

    background: rgba(255, 104, 75, 0.15);

    border: 1px solid rgba(255, 104, 75, 0.3);

    padding: 7px 12px;

    border-radius: 4px;

    font-size: 8px;

    margin-bottom: 18px;

}

.hero-content h1 {

    font-size: 46px;

    line-height: 1.16;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin-bottom: 20px;

}

.hero-content p {

    color: #c5ceda;

    max-width: 470px;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 28px;

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


/* ================= STATS ================= */

.stats-section {

    background: white;

    color: var(--navy);

    padding: 28px 0;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

}

.stat-item {

    text-align: center;

    border-right: 1px solid #d5dce5;

    padding: 0 15px;

}

.stat-item:last-child {

    border-right: none;

}

.stat-item h3 {

    color: var(--coral);

    font-size: 30px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -1px;

}

.stat-item h3 span {

    font-size: 22px;

}

.stat-item p {

    color: var(--navy);

    font-size: 14px;

    font-weight: 600;

    margin-top: 7px;

}


/* ================= COMMON SECTIONS ================= */

.section-dark {

    background: var(--navy);

    color: white;

}

.section-light {

    background: var(--light-bg);

    color: var(--navy);

}

.products-section,
.difference-section,
.services-section,
.portfolio-section,
.testimonials-section {

    padding: 70px 0;

}

.section-heading {

    margin-bottom: 40px;

}

.section-heading.centered {

    text-align: center;

    max-width: 650px;

    margin-left: auto;

    margin-right: auto;

}

.section-heading h2 {

    margin-bottom: 13px;

}

.section-heading p {

    font-size: 14px;

    line-height: 1.8;

    color: #9aa9ba;

    max-width: 520px;

    margin: auto;

}

.section-light .section-heading p {

    color: #7b8797;

}

.section-dark .section-heading h2{
    color: #ffffff;
}


/* ================= PRODUCTS ================= */

.products-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

}

.product-card {

    background: var(--navy-card);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 5px;

    overflow: hidden;

    transition: all 0.3s ease;

}

.product-card:hover {

    transform: translateY(-6px);

    border-color: rgba(255, 104, 75, 0.5);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);

}

.product-image {

    height: 190px;

    position: relative;

    overflow: hidden;

    background: #e6e8ec;

}

.product-image img {

    height: 100%;

    width: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}

.product-card:hover .product-image img {

    transform: scale(1.06);

}

.product-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    background: var(--coral);

    color: white;

    font-size: 8px;

    font-weight: 700;

    padding: 5px 8px;

    border-radius: 3px;

}

.product-info {

    padding: 17px;

}

.product-info h3 {

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 8px;

}

.product-info p {

    color: #a7b5c5;

    font-size: 14px;

    line-height: 1.7;

    min-height: 48px;

    margin-bottom: 14px;

}

.product-price {

    color: var(--coral);

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 15px;

}

.product-actions {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

}

.product-actions .btn {

    font-size: 12px;

    padding: 9px 11px;

    gap: 4px;

}

.product-actions .btn:first-child {

    color: white;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: transparent;

}

.product-actions .btn:first-child:hover {

    background: white;

    color: var(--navy);

}




/* ================= FEATURES ================= */

.features-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

}

.feature-card {

    background: white;

    border: 1px solid var(--border-light);

    border-radius: 5px;

    padding: 23px 18px;

    transition: all 0.3s ease;

}

.feature-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(13, 27, 46, 0.07);

    border-color: rgba(255, 104, 75, 0.4);

}

.feature-icon {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--coral);

    background: #fff0ec;

    border-radius: 5px;

    font-size: 16px;

    margin-bottom: 18px;

}

.feature-card h3 {

    color: var(--navy);

    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 9px;

}

.feature-card p {

    color: #7a8798;

    font-size: 14px;

    line-height: 1.7;

}


/* ================= SERVICES ================= */

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

}

.service-card {

    padding: 30px 25px;

    background: var(--navy-card);

    border: 1px solid rgba(255, 255, 255, 0.04);

    border-radius: 5px;

    transition: all 0.3s ease;

}

.service-card:hover {

    transform: translateY(-6px);

    border-color: rgba(255, 104, 75, 0.5);

}

.service-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    color: var(--coral);

    background: rgba(255, 104, 75, 0.1);

    border-radius: 5px;

    font-size: 20px;

    margin-bottom: 20px;

}

.service-card h3 {

    font-size: 14px;

    margin-bottom: 12px;

}

.service-card p {

    color: #9eafc1;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 20px;

}

.service-link {

    color: var(--coral);

    font-size: 14px;

    font-weight: 700;

}

.service-link:hover {

    color: var(--coral-hover);

}


/* ================= PORTFOLIO ================= */

.portfolio-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

}

.portfolio-item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #1b2f49;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.portfolio-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}

.portfolio-item:hover img {

    transform: scale(1.08);

}

.portfolio-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 20px;

    opacity: 0;

    background: linear-gradient(

        to top,

        rgba(13, 27, 46, 0.9),

        rgba(13, 27, 46, 0.1)

    );

    transition: opacity 0.3s ease;

}

.portfolio-item:hover .portfolio-overlay {

    opacity: 1;

}

.portfolio-overlay span:first-child {

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

}

.portfolio-overlay h3 {

    font-size: 15px;

    margin-top: 5px;
    color: white;

}

.portfolio-arrow {

    position: absolute;

    top: 20px;

    right: 20px;

    color: white;

    font-size: 22px;

}


/* ================= TESTIMONIALS ================= */

.testimonials-section {

    background: var(--navy);

}

.testimonials-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

}

.testimonial-card {

    background: var(--navy-card);

    border: 1px solid rgba(255, 255, 255, 0.04);

    border-radius: 5px;

    padding: 28px 25px;

    transition: all 0.3s ease;

}

.testimonial-card:hover {

    transform: translateY(-5px);

    border-color: rgba(255, 104, 75, 0.4);

}

.stars {

    color: var(--coral);

    font-size: 13px;

    letter-spacing: 2px;

    margin-bottom: 18px;

}

.testimonial-card p {

    color: #a8b6c7;

    font-size: 14px;

    line-height: 1.9;

    min-height: 100px;

    margin-bottom: 25px;

}

.testimonial-author {

    display: flex;

    align-items: center;

    gap: 12px;

}

.author-avatar {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    background: var(--coral);

    font-weight: 800;

}

.testimonial-author h4 {

    font-size: 14px;

    margin-bottom: 3px;

}

.testimonial-author span {

    font-size: 12px;

    color: #8293a8;

}


/* ================= CTA ================= */

.cta-section {

    padding: 65px 0 75px;

    border-top: 1px solid rgba(255, 255, 255, 0.04);

}

.cta-container {

    text-align: center;

}

.cta-content {

    max-width: 600px;

    margin: auto;

}

.cta-content h2 {

    font-size: 32px;

    margin-bottom: 16px;

}

.cta-content p {

    color: #91a2b7;

    font-size: 12px;

    margin-bottom: 25px;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

}


/* ================= FOOTER ================= */

.site-footer {

    background: #0a1728;

    padding: 55px 0 20px;

    color: white;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.4fr;

    gap: 50px;

    padding-bottom: 40px;

}

.footer-brand p {

    color: #8495a9;

    font-size: 14px;

    line-height: 1.9;

    max-width: 260px;

    margin: 20px 0;

}

.social-links {

    display: flex;

    gap: 8px;

}

.social-links a {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 4px;

    color: #a8b5c4;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;

}

.social-links a:hover {

    background: var(--coral);

    border-color: var(--coral);

    color: white;

}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.footer-column h4 {

    color: white;

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 10px;

}

.footer-column a {

    color: #8798ad;

    font-size: 12px;

    transition: color 0.3s ease;

}

.footer-column a:hover {

    color: var(--coral);

}

.contact-column p {

    color: #8798ad;

    font-size: 12px;

    line-height: 1.7;

}

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

}

.footer-bottom p {

    color: #64768d;

    font-size: 12px;

}

.footer-legal {

    display: flex;

    gap: 25px;

}

.footer-legal a {
    color: #64768d;
    font-size: 12px;
}

.footer-legal a:hover {

    color: var(--coral);

}


/* ================= RESPONSIVE TABLET ================= */

@media (max-width: 1100px) {

    .main-nav {

        gap: 14px;

    }

    .nav-link {

        font-size: 12px;

    }

    .hero-content h1 {

        font-size: 40px;

    }

    .product-image {

        height: 175px;

    }

    .footer-grid {

        gap: 25px;

    }

}


/* ================= RESPONSIVE MOBILE ================= */

@media (max-width: 768px) {

    .container {

        padding-left: 20px;

        padding-right: 20px;

    }

    h2 {

        font-size: 25px;

    }

    .site-header {

        height: 65px;

    }

    .desktop-quote {

        display: none;

    }

    .menu-toggle {

        display: block;

        z-index: 1002;

    }

    .main-nav {

        position: absolute;

        top: 65px;

        left: 0;

        width: 100%;

        background: var(--navy);

        padding: 25px 25px 30px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.05);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: all 0.3s ease;

    }

    .main-nav.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }

    .nav-link {

        font-size: 12px;

        padding: 14px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    }

    .nav-quote {

        display: flex;

        margin-top: 20px;

    }

    .hero-section {

        min-height: 580px;

        background-position: center;

    }

    .hero-container {

        padding-top: 80px;

    }

    .hero-content {

        max-width: 100%;

    }

    .hero-content h1 {

        font-size: 33px;

        line-height: 1.2;

        letter-spacing: -1px;

    }

    .hero-content p {

        font-size: 12px;

        max-width: 100%;

    }

    .hero-buttons {

        gap: 10px;

    }

    .btn {

        padding: 12px 18px;

        font-size: 10px;

    }

    .stats-section {

        padding: 20px 0;

    }

    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

        row-gap: 22px;

    }

    .stat-item:nth-child(2) {

        border-right: none;

    }

    .stat-item h3 {

        font-size: 25px;

    }

    .stat-item p {

        font-size: 9px;

    }

    .products-section,
    .difference-section,
    .services-section,
    .portfolio-section,
    .testimonials-section {

        padding: 55px 0;

    }

    .section-heading {

        margin-bottom: 30px;

    }

    .section-heading p {

        font-size: 11px;

    }

    .products-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .product-image {

        height: 220px;

    }

    .product-info {

        padding: 20px;

    }

    .product-info h3 {

        font-size: 14px;

    }

    .product-info p {

        font-size: 11px;

        min-height: auto;

    }

    .product-actions .btn {

        font-size: 10px;

        padding: 10px 15px;

    }

    .features-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

    }

    .feature-card {

        padding: 20px 15px;

    }

    .feature-card h3 {

        font-size: 11px;

    }

    .feature-card p {

        font-size: 10px;

    }

    .services-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .service-card {

        padding: 25px 20px;

    }

    .portfolio-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

    }

    .portfolio-item {

        height: 170px;

    }

    .portfolio-overlay {

        padding: 12px;

    }

    .portfolio-overlay h3 {

        font-size: 12px;

    }

    .testimonials-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .testimonial-card p {

        min-height: auto;

    }

    .cta-content h2 {

        font-size: 27px;

    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 35px 20px;

    }

    .footer-brand {

        grid-column: 1 / -1;

    }

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }

    .footer-legal {

        gap: 20px;

    }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 400px) {

    .hero-content h1 {

        font-size: 28px;

    }

    .hero-content p {

        font-size: 11px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-buttons .btn {

        width: 100%;

    }

    .features-grid {

        grid-template-columns: 1fr;

    }

    .portfolio-grid {

        grid-template-columns: 1fr;

    }

    .portfolio-item {

        height: 220px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-brand {

        grid-column: auto;

    }

}


/* ================= ACCESSIBILITY ================= */

:focus-visible {

    outline: 2px solid var(--coral);

    outline-offset: 4px;

}


/* ================= ANIMATION ================= */

@media (prefers-reduced-motion: no-preference) {

    .hero-content {

        animation: heroFadeIn 0.8s ease both;

    }

    @keyframes heroFadeIn {

        from {

            opacity: 0;

            transform: translateY(20px);

        }

        to {

            opacity: 1;

            transform: translateY(0);

        }

    }

}



/* =====================================================
   PRODUCTS PAGE
   PRINTS BY VIGNESH
===================================================== */


/* ================= PRODUCTS HERO ================= */

.products-hero-section {

    padding-top: 115px;

    padding-bottom: 48px;

    background: var(--navy);

    text-align: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

}

.products-hero-content {

    max-width: 650px;

    margin: auto;

}

.products-hero-content .section-tag {

    margin-bottom: 10px;

}

.products-hero-content h1 {

    font-size: 32px;

    line-height: 1.3;

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 12px;

}

.products-hero-content p {

    color: #a1b0c1;

    font-size: 16px;

    line-height: 1.8;

    max-width: 510px;

    margin: auto;

}


/* ================= CATALOG ================= */

.catalog-section {

    padding: 28px 0 55px;

    background: var(--navy);

}


/* ================= TOOLBAR ================= */

.catalog-toolbar {

    position: sticky;

    top: 70px;

    z-index: 100;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    margin-bottom: 25px;

    background: var(--navy);

}


.catalog-toolbar::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 1px;

    background: rgba(255, 255, 255, 0.06);

    pointer-events: none;

}

.category-filters {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 6px;

}

.filter-btn {

    border: 1px solid rgba(255, 255, 255, 0.1);

    background: #152941;

    color: #a8b6c6;

    border-radius: 20px;

    padding: 9px 14px;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 500;

    cursor: pointer;

    transition: all 0.3s ease;

}

.filter-btn:hover {

    color: white;

    border-color: var(--coral);

}

.filter-btn.active {

    color: white;

    background: var(--coral);

    border-color: var(--coral);

}


/* ================= SEARCH ================= */

.product-search {

    position: relative;

    flex-shrink: 0;

}

.product-search input {

    width: 180px;

    height: 35px;

    padding: 0 12px 0 32px;

    color: white;

    background: #152941;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 4px;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    outline: none;

    transition: border-color 0.3s ease;

}

.product-search input::placeholder {

    color: #8294aa;

}

.product-search input:focus {

    border-color: var(--coral);

}

.search-icon {

    position: absolute;

    left: 11px;

    top: 50%;

    transform: translateY(-50%);

    color: #8498ad;

    font-size: 14px;

    pointer-events: none;

}


/* ================= RESULT INFO ================= */

.catalog-result-info {

    margin-bottom: 15px;

}

.catalog-result-info p {

    color: #8fa1b5;

    font-size: 12px;

}

.catalog-result-info strong {

    color: white;

}


/* ================= PRODUCTS GRID ================= */

.catalog-products-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 8px;

}


/* ================= PRODUCT CARD ================= */

.catalog-product-card {

    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: #182d45;

    border: 1px solid rgba(255, 255, 255, 0.04);

    border-radius: 5px;

    transition:

        transform 0.3s ease,

        border-color 0.3s ease,

        box-shadow 0.3s ease;

}

.catalog-product-card:hover {

    transform: translateY(-4px);

    border-color: rgba(255, 104, 75, 0.55);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);

}


/* ================= PRODUCT IMAGE ================= */

.catalog-product-image {

    position: relative;

    height: 155px;

    overflow: hidden;

    background: #e8eaed;

}

.catalog-product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}

.catalog-product-card:hover .catalog-product-image img {

    transform: scale(1.06);

}

.catalog-product-badge {

    position: absolute;

    top: 8px;

    left: 8px;

    padding: 4px 7px;

    color: white;

    background: var(--coral);

    border-radius: 3px;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

}


/* ================= PRODUCT INFO ================= */

.catalog-product-info {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 12px;

}

.catalog-product-info h3 {

    color: white;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.45;

    margin-bottom: 6px;

}

.catalog-product-description {

    color: #9aadc0;

    font-size: 14px;

    line-height: 1.65;

    min-height: 42px;

    margin-bottom: 8px;

}

.catalog-product-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 4px;

    margin-bottom: 10px;

}

.catalog-product-meta span {

    color: #7f96ad;

    font-size: 12px;

    padding-right: 5px;

    border-right: 1px solid rgba(255, 255, 255, 0.15);

}

.catalog-product-meta span:last-child {

    border-right: none;

}

.catalog-product-price {

    color: var(--coral);

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 11px;

}


/* ================= PRODUCT ACTIONS ================= */

.catalog-product-actions {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 5px;

    margin-top: auto;

}

.catalog-product-actions .btn {

    flex: 1;

    min-width: 0;

    padding: 8px 5px;

    font-size: 12px;

    gap: 3px;

    border-radius: 3px;

    text-align: center;

}

.catalog-product-actions .btn:first-child {

    color: white;

    background: transparent;

    border-color: rgba(255, 255, 255, 0.15);

}

.catalog-product-actions .btn:first-child:hover {

    color: var(--navy);

    background: white;

    border-color: white;

}

.catalog-product-actions .btn-primary {

    color: white;

    background: var(--coral);

    border-color: var(--coral);

}


/* ================= EMPTY RESULT ================= */

.no-products {

    padding: 55px 20px;

    text-align: center;

    background: #152941;

    border-radius: 5px;

}

.no-products h3 {

    font-size: 18px;

    margin-bottom: 10px;

}

.no-products p {

    color: #93a6ba;

    font-size: 11px;

    margin-bottom: 20px;

}


/* ================= CATALOG BOTTOM ================= */

.catalog-bottom {

    text-align: center;

    margin-top: 25px;

}

.catalog-bottom p {

    color: #748ba4;

    font-size: 14px;

}


/* ================= PRODUCT CTA ================= */

.product-cta-section {

    padding: 65px 0;

    background: #102239;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}

.product-cta-content {

    text-align: center;

    max-width: 560px;

    margin: auto;

}

.product-cta-content h2 {

    font-size: 30px;

    line-height: 1.4;

    margin-bottom: 12px;

}

.product-cta-content p {

    color: #8fa3b9;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 22px;

}


/* ================= ACCESSIBILITY ================= */

.sr-only {

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;

}


/* ================= PRODUCT TABLET ================= */

@media (max-width: 1100px) {

    .catalog-products-grid {

        gap: 10px;

    }

    .catalog-product-image {

        height: 145px;

    }

    .catalog-product-info {

        padding: 11px;

    }

    .catalog-product-description {

        font-size: 8px;

    }

    .catalog-product-actions .btn {

        font-size: 7px;

    }

}


/* ================= PRODUCT MOBILE ================= */

@media (max-width: 768px) {

    .products-hero-section {

        padding-top: 105px;

        padding-bottom: 35px;

    }

    .products-hero-content h1 {

        font-size: 27px;

    }

    .products-hero-content p {

        font-size: 10px;

    }

    .catalog-section {

        padding: 22px 0 45px;

    }

      .catalog-toolbar {

        top: 60px;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        padding: 12px 0;

    }

    .category-filters {

        display: flex;

        flex-wrap: nowrap;

        overflow-x: auto;

        gap: 7px;

        padding-bottom: 5px;

        scrollbar-width: none;

    }

    .category-filters::-webkit-scrollbar {

        display: none;

    }

    .filter-btn {

        padding: 8px 12px;

        font-size: 9px;
         flex-shrink: 0;

        white-space: nowrap;

    }

    .product-search {

        width: 100%;

    }

    .product-search input {

        width: 100%;

        height: 40px;

    }

    .catalog-products-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;

    }

    .catalog-product-image {

        height: 170px;

    }

    .catalog-product-info {

        padding: 12px;

    }

    .catalog-product-info h3 {

        font-size: 11px;

    }

    .catalog-product-description {

        font-size: 9px;

        min-height: 52px;

    }

    .catalog-product-price {

        font-size: 10px;

    }

    .catalog-product-actions {

        flex-direction: column;

        align-items: stretch;

    }

    .catalog-product-actions .btn {

        width: 100%;

        padding: 10px 5px;

        font-size: 8px;

    }

    .product-cta-section {

        padding: 50px 0;

    }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 420px) {

    .products-hero-content h1 {

        font-size: 24px;

    }

    .catalog-products-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .catalog-product-image {

        height: 210px;

    }

    .catalog-product-info {

        padding: 18px;

    }

    .catalog-product-info h3 {

        font-size: 13px;

    }

    .catalog-product-description {

        font-size: 10px;

        min-height: auto;

    }

    .catalog-product-actions {

        flex-direction: row;

    }

    .catalog-product-actions .btn {

        font-size: 9px;

    }

}


/* =====================================================
   SERVICES PAGE
   Prints by Vignesh
===================================================== */


/* ================= SERVICES HERO ================= */

.services-hero-section {

    padding: 145px 0 65px;

    background: var(--navy, #0d1b2e);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

}

.services-hero-content {

    max-width: 720px;

    margin: 0 auto;

    text-align: center;

}

.services-hero-content .section-tag {

    display: inline-block;

    margin-bottom: 14px;

    color: #ff6748;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}

.services-hero-content h1 {

    margin: 0 0 16px;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 800;

    line-height: 1.2;

}

.services-hero-content p {

    max-width: 650px;

    margin: 0 auto;

    color: #91a5c0;

    font-size: 16px;

    line-height: 1.7;

}



/* ================= SERVICES GRID ================= */

.services-list-section {

    padding: 65px 0 80px;

    background: var(--navy, #0d1b2e);

}

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;

}



/* ================= SERVICE CARD ================= */

.service-card {

    display: flex;

    flex-direction: column;

    padding: 28px 26px 26px;

    background: #1b2f49;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 9px;

    transition:

        transform 0.3s ease,

        border-color 0.3s ease,

        background 0.3s ease;

}

.service-card:hover {

    transform: translateY(-6px);

    border-color: rgba(255, 103, 72, 0.45);

    background: #203650;

}

.service-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 56px;

    height: 56px;

    margin-bottom: 20px;

    color: #ff6748;

    background: rgba(255, 103, 72, 0.15);

    border-radius: 9px;

    font-size: 29px;

    font-weight: 600;

}

.service-card h3 {

    margin: 0 0 12px;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.4;

}

.service-card p {

    min-height: 105px;

    margin: 0 0 18px;

    color: #91a5c0;

    font-size: 14px;

    line-height: 1.65;

}



/* ================= SERVICE FEATURES ================= */

.service-features {

    display: flex;

    flex-direction: column;

    gap: 8px;

    padding: 0;

    margin: 0 0 24px;

    list-style: none;

}

.service-features li {

    position: relative;

    padding-left: 22px;

    color: #91a5c0;

    font-size: 13px;

    line-height: 1.5;

}

.service-features li::before {

    content: "⊙";

    position: absolute;

    left: 0;

    top: 0;

    color: #ff6748;

    font-size: 15px;

    font-weight: 700;

}

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: auto;

    color: #ff6748;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: gap 0.25s ease;

}

.service-link span {

    font-size: 18px;

    line-height: 1;

}

.service-link:hover {

    gap: 13px;

}



/* ================= PROCESS SECTION ================= */

.process-section {

    padding: 85px 0 90px;

    background: #f5f6f8;

}

.section-light {

    color: #102039;

}

.section-heading {

    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;

}

.section-heading .section-tag {

    display: inline-block;

    margin-bottom: 12px;

    color: #ff6748;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}

.section-heading h2 {

    margin: 0 0 16px;

    color: #102039;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(28px, 3vw, 38px);

    font-weight: 800;

    line-height: 1.25;

}

.section-heading p {

    max-width: 570px;

    margin: 0 auto;

    color: #65758b;

    font-size: 15px;

    line-height: 1.7;

}



/* ================= PROCESS GRID ================= */

.process-grid {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 35px;

}

.process-step {

    position: relative;

    text-align: center;

}

.process-number {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    margin: 0 auto 22px;

    color: #ffffff;

    background: #ff6748;

    border-radius: 50%;

    font-size: 18px;

    font-weight: 700;

}

.process-step h3 {

    margin: 0 0 12px;

    color: #102039;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.5;

}

.process-step p {

    margin: 0;

    color: #65758b;

    font-size: 13px;

    line-height: 1.7;

}



/* Dashed line between process steps */

@media (min-width: 769px) {

    .process-step:not(:last-child)::after {

        content: "";

        position: absolute;

        top: 30px;

        left: calc(50% + 30px);

        width: calc(100% - 60px);

        border-top: 1px dashed rgba(255, 103, 72, 0.5);

        z-index: 0;

    }

    .process-number {

        position: relative;

        z-index: 1;

    }

}



/* ================= SERVICES CTA ================= */

.services-cta-section {

    padding: 65px 0 75px;

    background: var(--navy, #0d1b2e);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}

.services-cta-content {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;

}

.services-cta-content h2 {

    margin: 0 0 14px;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(26px, 3vw, 36px);

    font-weight: 800;

    line-height: 1.3;

}

.services-cta-content p {

    margin: 0 0 26px;

    color: #91a5c0;

    font-size: 15px;

    line-height: 1.7;

}

.cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

}



/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {

    .services-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

    .process-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 40px 25px;

    }

    .services-hero-section {

        padding-top: 125px;

    }

}



@media (max-width: 768px) {

    .services-hero-section {

        padding: 110px 0 50px;

    }

    .services-hero-content h1 {

        font-size: 32px;

    }

    .services-hero-content p {

        font-size: 14px;

    }

    .services-list-section {

        padding: 45px 0 55px;

    }

    .services-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .service-card {

        padding: 24px 22px;

    }

    .service-card p {

        min-height: auto;

    }

    .process-section {

        padding: 55px 0 60px;

    }

    .section-heading {

        margin-bottom: 38px;

    }

    .process-grid {

        grid-template-columns: 1fr;

        gap: 32px;

    }

    .process-step {

        max-width: 400px;

        margin: 0 auto;

    }

    .services-cta-section {

        padding: 50px 0 55px;

    }

    .services-cta-content p {

        font-size: 14px;

    }

}



@media (max-width: 480px) {

    .services-hero-content h1 {

        font-size: 28px;

    }

    .service-card h3 {

        font-size: 17px;

    }

    .service-card p {

        font-size: 13px;

    }

    .service-features li {

        font-size: 12px;

    }

    .cta-buttons {

        flex-direction: column;

    }

    .cta-buttons .btn {

        width: 100%;

        justify-content: center;

    }

}


/* =====================================================
   ABOUT PAGE
   Prints by Vignesh
===================================================== */


/* ================= ABOUT HERO ================= */

.about-hero-section {

    padding: 145px 0 65px;

    background: var(--navy, #0d1b2e);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

}

.about-hero-content {

    max-width: 720px;

    margin: 0 auto;

    text-align: center;

}

.about-hero-content .section-tag {

    display: inline-block;

    margin-bottom: 14px;

    color: #ff6748;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}

.about-hero-content h1 {

    margin: 0 0 16px;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 800;

    line-height: 1.2;

}

.about-hero-content p {

    max-width: 650px;

    margin: 0 auto;

    color: #91a5c0;

    font-size: 16px;

    line-height: 1.7;

}



/* ================= OUR STORY ================= */

.about-story-section {

    padding: 65px 0 75px;

    background: var(--navy, #0d1b2e);

}

.about-story-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 45px;

}

.about-story-image {

    width: 100%;

    overflow: hidden;

    border-radius: 12px;

    aspect-ratio: 1.12 / 1;

    background: #1b2f49;

}

.about-story-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.about-story-content h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(28px, 3vw, 36px);

    font-weight: 800;

    line-height: 1.3;

}

.about-story-content p {

    margin: 0 0 17px;

    color: #91a5c0;

    font-size: 14px;

    line-height: 1.75;

}

.about-story-content p:last-child {

    margin-bottom: 0;

}



/* ================= MISSION ================= */

.about-mission-section {

    padding: 75px 0 85px;

    background: #f5f6f8;

}

.about-mission-section .section-heading {

    margin-bottom: 48px;

}



/* ================= VALUES ================= */

.about-values-grid {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;

}

.about-value-card {

    padding: 28px 20px 25px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #b6bfca;

    border-radius: 9px;

    transition:

        transform 0.3s ease,

        box-shadow 0.3s ease,

        border-color 0.3s ease;

}

.about-value-card:hover {

    transform: translateY(-5px);

    border-color: #ff6748;

    box-shadow: 0 10px 25px rgba(13, 27, 46, 0.08);

}

.about-value-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    margin: 0 auto 18px;

    color: #ff6748;

    background: #fff0ec;

    border-radius: 10px;

    font-size: 25px;

}

.about-value-card h3 {

    margin: 0 0 14px;

    color: #102039;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.5;

}

.about-value-card p {

    margin: 0;

    color: #65758b;

    font-size: 13px;

    line-height: 1.7;

}



/* ================= ADVANTAGE ================= */

.about-advantage-section {

    padding: 70px 0 75px;

    background: var(--navy, #0d1b2e);

}

.about-advantage-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 45px;

}

.about-advantage-content .section-tag {

    display: inline-block;

    margin-bottom: 14px;

    color: #ff6748;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}

.about-advantage-content h2 {

    max-width: 530px;

    margin: 0 0 18px;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(28px, 3vw, 36px);

    font-weight: 800;

    line-height: 1.3;

}

.about-advantage-content p {

    max-width: 500px;

    margin: 0;

    color: #91a5c0;

    font-size: 14px;

    line-height: 1.7;

}



/* ================= COMMITMENT CARD ================= */

.about-commitment-card {

    padding: 30px 28px;

    background: #1b2f49;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

}

.about-commitment-card h3 {

    margin: 0 0 25px;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 18px;

    font-weight: 700;

}

.commitment-item {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 22px;

}

.commitment-item:last-child {

    margin-bottom: 0;

}

.commitment-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 34px;

    height: 34px;

    color: #ff6748;

    background: rgba(255, 103, 72, 0.15);

    border-radius: 50%;

    font-size: 17px;

}

.commitment-item h4 {

    margin: 0 0 5px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

}

.commitment-item p {

    margin: 0;

    color: #91a5c0;

    font-size: 13px;

    line-height: 1.6;

}



/* ================= ABOUT CTA ================= */

.about-cta-section {

    padding: 65px 0 75px;

    background: #f5f6f8;

}

.about-cta-content {

    max-width: 700px;

    margin: 0 auto;

    text-align: center;

}

.about-cta-content h2 {

    margin: 0 0 16px;

    color: #102039;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(26px, 3vw, 36px);

    font-weight: 800;

    line-height: 1.3;

}

.about-cta-content p {

    margin: 0 0 26px;

    color: #65758b;

    font-size: 15px;

    line-height: 1.7;

}



/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {

    .about-story-grid,

    .about-advantage-grid {

        gap: 30px;

    }

    .about-values-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

    .about-hero-section {

        padding-top: 125px;

    }

}



@media (max-width: 768px) {

    .about-hero-section {

        padding: 110px 0 50px;

    }

    .about-hero-content h1 {

        font-size: 32px;

    }

    .about-hero-content p {

        font-size: 14px;

    }

    .about-story-section {

        padding: 45px 0 55px;

    }

    .about-story-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .about-story-image {

        aspect-ratio: 1.25 / 1;

    }

    .about-story-content h2 {

        font-size: 28px;

    }

    .about-story-content p {

        font-size: 13px;

    }

    .about-mission-section {

        padding: 55px 0 60px;

    }

    .about-values-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }

    .about-value-card {

        padding: 25px 22px;

    }

    .about-advantage-section {

        padding: 50px 0 55px;

    }

    .about-advantage-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .about-advantage-content h2 {

        font-size: 28px;

    }

    .about-commitment-card {

        padding: 25px 22px;

    }

    .about-cta-section {

        padding: 50px 0 55px;

    }

}



@media (max-width: 480px) {

    .about-hero-content h1 {

        font-size: 28px;

    }

    .about-story-content h2 {

        font-size: 26px;

    }

    .about-value-card h3 {

        font-size: 15px;

    }

    .about-cta-content h2 {

        font-size: 26px;

    }

    .cta-buttons {

        flex-direction: column;

    }

    .cta-buttons .btn {

        width: 100%;

        justify-content: center;

    }

}


/* =====================================================
   PORTFOLIO PAGE
===================================================== */


/* ================= PORTFOLIO HERO ================= */

.portfolio-hero-section {
    background: #0e1c30;
    padding: 110px 0 65px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-hero-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.portfolio-hero-content h1 {
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
}

.portfolio-hero-content p {
    max-width: 650px;
    margin: 0 auto;
    color: #91a5c0;
    font-size: 16px;
    line-height: 1.7;
}


/* ================= FILTER SECTION ================= */

.portfolio-filter-section {
    background: #112238;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-filter-btn {
    border: 1px solid #253b56;
    background: #1b2f49;
    color: #91a5c0;
    padding: 10px 18px;
    border-radius: 25px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-filter-btn:hover {
    color: #ffffff;
    border-color: #ff6848;
}

.portfolio-filter-btn.active {
    background: #ff6848;
    color: #ffffff;
    border-color: #ff6848;
}


/* ================= GALLERY ================= */

.portfolio-gallery-section {
    background: #0e1c30;
    padding: 48px 0 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.portfolio-item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #1b2f49;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.portfolio-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e9eaed;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.06);
}


/* ================= OVERLAY ================= */

.portfolio-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;

    padding: 24px;

    background: linear-gradient(
        to top,
        rgba(8, 22, 39, 0.98) 0%,
        rgba(8, 22, 39, 0.90) 35%,
        rgba(8, 22, 39, 0.35) 75%,
        rgba(8, 22, 39, 0.02) 100%
    );

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;

    pointer-events: none;
}


/* Show overlay on hover */
.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-within .portfolio-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.portfolio-category {
    display: inline-block;
    width: fit-content;
    max-width: 100%;

    background: #ff6848;
    color: #ffffff;

    border-radius: 20px;
    padding: 6px 12px;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;

    margin-bottom: 10px;
}

.portfolio-overlay h3 {
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
    width: 100%;
}




.portfolio-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    color: #ffffff;
    background: transparent;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    border-bottom: 1px solid #ff6848;
    padding-bottom: 4px;

    transition: color 0.3s ease;
}

.portfolio-view-btn span {
    color: #ff6848;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.portfolio-view-btn:hover {
    color: #ff6848;
}

.portfolio-view-btn:hover span {
    transform: translateX(4px);
}


/* ================= CTA ================= */

.portfolio-cta-section {
    background: #f5f6f8;
    padding: 65px 0;
}

.portfolio-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-cta-content h2 {
    color: #0e1c30;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 25px;
    font-weight: 800;
    margin: 0 0 14px;
}

.portfolio-cta-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto 24px;
    max-width: 550px;
}

.portfolio-cta-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}


/* ================= FILTER HIDDEN ================= */

.portfolio-item.is-hidden {
    display: none;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .portfolio-hero-section {
        padding: 90px 0 55px;
    }

    .portfolio-hero-content h1 {
        font-size: 34px;
    }

    .portfolio-grid {
        gap: 14px;
    }

    .portfolio-overlay {
        padding: 15px;
    }

    .portfolio-overlay h3 {
        font-size: 15px;
    }

}


@media (max-width: 768px) {
    

    .portfolio-hero-section {
        padding: 75px 0 45px;
    }

    .portfolio-hero-content h1 {
        font-size: 30px;
    }

    .portfolio-hero-content p {
        font-size: 14px;
    }

    .portfolio-filter-section {
        padding: 15px 0;
    }

    .portfolio-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 3px;
        scrollbar-width: none;
    }

    .portfolio-filters::-webkit-scrollbar {
        display: none;
    }

    .portfolio-filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 12px;
        padding: 9px 15px;
    }

    .portfolio-gallery-section {
        padding: 30px 0 40px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .portfolio-overlay {
        padding: 16px;

        opacity: 1;
        visibility: visible;
        transform: translateY(0);

        background: linear-gradient(
            to top,
            rgba(8, 22, 39, 0.96) 0%,
            rgba(8, 22, 39, 0.55) 55%,
            rgba(8, 22, 39, 0.05) 100%
        );

        pointer-events: auto;
    }

    .portfolio-category {
        font-size: 10px;
        padding: 5px 9px;
        margin-bottom: 8px;
    }

    .portfolio-overlay h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .portfolio-view-btn {
        font-size: 11px;
    }

    .portfolio-cta-section {
        padding: 45px 20px;
    }

    .portfolio-cta-content h2 {
        font-size: 22px;
    }

}


@media (max-width: 480px) {

    .portfolio-hero-section {
        padding: 65px 0 40px;
    }

    .portfolio-hero-content h1 {
        font-size: 27px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-image {
        aspect-ratio: 4 / 3;
    }

    .portfolio-overlay {
        padding: 18px;
    }

    .portfolio-overlay h3 {
        font-size: 17px;
    }

    .portfolio-category {
        font-size: 11px;
    }

    .portfolio-view-btn {
        font-size: 12px;
    }

}


/* =====================================================
   PRICING PAGE
   PRINTS BY VIGNESH
===================================================== */


/* ================= PRICING HERO ================= */

.pricing-hero-section {
    background: var(--navy);
    padding: 105px 0 65px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.pricing-hero-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.pricing-hero-content h1 {
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 0 14px;
}

.pricing-hero-content p {
    max-width: 650px;
    margin: 0 auto;
    color: #91a5c0;
    font-size: 16px;
    line-height: 1.7;
}

.pricing-hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 620px;
    margin: 25px auto 0;
    padding: 11px 16px;
    border: 1px solid #253b56;
    border-radius: 6px;
    background: #152941;
    color: #91a5c0;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}

.pricing-hero-note span:first-child {
    color: var(--coral);
    font-size: 16px;
}


/* ================= PRICING TABLE SECTION ================= */

.pricing-table-section {
    background: var(--navy);
    padding: 42px 0 60px;
}

.pricing-tabs {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #152941;
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
}

.pricing-tabs::-webkit-scrollbar {
    display: none;
}

.pricing-tab {
    flex: 0 0 auto;
    border: 1px solid transparent;
    background: transparent;
    color: #91a5c0;
    padding: 10px 14px;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab:hover {
    color: #ffffff;
}

.pricing-tab.active {
    background: #1b2f49;
    color: #ffffff;
    border-color: #253b56;
}

.pricing-panel {
    display: none;
}

.pricing-panel.active {
    display: block;
    animation: pricingFadeIn 0.25s ease;
}

@keyframes pricingFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-panel h2 {
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 8px;
}

.pricing-description {
    color: #91a5c0;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}


/* ================= PRICING TABLE ================= */

.pricing-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #253b56;
    border-radius: 10px;
    scrollbar-width: thin;
}

.pricing-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}

.pricing-table th {
    background: #1b2f49;
    color: #ffffff;
    padding: 15px 14px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-table td {
    padding: 14px;
    color: #c1ccda;
    font-size: 13px;
    font-weight: 500;
    border-top: 1px solid #253b56;
    white-space: nowrap;
}

.pricing-table td:first-child {
    color: #ffffff;
    font-weight: 700;
}

.pricing-table td:not(:first-child) {
    color: var(--coral);
    font-weight: 700;
}

.pricing-table tbody tr {
    transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}


/* ================= NOTE BOX ================= */

.pricing-note-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 25px;
    padding: 16px;
    background: #152941;
    border: 1px solid #253b56;
    border-radius: 10px;
}

.pricing-note-box > span {
    color: var(--coral);
    font-size: 17px;
    line-height: 1.5;
}

.pricing-note-box p {
    color: #91a5c0;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.pricing-note-box strong {
    color: #ffffff;
}


/* ================= INCLUDED SECTION ================= */

.pricing-included-section {
    background: var(--light-bg);
    padding: 58px 0 60px;
}

.pricing-section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-section-heading h2 {
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
}

.pricing-section-heading p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.included-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #cbd3de;
    border-radius: 9px;
    padding: 17px 15px;
    min-width: 0;
}

.included-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    border: 1px solid var(--coral);
    border-radius: 50%;
    color: var(--coral);
    font-size: 11px;
    font-weight: 700;
}

.included-card strong {
    color: var(--navy);
    font-size: 12px;
    font-weight: 600;
}


/* ================= FAQ SECTION ================= */

.pricing-faq-section {
    background: var(--navy);
    padding: 60px 0 65px;
}

.pricing-faq-section .pricing-section-heading h2 {
    color: #ffffff;
    font-size: 28px;
}

.pricing-faq-list {
    max-width: 620px;
    margin: 0 auto;
}

.pricing-faq-item {
    border: 1px solid #253b56;
    border-radius: 8px;
    background: #1b2f49;
    margin-bottom: 7px;
    overflow: hidden;
}

.pricing-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
    padding: 15px 17px;
    border: 0;
    background: transparent;
    color: #ffffff;
    text-align: left;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.faq-icon {
    color: #b7c4d4;
    font-size: 15px;
    transition: transform 0.25s ease;
}

.pricing-faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.pricing-faq-answer {
    display: none;
    padding: 0 17px 16px;
}

.pricing-faq-item.open .pricing-faq-answer {
    display: block;
}

.pricing-faq-answer p {
    color: #91a5c0;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}


/* ================= CTA ================= */

.pricing-cta-section {
    background: var(--light-bg);
    padding: 62px 0;
}

.pricing-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-cta-content h2 {
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
}

.pricing-cta-content p {
    max-width: 550px;
    margin: 0 auto 25px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

.pricing-cta-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .pricing-hero-section {
        padding: 90px 0 55px;
    }

    .pricing-hero-content h1 {
        font-size: 34px;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .pricing-hero-section {
        padding: 75px 0 45px;
    }

    .pricing-hero-content h1 {
        font-size: 30px;
    }

    .pricing-hero-content p {
        font-size: 14px;
    }

    .pricing-hero-note {
        font-size: 11px;
    }

    .pricing-table-section {
        padding: 30px 0 45px;
    }

    .pricing-tabs {
        margin-bottom: 25px;
    }

    .pricing-tab {
        font-size: 12px;
        padding: 9px 12px;
    }

    .pricing-panel h2 {
        font-size: 21px;
    }

    .pricing-description {
        font-size: 12px;
    }

    .pricing-table {
        font-size: 12px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px;
        font-size: 12px;
    }

    .pricing-note-box {
        padding: 13px;
    }

    .pricing-note-box p {
        font-size: 11px;
    }

    .pricing-included-section {
        padding: 45px 0;
    }

    .pricing-section-heading h2 {
        font-size: 25px;
    }

    .pricing-faq-section {
        padding: 45px 0 50px;
    }

    .pricing-cta-section {
        padding: 45px 20px;
    }

    .pricing-cta-content h2 {
        font-size: 24px;
    }

}

@media (max-width: 480px) {

    .pricing-hero-section {
        padding: 65px 0 40px;
    }

    .pricing-hero-content h1 {
        font-size: 27px;
    }

    .pricing-hero-note {
        align-items: flex-start;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section-heading h2 {
        font-size: 23px;
    }

    .pricing-faq-question {
        font-size: 12px;
        padding: 14px;
    }

    .pricing-faq-answer {
        padding: 0 14px 14px;
    }

}


/* =====================================================
   CONTACT PAGE
===================================================== */


/* ================= CONTACT HERO ================= */

.contact-hero-section {
    background: var(--navy);
    padding: 110px 0 65px;
    border-bottom: 1px solid var(--border-dark);
}

.contact-hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.contact-hero-content h1 {
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
}

.contact-hero-content p {
    max-width: 650px;
    margin: 0 auto;
    color: #91a5c0;
    font-size: 16px;
    line-height: 1.7;
}


/* ================= CONTACT SECTION ================= */

.contact-section {
    background: var(--navy);
    padding: 65px 0 75px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 48px;
    align-items: start;
}


/* ================= HEADINGS ================= */

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 25px;
    font-weight: 800;
    margin: 0 0 25px;
}


/* ================= FORM CARD ================= */

.contact-form-wrapper {
    background: var(--navy-card);
    border: 1px solid #253b56;
    border-radius: 10px;
    padding: 30px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 20px;
}

.form-group label {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.form-group label span {
    color: var(--coral);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    color: #91a5c0;
    background: var(--navy);
    border: 1px solid #253b56;
    border-radius: 5px;
    padding: 13px 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.form-group input,
.form-group select {
    height: 46px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7188a5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 2px rgba(255, 104, 75, 0.12);
}

.form-group select {
    cursor: pointer;
}

.form-note {
    color: #91a5c0;
    font-size: 12px;
    line-height: 1.6;
    margin: -5px 0 20px;
}

.contact-submit {
    width: 100%;
    min-height: 46px;
}

.form-message {
    color: #91d5a5;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 15px;
}


/* ================= CONTACT INFORMATION ================= */

.contact-info-wrapper h2 {
    margin-bottom: 25px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--navy-card);
    border: 1px solid #253b56;
    border-radius: 10px;
    padding: 17px;
    margin-bottom: 14px;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--coral);
    background: rgba(255, 104, 75, 0.12);
    border-radius: 6px;
    font-size: 22px;
}

.contact-info-label {
    display: block;
    color: #91a5c0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.contact-info-card a,
.contact-info-card p {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a:hover {
    color: var(--coral);
}


/* ================= BUSINESS HOURS ================= */

.business-hours-card {
    background: var(--navy-card);
    border: 1px solid #253b56;
    border-radius: 10px;
    padding: 20px;
    margin-top: 18px;
}

.business-hours-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.business-hours-heading .contact-info-icon {
    width: 40px;
    height: 40px;
}

.business-hours-heading h3 {
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.business-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.business-hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.business-hours-row span {
    color: #91a5c0;
    font-size: 13px;
}

.business-hours-row strong {
    color: var(--white);
    font-size: 13px;
    text-align: right;
}


/* ================= MAP CARD ================= */

.contact-map-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 200px;
    text-align: center;
    background: var(--navy-card);
    border: 1px solid #253b56;
    border-radius: 10px;
    margin-top: 18px;
    padding: 30px 20px;
}

.map-icon {
    color: #91a5c0;
    font-size: 38px;
    margin-bottom: 10px;
}

.contact-map-card h3 {
    color: #91a5c0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-map-card p {
    color: #91a5c0;
    font-size: 12px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .contact-hero-section {
        padding: 90px 0 55px;
    }

    .contact-hero-content h1 {
        font-size: 34px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

}


@media (max-width: 768px) {

    .contact-hero-section {
        padding: 75px 0 45px;
    }

    .contact-hero-content h1 {
        font-size: 30px;
    }

    .contact-hero-content p {
        font-size: 14px;
    }

    .contact-section {
        padding: 45px 0 55px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        font-size: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .form-group input,
    .form-group select {
        height: 44px;
    }

    .business-hours-row {
        flex-wrap: wrap;
    }

}


@media (max-width: 480px) {

    .contact-hero-section {
        padding: 65px 0 40px;
    }

    .contact-hero-content h1 {
        font-size: 27px;
    }

    .contact-form-wrapper {
        padding: 18px;
    }

    .contact-info-card {
        padding: 14px;
    }

    .business-hours-card {
        padding: 16px;
    }

    .business-hours-row span,
    .business-hours-row strong {
        font-size: 12px;
    }

}