:root {
    /* Core Palette */
    --teal: #1CA6A6;          /* Main logo color: buttons, highlights, links, icons */
    --slate: #4A5E5E;         /* Secondary text and headers */
    --bg-white: #FFFFFF;      /* Main background */
    --soft-gray: #F6FAFA;     /* Subtle section backgrounds */
    --aqua: #9BE3E3;          /* Accent/hover */
    --mint: #A8E6CF;          /* CTA success/secondary */

    /* Legacy vars kept for compatibility (mapped where sensible) */
    --primary-navy: #0f172a;
    --dark-green: #059669;
    --light-green: #d1fae5;
    --primary-blue: #3b82f6;
    --dark-blue: #1e40af;
    --light-blue: #dbeafe;
    --white: #ffffff;
    --off-white: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--slate);
    background-color: var(--bg-white);
}

.marquee-banner {
    background-color: #000000;
    color: #ffffff;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    margin-right: 100px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee-banner {
        font-size: 12px;
    }
    
    .marquee-content {
        animation: marquee 35s linear infinite;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
}

.nav-logo {
    max-height: 56px;
    width: auto;
    margin-right: 15px;
    border-radius: 0;
    transition: transform 0.3s ease;
    object-fit: contain;
    aspect-ratio: 5520 / 2588;
}

.nav-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-logo {
        max-height: 44px;
        margin-right: 10px;
    }

    .nav-brand {
        font-size: 1.2rem;
    }
}

/* Ensure brand text stays on one line on mobile */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .nav-brand {
        display: flex;
        align-items: center;
        gap: 6px;
        min-width: 0;
        flex: 0 1 auto;
        white-space: nowrap;
    }
    .nav-brand span {
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 42vw;
        font-size: 0.9rem;
        line-height: 1.1;
    }
    .nav-menu {
        flex: 1 1 auto;
        gap: 0.5rem;
        overflow-x: auto;
        white-space: nowrap;
    }
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 4px;
    }
}

@media (max-width: 480px) {
    .nav-brand span {
        max-width: 48vw; /* give brand a bit more room on very small screens */
        font-size: 0.8rem;
    }
    .nav-link {
        font-size: 0.75rem;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gray-800);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--slate);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--teal);
}

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

.nav-link.active {
    color: var(--teal);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--teal);
}

.hero {
    background: linear-gradient(135deg, var(--teal) 0%, var(--aqua) 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.83zM27.998 0L19.513 8.485 20.927 9.9l9.9-9.9h-2.83zM33.652 0l-8.485 8.485 1.414 1.414 9.9-9.9h-2.83zM39.306 0l-8.485 8.485 1.414 1.414 9.9-9.9h-2.83zM44.96 0l-8.485 8.485 1.415 1.415 9.9-9.9h-2.83zM50.614 0l-8.485 8.485 1.414 1.415 9.9-9.9h-2.83z" fill="rgba(255,255,255,0.05)" fill-rule="evenodd"/></svg>') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

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

.hero-icon i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
/* Primary Button */
.btn-primary {
    background-color: var(--teal);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--aqua);
    color: var(--slate);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 166, 166, 0.25), 0 0 15px rgba(155, 227, 227, 0.35);
}


/* Secondary Button */
.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0f172a; /* dark text to contrast */
    border-color: #10b981; /* subtle green border on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}


.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--slate);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--aqua));
    border-radius: 2px;
}

.features {
    padding: 80px 20px;
    background-color: var(--soft-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--teal), var(--aqua));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray-600);
}

.cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--aqua) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-header {
    background: linear-gradient(135deg, var(--teal) 0%, var(--aqua) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-content,
.services-content,
.products-content,
.contact-content {
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    text-align: center;
    color: var(--primary-navy);
}

.about-image i {
    font-size: 15rem;
    opacity: 0.1;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mission-card {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.mission-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal), var(--aqua));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card ul li {
    color: var(--gray-600);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-navy);
    font-weight: bold;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--aqua), var(--mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    font-size: 2rem;
}

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--soft-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-image .product-icon {
    width: 80px;
    height: 80px;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    color: var(--teal);
    font-size: 2rem;
}

.product-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.product-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: var(--dark-green);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--soft-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray-600);
    margin: 0;
}

