<style>
/* ===== Base Styles ===== */
:root {
    /* Vedheeka Advertisings Logo Colors */
    --logo-dark: #1e293b;      /* Dark navy/blue from "VEDHEEKA" */
    --logo-red: #dc2626;       /* Red accent */
    --logo-gray: #64748b;      /* Gray from "ADVERTISINGS" */
    --logo-light: #e2e8f0;     /* Light gray from background */
    --logo-accent: #0f172a;    /* Darker accent from "Since 2007" */
    
    /* Derived Colors */
    --light-color: #f8fafc;
    --success-color: #059669;
    --warning-color: #d97706;
    
    /* Gradients using only Vedheeka colors */
    --gradient-primary: linear-gradient(135deg, var(--logo-dark) 0%, var(--logo-accent) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--logo-red) 0%, #b91c1c 100%);
    --gradient-accent: linear-gradient(135deg, var(--logo-gray) 0%, #475569 100%);
    --gradient-success: linear-gradient(135deg, #059669 0%, #047857 100%);
    
    /* Shadows */
    --shadow: 0 4px 12px rgba(30, 41, 59, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px; /* For fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--logo-accent);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-secondary);
    border-color: var(--logo-red);
}

.btn-primary:hover {
    background: var(--logo-red);
    border-color: var(--logo-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.section-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
    color: var(--logo-accent);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-secondary);
}

.section-subtitle {
    color: var(--logo-gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ===== Navbar ===== */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(30, 41, 59, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--logo-dark);
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: var(--logo-red);
    font-weight: 500;
}

.brand-year {
    font-size: 0.7rem;
    color: var(--logo-gray);
    font-style: italic;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--logo-accent);
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 4px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--logo-red);
    background-color: rgba(220, 38, 38, 0.05);
}

.navbar-nav .cta-nav .nav-link {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
}

.navbar-nav .cta-nav .nav-link:hover {
    background: var(--logo-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Service Cards ===== */
.services-section {
    background-color: white;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid transparent;
    border: 1px solid var(--logo-light);
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--logo-red);
    border-color: var(--logo-gray);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--logo-accent);
}

.service-link {
    color: var(--logo-red);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== Product Cards ===== */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--logo-light);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.15);
    border-color: var(--logo-gray);
}

.product-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--logo-accent);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.product-features span {
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--logo-gray);
    display: flex;
    align-items: center;
    border: 1px solid var(--logo-light);
}

.product-features i {
    margin-right: 5px;
    color: var(--logo-red);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== Products Navigation ===== */
.products-nav {
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--logo-light);
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.product-category {
    padding: 10px 25px;
    background-color: white;
    border-radius: 4px;
    font-weight: 500;
    color: var(--logo-accent);
    border: 1px solid var(--logo-light);
    transition: var(--transition);
}

.product-category:hover, .product-category.active {
    background: var(--gradient-secondary);
    color: white;
    border-color: var(--logo-red);
}

/* ===== Product Detail Cards ===== */
.product-detail-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--logo-light);
}

.specifications ul {
    list-style: none;
    padding-left: 0;
}

.specifications li {
    padding: 8px 0;
    border-bottom: 1px solid var(--logo-light);
    display: flex;
}

.specifications li:last-child {
    border-bottom: none;
}

.specifications li strong {
    min-width: 140px;
    color: var(--logo-accent);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.feature-tag {
    background-color: rgba(100, 116, 139, 0.1);
    color: var(--logo-gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Product Type Cards ===== */
.product-type-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--logo-light);
}

.product-type-card:hover {
    transform: translateY(-5px);
    border-color: var(--logo-gray);
}

.product-type-img {
    height: 200px;
    overflow: hidden;
}

.product-type-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-type-card:hover .product-type-img img {
    transform: scale(1.05);
}

.product-type-card h4 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--logo-accent);
}

.product-type-card p {
    padding: 0 20px;
    color: var(--logo-gray);
    font-size: 0.95rem;
}

