/* CSS Design System for Rooted Creative Group LLC */

:root {
    /* Color Palette - Luxury B2B Theme */
    --primary-green: #1E5631;       /* Deep Forest Green */
    --accent-green: #3A6A48;        /* Soft Leaf Green */
    --gold: #D9A24F;                /* Warm Rich Gold */
    --sand: #B58D53;                /* Muted Metallic Sand */
    --charcoal: #1C1C1C;            /* Dark Charcoal for text/footer */
    --alabaster: #FAF7F0;           /* Soft Warm Cream Alabaster background */
    --off-white: #FCFAF5;           /* Card background */
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout */
    --max-width: 1140px;
    --header-height: 85px;
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(30, 86, 49, 0.03);
    --shadow-md: 0 12px 36px rgba(30, 86, 49, 0.06);
    --shadow-lg: 0 24px 64px rgba(30, 86, 49, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--alabaster);
}
::-webkit-scrollbar-thumb {
    background: var(--sand);
    border-radius: 5px;
    border: 2px solid var(--alabaster);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.8;
    color: var(--charcoal);
    background-color: var(--alabaster);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Headings & Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    position: relative;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: rgba(28, 28, 28, 0.8);
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4.5rem auto;
}

.subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sand);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.accent-line {
    width: 50px;
    height: 3px;
    background-color: var(--gold);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.section-intro {
    font-size: 1.15rem;
    color: rgba(28, 28, 28, 0.7);
    line-height: 1.7;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 2.25rem;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(30, 86, 49, 0.15);
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(217, 162, 79, 0.25);
}

.btn-secondary {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(217, 162, 79, 0.15);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(30, 86, 49, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 86, 49, 0.15);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Navigation */
.site-header {
    background-color: rgba(250, 247, 240, 0.85);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(30, 86, 49, 0.05);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo {
    height: 52px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--primary-green);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.main-nav a:not(.btn) {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--charcoal);
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.main-nav a:not(.btn):hover {
    color: var(--primary-green);
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: auto;
    min-height: 650px;
    background: linear-gradient(135deg, var(--alabaster) 40%, #EFEBE1 100%);
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4.5rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    text-align: left;
}

.hero-tag {
    background-color: rgba(30, 86, 49, 0.06);
    color: var(--primary-green);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    color: var(--primary-green);
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(28, 28, 28, 0.75);
    margin-bottom: 2.5rem;
    max-width: 620px;
}

.hero-checks {
    display: flex;
    gap: 2.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-check-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-green);
}

.hero-check-item svg {
    color: var(--gold);
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

/* Pricing Card on Hero */
.hero-menu-card {
    background-color: var(--white);
    border: 1px solid rgba(30, 86, 49, 0.05);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    color: var(--charcoal);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 1.2s ease-out;
    width: 100%;
}

.menu-card-header {
    border-bottom: 1px solid rgba(30, 86, 49, 0.06);
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--sand);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.menu-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-green);
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-item-icon {
    font-size: 1.5rem;
    background-color: rgba(30, 86, 49, 0.04);
    color: var(--primary-green);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(30, 86, 49, 0.08);
}

.menu-item-icon svg {
    stroke-width: 2.2;
}

.menu-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu-item-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
}

.menu-item-start {
    font-size: 0.85rem;
    color: rgba(28, 28, 28, 0.6);
}

.menu-card-btn {
    margin-top: 0.5rem;
}

/* Who We Are Section */
.about-section {
    padding: 7.5rem 0;
    background-color: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

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

.about-logo-card {
    background-color: var(--alabaster);
    border: 1px solid rgba(30, 86, 49, 0.04);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    max-width: 360px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-large {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-text-column h2 {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
}

.about-text-column p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.section-accent {
    width: 50px;
    height: 3px;
    background-color: var(--gold);
    margin: 1.25rem 0 2rem 0;
    border-radius: 2px;
}

/* Creative Banner Section */
.creative-banner-section {
    padding: 2rem 0;
    background-color: var(--white);
}

.banner-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-md);
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.65) contrast(1.02);
    transition: transform 0.8s ease;
}

.banner-wrapper:hover .banner-img {
    transform: scale(1.03);
}

.banner-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3.5rem;
    color: var(--white);
    background: linear-gradient(to top, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0) 100%);
}

.banner-overlay-text h3 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.banner-overlay-text p {
    font-size: 1.15rem;
    color: var(--gold);
    margin: 0;
}