.contact-form-container h2 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-navy);
}

.map-container {
    margin-top: 4rem;
}

.map-container h2 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-info {
    background: var(--soft-gray);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-info p {
    margin: 0.5rem 0;
    color: var(--gray-800);
}

.map-info p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.map-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-actions .btn-primary {
    background: var(--teal);
    color: white;
}

.map-actions .btn-primary:hover {
    background: var(--aqua);
    transform: translateY(-2px);
}

.map-actions .btn-secondary {
    background: #25D366;
    color: white;
}

.map-actions .btn-secondary:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.footer {
    background-color: var(--slate);
    color: var(--white);
    padding: 64px 20px 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-section h3 {
    font-size: 1.25rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: #e5e7eb;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-section ul li a.active {
    color: var(--aqua);
    font-weight: 600;
}

.footer-section ul li i {
    margin-right: 0;
    color: var(--aqua);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--slate);
    border: 1px solid var(--teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.25s ease;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
}

.social-links a:hover {
    background-color: var(--teal);
    border-color: var(--aqua);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(28,166,166,0.15), 0 0 0 3px rgba(155,227,227,0.25);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #334155;
    background: #0b1220;
    color: #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 12px 16px;
    background: var(--teal);
    color: var(--white);
    border: 1px solid var(--teal);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.newsletter-form button:hover {
    background: var(--aqua);
    color: var(--slate);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #1f2937;
    color: #94a3b8;
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .footer-content {
        gap: 1.5rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        width: 100%;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
    text-decoration: none !important;

}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    text-decoration: none !important;

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

#newsletter-message,
#contact-message {
    margin-top: 1rem;
    padding: 12px 14px;
    border-radius: 10px;
    text-align: left;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    animation: fadeInUp 0.4s ease both;
}

.success-message {
    background-color: var(--mint);
    color: var(--slate);
    border-color: #7ed9bb;
    position: relative;
}

.success-message::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal);
    color: #ffffff;
    font-weight: 700;
    margin-right: 10px;
    box-shadow: 0 0 0 3px rgba(28,166,166,0.2);
}

.success-message::before,
.error-message::before {
    vertical-align: middle;
}

.error-message {
    background-color: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
    position: relative;
}

.error-message::before {
    content: '!' ;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ef4444;
    color: #ffffff;
    font-weight: 700;
    margin-right: 10px;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.2);
}

/* Flashed messages (base.html) */
.flashed-messages {
    list-style: none;
    margin: 12px auto 0;
    padding: 0;
    max-width: 900px;
}

.flashed-messages li {
    background: #e0f2fe;
    color: #075985;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 12px 14px;
    margin: 8px 20px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.4s ease both;
}

/* Admin table polish */
.table {
    border-collapse: collapse;
    width: 100%;
    background: var(--white);
}

.table th,
.table td {
    padding: 10px 12px;
    border: 1px solid var(--gray-200);
    vertical-align: top;
}

.table thead th {
    background: var(--off-white);
    color: var(--gray-900);
    font-weight: 700;
}

.table tbody tr:nth-child(even) {
    background: #fafafa;
}

.table tbody tr:hover {
    background: #f3f4f6;
}

/* Responsive enhancements for Contact page */
@media (min-width: 1280px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .contact-content {
        padding: 70px 20px;
    }
    .contact-grid {
        gap: 2.5rem;
    }
    .map-wrapper iframe {
        height: 380px !important;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 60px 16px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .contact-item h4 {
        font-size: 1rem;
    }
    .contact-form-container h2,
    .map-container h2 {
        font-size: 1.25rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    .map-wrapper iframe {
        height: 320px !important;
    }
    .map-actions {
        gap: 0.75rem;
    }
    .map-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    .contact-info p,
    .map-info p {
        font-size: 0.95rem;
    }
    .map-info {
        padding: 1rem;
    }
    .map-wrapper iframe {
        height: 260px !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-card h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .product-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}