/* ===================================
   TRIDENT STAR & CO. LLC - MAIN STYLES
   Modern, Responsive, Cloudflare-Ready
   =================================== */

/* CSS Variables for Brand Colors */
:root {
    --color-navy: #243341;          /* Primary: Logo navy-gray */
    --color-brass: #C9A961;         /* Accent: Warmer gold (adjusted from #B4975A) */
    --color-ivory: #F8F6F2;         /* Background: Soft ivory */
    --color-silver: #D1D5DB;        /* Borders: Light gray */
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #666666;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition-speed: 0.3s;
    --shadow-soft: 0 2px 8px rgba(36, 51, 65, 0.08);
    --shadow-medium: 0 4px 16px rgba(36, 51, 65, 0.12);
    --marketplace-logo-height: 80px;  /* New variable for marketplace logo sizing */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-brass);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-navy);
}

.inline-link {
    text-decoration: underline;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-brass);
    color: var(--color-white);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    box-shadow: 0 2px 4px rgba(36, 51, 65, 0.1);
}

.btn-primary:hover {
    background-color: #B4975A;  /* Darker brass */
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(36, 51, 65, 0.15);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(36, 51, 65, 0.1);
}

.btn-primary:focus {
    outline: 2px solid var(--color-brass);
    outline-offset: 2px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-brass);
    padding: 0.875rem 2rem;
    border: 2px solid var(--color-brass);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

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

.btn-secondary:focus {
    outline: 2px solid var(--color-brass);
    outline-offset: 2px;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--color-brass);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Navigation */
.navbar {
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color var(--transition-speed);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
}