/* Services Grid (Split Layout) */
.services-section {
    padding: 7.5rem 0;
    background-color: var(--alabaster);
}

.services-layout-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.services-list-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-mini {
    background-color: var(--white);
    border: 1px solid rgba(30, 86, 49, 0.03);
    padding: 2.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition);
}

.service-card-mini:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 86, 49, 0.08);
}

.service-card-mini .service-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-card-mini .service-icon svg {
    stroke-width: 2;
}

.service-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.service-info p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(28, 28, 28, 0.7);
    margin: 0;
}

/* Services Collage */
.services-collage-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
}

.collage-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 260px;
    border: 1px solid rgba(30, 86, 49, 0.04);
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collage-card:hover .collage-img {
    transform: scale(1.04);
}

/* Ecosystem Section */
.ecosystem-section {
    padding: 7.5rem 0;
    background-color: var(--white);
}

.ecosystem-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}

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

.brand-item-card {
    background-color: var(--alabaster);
    border: 1px solid rgba(30, 86, 49, 0.03);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.brand-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(217, 162, 79, 0.2);
}

.brand-logo-header {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.brand-logo-display {
    max-height: 85%;
    max-width: 90%;
    object-fit: contain;
}

.brand-logo-header.no-logo {
    display: flex;
}

.text-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--gold);
    line-height: 1;
    background-color: rgba(217, 162, 79, 0.08);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(217, 162, 79, 0.15);
}

.brand-text-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--primary-green);
}

.brand-text-body p {
    font-size: 0.92rem;
    color: rgba(28, 28, 28, 0.7);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.brand-text-body .link-btn {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
}

.brand-text-body .link-btn:hover {
    color: var(--gold);
}

/* Ecosystem Photo Side Card */
.ecosystem-photo-column {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.ecosystem-photo-card {
    background-color: var(--alabaster);
    border: 1px solid rgba(30, 86, 49, 0.04);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ecosystem-side-img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: center center;
}

.photo-card-caption {
    padding: 2rem;
    background-color: var(--white);
    border-top: 1px solid rgba(30, 86, 49, 0.04);
}

.photo-card-caption h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.photo-card-caption p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(28, 28, 28, 0.65);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 7.5rem 0;
    background-color: var(--alabaster);
}

.contact-wrapper-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: start;
}

.contact-text-side {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-text-side h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-tagline {
    font-size: 1.2rem;
    color: var(--sand);
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(28, 28, 28, 0.8);
    font-weight: 600;
}

.contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.contact-image-box {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(30, 86, 49, 0.04);
    height: 320px;
}

.contact-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tabbed Contact Form Container */
.contact-forms-container {
    background-color: var(--white);
    border: 1px solid rgba(30, 86, 49, 0.04);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-tabs {
    display: flex;
    border-bottom: 1px solid rgba(30, 86, 49, 0.05);
    background-color: #F8F5EE;
}

.form-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 1.35rem 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(28, 28, 28, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.form-tab-btn:hover {
    color: var(--primary-green);
    background-color: rgba(30, 86, 49, 0.02);
}

.form-tab-btn.active {
    color: var(--primary-green);
    background-color: var(--white);
    border-bottom: 3px solid var(--gold);
}

.form-content-box {
    display: none;
    padding: 3rem;
}

.form-content-box.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.form-group label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-green);
}

.form-group input,
.form-group textarea,
.form-select {
    background-color: #FBFBF9;
    border: 1px solid rgba(30, 86, 49, 0.12);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    color: var(--charcoal);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(217, 162, 79, 0.1);
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%231E5631' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

/* Footer Section */
.site-footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 2rem 0 1rem 0; /* further reduced vertical padding for a slimmer footer */
    border-top: 1px solid rgba(250, 247, 240, 0.04);
}

.site-footer h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* equal columns for brand, links, legal */
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-lockup {
    margin-bottom: 0.5rem; /* tighter spacing for logo */
}

.footer-brand .logo-title {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 550px;
    color: rgba(250, 247, 240, 0.7);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--white);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-disclaimer {
    border-top: 1px solid rgba(250, 247, 240, 0.06);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(250, 247, 240, 0.5);
}

.footer-disclaimer p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: rgba(250, 247, 240, 0.45);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 2.25rem;
}