.price-tag {
    padding: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--logo-red);
}

/* ===== Spec Cards ===== */
.spec-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--logo-light);
}

.spec-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
}

.spec-header h4 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

.spec-body {
    padding: 20px;
}

.spec-body ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.spec-body li {
    padding: 10px 0;
    border-bottom: 1px solid var(--logo-light);
}

.spec-body li:last-child {
    border-bottom: none;
}

/* ===== Comparison Cards ===== */
.comparison-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--logo-light);
}

.comparison-header {
    padding: 25px;
    color: white;
    position: relative;
}

.comparison-header.regular {
    background: var(--gradient-accent);
}

.comparison-header.luxury {
    background: var(--gradient-secondary);
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.comparison-body {
    padding: 25px;
}

.comparison-body ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.comparison-body li {
    padding: 10px 0;
    border-bottom: 1px solid var(--logo-light);
    display: flex;
    align-items: center;
}

.comparison-body li:last-child {
    border-bottom: none;
}

.comparison-body i {
    color: var(--success-color);
    margin-right: 10px;
}

/* ===== Sizes Grid ===== */
.sizes-container {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--logo-light);
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.size-card {
    background: var(--logo-light);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.size-card:hover {
    border-color: var(--logo-red);
    transform: translateY(-5px);
}

.size-dimensions {
    font-size: 2rem;
    font-weight: 700;
    color: var(--logo-red);
    margin-bottom: 10px;
}

/* ===== Printing Cards ===== */
.printing-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border-top: 4px solid transparent;
    border: 1px solid var(--logo-light);
}

.printing-card.featured {
    border-top-color: var(--logo-red);
    transform: scale(1.05);
    z-index: 1;
}

.printing-card:hover {
    transform: translateY(-10px);
    border-color: var(--logo-gray);
}

.printing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.printing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.printing-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
}

.printing-card.featured .printing-icon {
    background: var(--gradient-secondary);
}

.printing-details {
    margin: 20px 0;
}

.printing-details h5 {
    color: var(--logo-accent);
    margin-bottom: 10px;
}

.printing-details ul {
    list-style: none;
    padding-left: 0;
}

.printing-details li {
    padding: 5px 0;
    border-bottom: 1px solid var(--logo-light);
    position: relative;
    padding-left: 20px;
}

.printing-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.app-tag {
    background-color: rgba(100, 116, 139, 0.1);
    color: var(--logo-gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ===== Comparison Table ===== */
.comparison-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--logo-light);
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: white;
}

.comparison-table th {
    border: none;
    padding: 20px;
    font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table td, .comparison-table th {
    padding: 15px 20px;
    vertical-align: middle;
}

/* ===== Gallery ===== */
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--logo-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.8);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ===== Consultation Cards ===== */
.consult-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--logo-light);
}

.consult-card:hover {
    transform: translateY(-10px);
    border-color: var(--logo-gray);
}

.consult-card i {
    font-size: 3rem;
    color: var(--logo-red);
    margin-bottom: 20px;
}

.consult-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--logo-accent);
}

/* ===== About Section ===== */
.about-content .lead {
    font-size: 1.2rem;
    color: var(--logo-accent);
    margin-bottom: 20px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--logo-light);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--logo-red);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--logo-gray);
    font-size: 0.9rem;
    margin: 0;
}

.mission-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    text-align: center;
    border: 1px solid var(--logo-light);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.value-card, .feature-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--logo-light);
}

.value-card:hover, .feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--logo-gray);
}

.value-icon, .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.feature-icon {
    background: var(--gradient-accent);
}

/* ===== Contact Section ===== */
.contact-info-card, .contact-form-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--logo-light);
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(100, 116, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-gray);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 15px;
}

.contact-details h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--logo-accent);
}

.contact-details a {
    color: var(--logo-gray);
}

.contact-details a:hover {
    color: var(--logo-red);
}