.logo {
    height: 90px;
    width: auto;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

/* Tagline: Visible by default on wide screens (>1024px) */
.nav-tagline {
    display: inline-block;  /* Visible on wide screens */
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding: 0 1.5rem;
    border-left: 2px solid var(--color-silver);
    border-right: 2px solid var(--color-silver);
}

/* Menu: Visible by default (wide screens) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-navy);
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition-speed);
    white-space: nowrap;
}

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

/* Hamburger: Hidden by default (wide screens) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-navy);
    transition: all var(--transition-speed);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #243341 0%, #354759 100%);
    color: var(--color-white);
    padding: 6rem 0;
    text-align: center;
}

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


.hero-logo {
    height: 240px !important;
    width: auto !important;
    background: white !important;
    border-radius: 50% !important;
    padding: 8px !important;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2) !important;
    margin-bottom: 2rem !important;
}

.hero h1 {
    color: var(--color-white);
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-brass);
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #243341 0%, #354759 100%);
    color: var(--color-white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--color-brass);
    max-width: 700px;
    margin: 0 auto;
}

.brands-header .coming-soon-badge {
    display: inline-block;
    background-color: var(--color-brass);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-brass);
    margin: 1rem auto 0;
}

/* Intro Section */
.intro-section {
    background-color: var(--color-white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: left;
}

/* Marketplaces Section */
.marketplaces-section {
    background-color: var(--color-ivory);
}

.marketplace-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.marketplace-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.marketplace-icon {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.marketplace-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.marketplace-icon img {
    width: 100%;
    height: 120px;  /* Increased from 80px */
    object-fit: contain;
}

.marketplace-item p {
    font-weight: 600;
    font-size: 1.125rem;  /* Slightly larger text */
    color: var(--color-navy);
    margin: 0;
}

/* Future Section */
.future-section {
    background-color: var(--color-white);
}

.future-content {
    max-width: 900px;
    margin: 0 auto;
}

.future-content h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.future-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: left;
}

/* About Page - Two Column Layout */
.about-content {
    background-color: var(--color-white);
}

.section-heading {
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.two-column-layout.reverse {
    direction: rtl;
}

.two-column-layout.reverse > * {
    direction: ltr;
}

.column-text h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.column-text p {
    color: var(--color-text);
    line-height: 1.8;
}

.column-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;  /* Limit maximum size */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive: Stack layout on narrow screens */
@media (max-width: 900px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Standard layout: Image between heading and text */
    .section-heading {
        order: 1;  /* Heading first */
    }
    
    .two-column-layout .column-image {
        order: 2;  /* Image second */
    }
    
    .two-column-layout .column-text {
        order: 3;  /* Text last */
    }
    
    /* Reverse layout: Same order (heading, image, text) */
    .two-column-layout.reverse {
        direction: ltr;
    }
}

/* Mission Page */
.mission-statement {
    background-color: var(--color-white);
    text-align: center;
}

.statement-box {
    background: linear-gradient(135deg, #243341 0%, #354759 100%);
    color: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-medium);
}

.statement-box blockquote {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 1.6;
    font-style: italic;
    quotes: """ """ "'" "'";
}

.statement-box blockquote::before {
    content: open-quote;
}

.statement-box blockquote::after {
    content: close-quote;
}

.statement-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: left;
}

.values-section {
    background-color: var(--color-ivory);
}

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

.value-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 60px;
    height: 60px;
}

.step-icon svg {
    width: 60px;
    height: 60px;
}

.vision-icon svg {
    width: 60px;
    height: 60px;
}

.info-icon svg {
    width: 40px;
    height: 40px;
}

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

.value-card p {
    color: var(--color-text);
    line-height: 1.7;
    text-align: left;
}

.commitment-section {
    background-color: var(--color-white);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: left;
}
    .commitment-content h2 {
        text-align: center;
    }

.full-width-section {
    text-align: center;
    max-width: 900px;
    margin: 3rem auto 0;
}

.full-width-section h2 {
    text-align: center;
}

.full-width-section p {
    text-align: left;
}

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

.highlight-card {
    background-color: var(--color-ivory);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.highlight-card h3 {
    color: var(--color-brass);
    margin-bottom: 0.75rem;
}

/* Marketplace Page */
.platforms-section {
    background-color: var(--color-white);
}

.platforms-grid {
    display: grid;
    gap: 3rem;
}

.platform-card {
    background-color: var(--color-ivory);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.platform-header-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: opacity var(--transition-speed);
}

.platform-header-link:hover {
    opacity: 0.85;
}

.platform-logo-inline {
    width: 150px;
    height: 75px;
    object-fit: contain;
    flex-shrink: 0;
}

.platform-card h4 {
    color: #243341;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.platform-card h3 {
    color: #243341;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.platform-card p {
    color: #333333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.platform-features {
    list-style: none;
    padding-left: 0;
}

.platform-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333333;
}

.platform-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 18px;
    height: 18px;
    background-color: #C9A961;
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M3 8l3 3 7-7"/></svg>');
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Contact Page */
.contact-section {
    background-color: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 60% 38%;
    gap: 2%;
    align-items: stretch;  /* Ensure equal heights */
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    background-color: #F8F6F2;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form-container h2 {
    margin-bottom: 1.5rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #243341;
    font-weight: 600;
}

.required {
    color: #C9A961;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A961;
}

.form-note {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.form-message-success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-message-error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.contact-info-card,
.contact-cta-card {
    /* Remove background, padding, border-radius for cleaner look */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #D1D5DB;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #243341;
}

.info-content p {
    margin: 0;
}

.info-note {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.5rem;
}

.location-map {
    margin-top: 1.5rem;
    margin-left: calc(-40px - 1rem);  /* Offset icon width (40px) + gap (1rem) */
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(36, 51, 65, 0.08);
}

.location-map img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-topics {
    list-style: none;
    padding: 0;
}

/* How Can We Help You Section */
.help-section {
    background-color: #F8F6F2;
}

.help-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.help-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.help-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(36, 51, 65, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(36, 51, 65, 0.12);
}

.help-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.help-card-icon svg {
    width: 100%;
    height: 100%;
}

.help-card h3 {
    color: #C9A961;
    margin-bottom: 1rem;
}

.help-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.help-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #333333;
}

.help-card li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #C9A961;
    font-weight: bold;
}