/* Footer logo – enforce size and invert black/dark pixels to white for contrast */
.footer-logo {
    max-height: 80px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Footer legal column */
.footer-legal {
    font-size: 0.85rem;
    color: rgba(250, 247, 240, 0.5);
    line-height: 1.6;
}

.footer-legal a {
    color: rgba(250, 247, 240, 0.7);
    text-decoration: underline;
}

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

.legal-links a {
    color: rgba(250, 247, 240, 0.45);
}

.legal-links a:hover {
    color: var(--gold);
}

/* Keyframes & Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styling */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-container-grid,
    .about-wrapper,
    .services-layout-grid,
    .ecosystem-layout-grid,
    .contact-wrapper-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-checks {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-menu-card {
        margin: 0 auto;
        max-width: 420px;
    }
    
    .about-logo-card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .services-collage-column {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        height: auto;
    }
    
    .collage-card {
        height: 250px;
    }
    
    .ecosystem-photo-column {
        position: static;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-text-side {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .contact-image-box {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 75px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--alabaster);
        z-index: 99;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 3.5rem;
        transform: translateX(-100%);
        transition: var(--transition);
        border-top: 1px solid rgba(30, 86, 49, 0.05);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .main-nav a:not(.btn) {
        font-size: 1.05rem;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-section {
        padding: 4.5rem 1rem;
    }
    
    .hero-container-grid {
        gap: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .banner-wrapper {
        height: 280px;
    }
    
    .banner-overlay-text {
        padding: 2rem;
    }
    
    .banner-overlay-text h3 {
        font-size: 1.5rem;
    }
    
    .banner-overlay-text p {
        font-size: 0.95rem;
    }
    
    .service-card-mini {
        padding: 1.75rem;
        gap: 16px;
    }
    
    .services-collage-column {
        grid-template-columns: 1fr;
    }
    
    .form-content-box {
        padding: 2rem;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Cookie Banner & Small Buttons */
.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--alabaster);
    color: var(--charcoal);
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 -4px 20px rgba(30,86,49,0.08);
    border-top: 1px solid rgba(30,86,49,0.05);
    z-index: 9999;
    font-family: var(--font-body);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.cookie-banner .banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .cookie-banner .banner-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Visual Card */
.hero-visual-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.hero-visual-card .hero-image-main {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Services Teaser Layout */
.services-teaser-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}
.teaser-text-column h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.teaser-description {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.teaser-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.teaser-highlights li {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}
.teaser-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}
.teaser-btn {
    display: inline-block;
}
.teaser-visual-column img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

@media (max-width: 992px) {
    .services-teaser-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Services Page Styles --- */
.page-hero {
    background-color: var(--sand);
    padding: 150px 0 80px;
    text-align: center;
}
.page-hero h1 {
    font-size: 3.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}
.page-hero p {
    font-size: 1.25rem;
    color: var(--forest-green);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-detail-section {
    padding: 5rem 0;
}
.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}
.service-detail-row.reverse {
    direction: rtl;
}
.service-detail-row.reverse > * {
    direction: ltr;
}
.service-detail-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}
.service-detail-text p {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-features li {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}
.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}
.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 450px;
}

.cta-banner {
    background-color: var(--primary-green);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    margin-top: 4rem;
}
.cta-banner h2 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    .service-detail-row.reverse {
        direction: ltr;
    }
}

/* --- Brand Carousel & News Section --- */
.brand-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.brand-showcase-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Firefox */
}
.brand-showcase-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.brand-showcase-carousel .brand-item-card {
    min-width: 300px;
    flex: 0 0 auto;
}
.carousel-nav {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: var(--transition);
}
.carousel-nav:hover {
    background-color: var(--primary-green);
    color: var(--white);
}
.carousel-nav.prev {
    left: -20px;
}
.carousel-nav.next {
    right: -20px;
}

/* News Section */
.news-section {
    background-color: var(--white);
    padding: 100px 0;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.news-card {
    background-color: var(--alabaster);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.news-date {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-card h3 {
    font-size: 1.35rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.4;
}
.news-card p {
    color: rgba(30,86,49,0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.read-more {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
}
.read-more:hover {
    color: var(--gold);
}

@media (max-width: 992px) {
    .carousel-nav {
        display: none;
    }
}

/* --- Vertical Layout Fixes for Carousel --- */
.ecosystem-layout-vertical {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.ecosystem-layout-vertical .brand-carousel-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.ecosystem-layout-vertical .ecosystem-photo-column {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