.social-contact .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-contact .social-icons a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-contact .social-icons a:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
}

.form-control, .form-select {
    padding: 15px;
    border-radius: 4px;
    border: 1px solid var(--logo-light);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--logo-gray);
    box-shadow: 0 0 0 0.25rem rgba(100, 116, 139, 0.25);
}

.form-floating>label {
    padding: 1rem 0.75rem;
}

/* ===== Map ===== */
.map-container {
    position: relative;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FAQ ===== */
.accordion-button {
    font-weight: 500;
    padding: 20px;
    background-color: white;
    border: 1px solid var(--logo-light);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(100, 116, 139, 0.1);
    color: var(--logo-gray);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(100, 116, 139, 0.25);
    border-color: var(--logo-gray);
}

.accordion-body {
    padding: 20px;
    border-top: 1px solid var(--logo-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer h3, .footer h4 {
    color: white;
    margin-bottom: 25px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 5px;
}

.footer-year {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    margin-top: 5px;
    color: var(--logo-red);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--logo-red);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.designed-by {
    margin-top: 10px;
}

.designed-by i {
    color: var(--logo-red);
    margin: 0 5px;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--logo-red);
    transform: translateY(-5px);
}

/* ===== Animations ===== */
.animate-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-card:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-card:nth-child(3) {
    animation-delay: 0.4s;
}

.animate-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .printing-card.featured {
        transform: scale(1);
    }
    
    .printing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .navbar-nav .cta-nav {
        margin-top: 15px;
    }
    
    .printing-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .btn-lg {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .product-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .product-category {
        width: 100%;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .stats-container .col-6 {
        margin-bottom: 15px;
    }
    
    .sizes-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--logo-accent);
        color: #e5e7eb;
    }
    
    .navbar,
    .service-card,
    .product-card,
    .product-detail-card,
    .product-type-card,
    .spec-card,
    .comparison-card,
    .sizes-container,
    .printing-card,
    .consult-card,
    .mission-card,
    .value-card,
    .feature-card,
    .contact-info-card,
    .contact-form-card {
        background-color: var(--logo-dark);
        border-color: #334155;
    }
    
    .section-title,
    h1, h2, h3, h4, h5, h6,
    .service-card h3,
    .product-content h3,
    .printing-details h5,
    .consult-card h4,
    .stat-box h3,
    .mission-card h3,
    .value-card h4,
    .feature-card h4,
    .contact-details h5 {
        color: #f1f5f9;
    }
    
    .section-subtitle,
    .product-card p,
    .product-type-card p,
    .mission-card p,
    .value-card p,
    .feature-card p,
    .stat-box p,
    .contact-details a {
        color: #cbd5e1;
    }
    
    .btn-primary {
        background: var(--gradient-secondary);
    }
    
    .product-features span {
        background-color: #334155;
        border-color: #475569;
        color: #cbd5e1;
    }
    
    .products-nav {
        background-color: var(--logo-dark);
        border-color: #334155;
    }
    
    .product-category {
        background-color: #334155;
        border-color: #475569;
        color: #e5e7eb;
    }
    
    .product-category:hover,
    .product-category.active {
        background: var(--gradient-secondary);
        color: white;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --logo-red: #cc0000;
        --logo-dark: #000000;
        --logo-gray: #333333;
        --logo-accent: #000000;
    }
    
    .navbar,
    .service-card,
    .product-card,
    .printing-card {
        border: 2px solid currentColor;
    }
    
    .btn-primary,
    .navbar-nav .cta-nav .nav-link {
        border: 2px solid white;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-buttons,
    .animate-card {
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-section,
    .cta-section,
    .footer,
    .back-to-top {
        display: none !important;
    }
    
    body {
        padding-top: 0;
        color: black;
        background: white;
    }
    
    .service-card,
    .product-card,
    .printing-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        background: white !important;
    }
    
    .section-title,
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .btn {
        display: none !important;
    }
}
</style>