@media (max-width: 900px) {
    .help-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Footer */
footer {
    background-color: #243341;
    color: #FFFFFF;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0;
    color: #FFFFFF;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Process Section Styles */
.process-section {
    background-color: #F8F6F2;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: stretch;  /* Changed from center to stretch for equal heights */
    flex-wrap: wrap;
    gap: 0.75rem;  /* Reduced from 1.5rem to 0.75rem for tighter spacing */
}

.process-step {
    flex: 0 1 calc(25% - 0.75rem);  /* Updated calculation to match new gap */
    max-width: 250px;  /* Maximum width constraint set to 250px */
    /* Removed min-width to allow 4 items in a row on wider screens */
    display: flex;  /* Make it a flex container */
    flex-direction: column;  /* Stack children vertically */
    text-align: center;
    background-color: #FFFFFF;
    padding: 2rem 1.25rem;  /* Reduced padding from 2.5rem 1.5rem */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(36, 51, 65, 0.12);
    border: 2px solid #F8F6F2;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(36, 51, 65, 0.16);
    border-color: #C9A961;
}

.step-number {
    font-size: 1.25rem;  /* Smaller than h3 (which is 1.5rem or 1.75rem) */
    font-weight: 800;
    color: #C9A961;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1;
}

.step-icon {
    margin-bottom: 1.5rem;
}

.process-step h3 {
    color: #243341;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-step p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;  /* Allow paragraph to expand and fill remaining space */
}

.process-arrow {
    font-size: 1.5rem; /* Smaller than before, closer to h3 */
    font-weight: 700;  /* Less bold */
    color: #C9A961;
    flex-shrink: 0;
    user-select: none;
    line-height: 1;
    align-self: center;  /* Center arrows vertically */
}

/* Process section: 2 columns on tablet (below 900px) */
@media (max-width: 900px) {
    .process-step {
        flex: 0 1 calc(50% - 0.75rem);  /* 2 columns: 2+2 layout with updated gap */
        max-width: none;  /* Remove max-width constraint on smaller screens */
        min-width: 200px;  /* Add min-width back for smaller screens */
    }
    
    .process-arrow {
        display: none;  /* Hide arrows on tablet/mobile */
    }
}

/* Expertise Section (Marketplace page) */
.expertise-section {
    background-color: #FFFFFF;
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
}

.expertise-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.expertise-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.expertise-highlight {
    background-color: #F8F6F2;
    padding: 2rem;
    border-left: 4px solid #C9A961;
    margin-top: 2rem;
}

.highlight-text {
    font-size: 1.25rem;
    color: #243341;
    font-style: italic;
}

/* Brands Page */
.brands-intro {
    background-color: #FFFFFF;
}

.brands-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.brands-intro-content h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.brands-intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.brand-vision {
    background-color: #F8F6F2;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* 4 equal columns on desktop */
    gap: 2rem;
}

.vision-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(36, 51, 65, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(36, 51, 65, 0.12);
}

.vision-card h3 {
    color: #C9A961;
    margin-bottom: 1rem;
}

.vision-card p {
    color: #333333;
    line-height: 1.7;
    text-align: left;
}

/* Responsive vision grid: 2 columns on tablet, 1 on mobile */
@media (max-width: 900px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);  /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .vision-grid {
        grid-template-columns: 1fr;  /* 1 column on mobile */
    }
}

.brand-categories {
    background-color: #FFFFFF;
}

.categories-content {
    max-width: 900px;
    margin: 0 auto;
}

.categories-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.categories-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.category-teaser {
    background-color: #F8F6F2;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.category-teaser p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-teaser ul {
    list-style: none;
    padding: 0;
}

.category-teaser li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.category-teaser li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 18px;
    height: 18px;
    background-color: #C9A961;
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M3 8l3 3 7-7"/></svg>');
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.timeline-section {
    background-color: #F8F6F2;
}

.timeline-content {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.brands-cta {
    background-color: #FFFFFF;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #243341 0%, #354759 100%);
    color: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(36, 51, 65, 0.12);
}

.cta-box h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-box .btn-primary {
    background-color: #C9A961;
    color: #FFFFFF;
}

.cta-box .btn-primary:hover {
    background-color: #B4975A;
}

/* Responsive Design */

/* SCENARIO 2: Medium/Tablet (768-1024px) - Logo + Menu (NO tagline, NO hamburger) */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-tagline {
        display: none;  /* Hide tagline on medium screens */
    }
}

/* SCENARIO 3: Small tablet (600-768px) - Logo + Tagline + Hamburger */
@media (min-width: 601px) and (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;  /* Distribute items across */
    }
    
    .nav-tagline {
        display: inline-block;  /* Show tagline in center */
        flex: 1;  /* Allow it to take available space */
        text-align: center;  /* Center the tagline text */
    }
    
    .nav-toggle {
        display: flex;  /* Show hamburger on the right */
    }
    
    .nav-menu {
        display: none;  /* Hide menu by default */
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--color-white);
        box-shadow: var(--shadow-soft);
    }
    
    .nav-menu.active {
        display: flex;  /* Show menu when hamburger clicked */
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-silver);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
    }
}

/* SCENARIO 4: Mobile (<600px) - Logo + Hamburger (NO tagline) */
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .navbar .container {
        flex-wrap: nowrap;  /* Don't wrap on mobile */
        justify-content: space-between;  /* Logo left, hamburger right */
        gap: 1rem;
    }
    
    .nav-tagline {
        display: none;  /* Hidden on mobile */
    }
    
    .nav-toggle {
        display: flex;  /* Show hamburger on the right */
        margin-left: auto;  /* Push to the right */
    }
    
    .nav-menu {
        display: none;  /* Hide menu by default */
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--color-white);
        box-shadow: var(--shadow-soft);
    }
    
    .nav-menu.active {
        display: flex;  /* Show menu when hamburger clicked */
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-silver);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
}

/* Contact Grid: Switch to single column at 900px */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-map {
        margin-left: 0;  /* Reset negative margin on single column */
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nav-toggle,
    footer,
    .fade-in {
        display: block !important;
    }
    
    .hero {
        background: none;
        color: #333333;
    }
}
