/* ===================
   Global Styles
   =================== */
:root {
    --primary: #003b73;          /* Royal blue */
    --primary-dark: #002347;
    --accent: #d99b66;           /* Terracotta beige / gold */
    --bg-light: #f7f4f0;
    --text-main: #222222;
    --text-muted: #666666;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 18px;
    --radius-xl: 26px;
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
}

/* Utility Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Links & Buttons */
a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section.light {
    background-color: var(--bg-light);
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
}

/* Top Strip */
.top-strip {
    background-color: var(--primary-dark);
    color: #e3edf7;
    font-size: 0.85rem;
    padding: 0.25rem 0;
}

.strip-content {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.strip-content span i {
    margin-right: 6px;
}

/* Header / Nav */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #f7d9a8, #b0672f);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
}

.logo-text {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.nav-links a {
    position: relative;
    padding-bottom: 0.2rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
}

/* Hero */
.hero {
    padding: 4.5rem 0 4rem;
    background: radial-gradient(circle at top left, #f9ead5, #ffffff 45%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-text h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.hero-text p {
    max-width: 480px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-badges span {
    background-color: #f2f6fb;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    border: 1px solid #dde6f4;
}

/* Hero image */
.hero-image {
    position: relative;
}

..hero-main-img {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-xl);
    background-image: url("URLHERE");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
    filter: brightness(0.92) saturate(1.1);

}

.hero-floating-card {
    position: absolute;
    bottom: -18px;
    right: 12%;
    background-color: var(--white);
    padding: 0.9rem 1.1rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    max-width: 230px;
    font-size: 0.85rem;
}

.hero-floating-card p {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

/* Layout Helpers */
.two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* About Section */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.about-card h3 {
    font-family: "Playfair Display", serif;
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
}

/* Grid Helpers */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

/* Feature Cards */
.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.1rem;
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.feature-card i {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--accent);
}

.feature-card h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

/* Category Cards */
.category-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.category-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* Placeholder images (change later to your own) */
.category-img-1 {
    background-image: url("https://images.pexels.com/photos/3738083/pexels-photo-3738083.jpeg?auto=compress&cs=tinysrgb&w=1200");
}
.category-img-2 {
    background-image: url("https://images.pexels.com/photos/1488463/pexels-photo-1488463.jpeg?auto=compress&cs=tinysrgb&w=1200");
}
.category-img-3 {
    background-image: url("https://images.pexels.com/photos/1034584/pexels-photo-1034584.jpeg?auto=compress&cs=tinysrgb&w=1200");
}
.category-img-4 {
    background-image: url("https://images.pexels.com/photos/60597/bells-brass-india-intricate-60597.jpeg?auto=compress&cs=tinysrgb&w=1200");
}
.category-img-5 {
    background-image: url("https://images.pexels.com/photos/5935751/pexels-photo-5935751.jpeg?auto=compress&cs=tinysrgb&w=1200");
}
.category-img-6 {
    background-image: url("https://images.pexels.com/photos/1571463/pexels-photo-1571463.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.category-card h3 {
    padding: 1rem 1rem 0.4rem;
    font-size: 1.1rem;
}

.category-card p {
    padding: 0 1rem 1.1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #fdf7ef 0%, #ffffff 60%);
}

.story-img {
    height: 320px;
    border-radius: var(--radius-xl);
    background-image: url("https://images.pexels.com/photos/3738081/pexels-photo-3738081.jpeg?auto=compress&cs=tinysrgb&w=1200");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
}

.story-list {
    list-style: none;
    margin-top: 1rem;
}

.story-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.story-list i {
    color: var(--accent);
    margin-top: 0.25rem;
}

/* Export Section */
.export-grid .export-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.3rem 1.1rem;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.3rem;
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
}

.testimonial-card h4 {
    margin-top: 0.9rem;
    font-size: 1rem;
}

.testimonial-card .country {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: radial-gradient(circle at top, #fbe0b6, #ffffff 55%);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.cta-inner h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.cta-inner p {
    color: var(--text-muted);
    max-width: 500px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: #e0e7f3;
    padding: 2.5rem 0 0.5rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr;
    gap: 2rem;
    font-size: 0.9rem;
}

.footer h3,
.footer h4 {
    font-family: "Playfair Display", serif;
    margin-bottom: 0.6rem;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.4rem;
}

.footer-contact i {
    margin-right: 0.4rem;
}

.footer-bottom {
    text-align: center;
    padding: 0.7rem 0 1rem;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 1.2rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
}

/* Page Hero (for Products & Contact) */
.page-hero {
    padding: 4rem 0 2.5rem;
    background: radial-gradient(circle at top, #f2efe9, #ffffff 60%);
    text-align: left;
}

.page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.1rem;
    margin-bottom: 0.6rem;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 650px;
}

/* Product list styling */
.product-list {
    list-style: disc;
    padding: 0 1.4rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.93rem;
}

/* Contact Page Layout */
.contact-layout {
    align-items: flex-start;
}

.contact-form {
    background-color: var(--white);
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 59, 115, 0.12);
}

.form-note {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-info-box {
    background-color: #f2f6fb;
    padding: 1.7rem 1.4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
}

.contact-info-box h3 {
    margin-top: 0.4rem;
    margin-bottom: 0.35rem;
    font-family: "Playfair Display", serif;
}

/* ===================
   Responsive Styles
   =================== */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .top-strip {
        display: none;
    }

    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background-color: var(--primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 1.1rem 1rem;
        gap: 0.8rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .nav-links.open {
        max-height: 220px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .section {
        padding: 3.2rem 0;
    }

    .hero {
        padding-top: 3.3rem;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner h2 {
        font-size: 1.7rem;
    }

    .page-hero {
        padding-top: 3.3rem;
    }
}

@media (max-width: 480px) {
    .hero-floating-card {
        display: none;
    }

    .contact-form {
        padding: 1.3rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        bottom: 16px;
        right: 14px;
    }
}
