/* ========== VARIABLES & RESET ========== */
:root {
    --navy: #1a3a52;
    --gold: #d4a574;
    --cream: #f9f7f4;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --border-light: #e8e6e1;
    --organic-green: #2d6b2f;
    --organic-light: #e8f4e8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background: white;
    line-height: 1.6;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== NAVIGATION ========== */
.navbar {
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--navy);
    color: white;
}

.btn-primary:hover {
    background: #0f2438;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 82, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.cta-button {
    background: var(--gold);
    color: var(--navy);
    padding: 0.65rem 1.4rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #c89560;
    transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2d5a7b 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-eyebrow {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== TRUST SECTION ========== */
.trust-section {
    background: white;
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

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

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

.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, #2d5a7b 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 0;
}

.page-tagline {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 0;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SECTIONS ========== */
section {
    padding: 5rem 2rem;
}

section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

section h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.intro-text {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ========== CONSOLIDATION SECTION ========== */
.consolidation {
    background: #f9f7f4;
}

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

.consolidation-card {
    background: white;
    padding: 2rem;
    border-radius: 3px;
    border-top: 3px solid var(--gold);
}

.consolidation-card h3,
.benefit-card h3 {
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.consolidation-card p,
.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.consolidation-benefits ul {
    list-style: none;
    padding: 2rem;
    background: white;
    border-radius: 3px;
    margin-top: 2rem;
}

.consolidation-benefits li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* ========== PRODUCTS ========== */
.products-section,
.featured-products {
    background: white;
}

.products-grid,
.products-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card,
.product-preview-card {
    border: 1px solid var(--border-light);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover,
.product-preview-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-image,
.product-preview-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--navy), #2d5a7b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    text-align: center;
    padding: 2rem;
    min-height: 250px;
}

.product-body {
    padding: 2rem;
}

.product-category {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-card h3,
.product-preview-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.specs {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 3px;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-light);
}

.spec {
    color: var(--text-light);
    font-size: 0.9rem;
}

.variants {
    display: flex;
    gap: 0.6rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.variant {
    display: inline-block;
    background: white;
    color: var(--text-dark);
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    font-weight: 500;
}

.variant.organic {
    background: var(--organic-light);
    color: var(--organic-green);
    border-color: var(--organic-green);
}

.product-card .btn {
    width: 100%;
    margin-top: 1rem;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* ========== SPECIFICATIONS TABLE ========== */
.specs-table-section {
    background: white;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.specs-table thead {
    background: var(--navy);
    color: white;
}

.specs-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.specs-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.specs-table tbody tr:hover {
    background: var(--cream);
}

/* ========== WHY GUDGRANT ========== */
.why-gudgrant {
    background: white;
}

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

.why-item {
    text-align: center;
}

.why-item h3 {
    text-align: center;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 3px;
    border-left: 3px solid var(--gold);
}

.highlight-card h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
}

.highlight-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* ========== QUALITY SECTION ========== */
.quality-section {
    background: white;
}

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

.quality-card {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 3px;
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quality-card h3 {
    text-align: center;
}

.quality-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== CONSOLIDATION DETAIL ========== */
.consolidation-detail {
    background: #f9f7f4;
}

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

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 3px;
    border-top: 3px solid var(--gold);
}

.detail-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.detail-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========== CONTACT ========== */
.contact-info-section {
    background: white;
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 3px;
}

.contact-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--gold);
}

/* ========== QUOTE FORM ========== */
.quote-section {
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-form {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--cream);
    padding: 2rem;
    border-radius: 3px;
}

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

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--cream);
    padding: 2rem;
    border-radius: 3px;
}

.faq-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    text-align: left;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
    opacity: 0.95;
}

/* ========== FOOTER ========== */
.footer {
    background: #2d2d2d;
    color: white;
    padding: 3rem 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

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

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

    .specs-table {
        font-size: 0.85rem;
    }

    .specs-table th,
    .specs-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 500px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}
