/*
Theme Name: Brandsiix
Theme URI: https://brandsiix.com
Author: Brandsiix
Author URI: https://brandsiix.com
Description: A professional digital marketing agency theme for Brandsiix - The Growth Mix That Clicks.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brandsiix
Tags: one-column, custom-menu, featured-images, theme-options, marketing, agency
*/

/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
    /* Colors */
    --clr-primary: #1a3a2a;
    --clr-primary-light: #2d5a3d;
    --clr-primary-dark: #0f2218;
    --clr-cream: #f9f7f2;
    --clr-cream-dark: #f0ede5;
    --clr-white: #ffffff;
    --clr-off-white: #fafaf8;
    --clr-light-gray: #f5f5f3;
    --clr-border: #e8e5de;
    --clr-border-light: #eeecea;
    --clr-text-dark: #1a1a1a;
    --clr-text-body: #4a4a4a;
    --clr-text-muted: #7a7a7a;
    --clr-text-light: #999999;
    --clr-accent-green: #2d8a4e;
    --clr-accent-gold: #c4963c;
    --clr-accent-red: #d94444;
    --clr-success: #22c55e;
    --clr-overlay: rgba(26, 58, 42, 0.95);

    /* Typography */
    --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ff-logo: 'Dancing Script', cursive;

    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3rem;
    --fs-5xl: 3.5rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-wide: 1320px;
    --header-height: 72px;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 50px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 16px rgba(0,0,0,0.06);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;
}

/* ═══════════════════════════════════════════
   RESET & BASE STYLES
   ═══════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--clr-text-body);
    background-color: var(--clr-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-wide {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-padding {
    padding: var(--space-5xl) 0;
}

.section-label {
    font-family: var(--ff-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-md);
    display: inline-block;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-4xl);
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

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

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 12px 28px;
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border: 2px solid var(--clr-primary);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 42, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--clr-accent-gold);
    color: var(--clr-white);
    border: 2px solid var(--clr-accent-gold);
}

.btn-accent:hover {
    background-color: #b3872f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 150, 60, 0.3);
}

.btn-white {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    border: 2px solid var(--clr-white);
}

.btn-white:hover {
    background-color: var(--clr-cream);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: var(--fs-xs);
}

.btn-lg {
    padding: 16px 36px;
    font-size: var(--fs-base);
}

.btn-arrow::after {
    content: '→';
    font-size: 1.1em;
    transition: transform var(--transition);
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--clr-white);
    height: var(--header-height);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

#site-header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--clr-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo {
    font-family: var(--ff-logo);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.5px;
}

.site-logo span {
    font-family: var(--ff-logo);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-menu a {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--clr-text-body);
    position: relative;
    padding: 4px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: width var(--transition);
}

.nav-menu a:hover {
    color: var(--clr-primary);
}

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

.header-cta .btn {
    padding: 10px 24px;
    font-size: var(--fs-sm);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--clr-primary);
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
    padding-top: calc(var(--header-height) + var(--space-4xl));
    padding-bottom: var(--space-4xl);
    background: var(--clr-cream);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,58,42,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--clr-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.hero-badge::before {
    content: '✦';
    font-size: 10px;
    color: var(--clr-accent-gold);
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-5xl);
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Dashboard Card */
.hero-dashboard {
    position: relative;
    z-index: 2;
}

.dashboard-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-xl);
    border: 1px solid var(--clr-border-light);
    position: relative;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--clr-border-light);
}

.dashboard-header h3 {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-text-dark);
}

.dashboard-period {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    background: var(--clr-light-gray);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.dash-stat {
    text-align: left;
}

.dash-stat-label {
    font-size: 11px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.dash-stat-value {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.2;
}

.dash-stat-change {
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
}

.dash-stat-change.positive {
    color: var(--clr-accent-green);
}

.dash-stat-change.negative {
    color: var(--clr-accent-red);
}

/* Donut chart */
.dash-stat-donut {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.donut-chart {
    width: 72px;
    height: 72px;
    position: relative;
}

.donut-chart svg {
    width: 72px;
    height: 72px;
    transform: rotate(-90deg);
}

.donut-bg {
    fill: none;
    stroke: var(--clr-border-light);
    stroke-width: 6;
}

.donut-progress {
    fill: none;
    stroke: var(--clr-primary);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.5s ease;
}

.donut-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-text-dark);
}

.mini-sparkline {
    width: 60px;
    height: 30px;
    display: flex;
    align-items: center;
}

.mini-sparkline svg {
    width: 100%;
    height: 100%;
}

/* Bottom stats row */
.dashboard-bottom {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--clr-border-light);
}

.growth-line-chart {
    height: 40px;
    margin-top: 8px;
}

.growth-line-chart svg {
    width: 100%;
    height: 100%;
}

/* Bar chart */
.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 70px;
    padding-top: 8px;
    gap: 4px;
}

.bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.rev-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 50px;
}

.bar-fill {
    width: 6px;
    height: 0;
    border-radius: 2px 2px 0 0;
    transition: height 1s ease; /* Transition for animation */
}

.bar-fill.green {
    background: var(--clr-primary);
}

.bar-fill.light-green {
    background: var(--clr-primary-light);
    opacity: 0.5;
}

.bar-label {
    font-size: 8px;
    color: var(--clr-text-light);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════
   BRAND LOGOS
   ═══════════════════════════════════════════ */
.brands-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border-light);
    border-bottom: 1px solid var(--clr-border-light);
}

.brands-label {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-bottom: var(--space-xl);
    font-weight: 500;
}

.brands-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.brand-logo {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-text-muted);
    opacity: 0.5;
    transition: opacity var(--transition);
    white-space: nowrap;
    letter-spacing: 1px;
}

.brand-logo:hover {
    opacity: 0.8;
}

.brand-logo.brand-boat {
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: lowercase;
}

.brand-logo.brand-mamaearth {
    font-family: var(--ff-body);
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.brand-logo.brand-wow {
    font-family: var(--ff-body);
    font-weight: 800;
    text-transform: uppercase;
}

.brand-logo.brand-cars24 {
    font-family: var(--ff-body);
    font-weight: 800;
    text-transform: uppercase;
}

.brand-logo.brand-cars24 .cars24-accent {
    color: var(--clr-accent-gold);
}

.brand-logo.brand-zivame {
    font-family: var(--ff-heading);
    font-weight: 500;
    text-transform: lowercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.brand-logo.brand-levis {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-style: italic;
}

.brand-logo.brand-sugar {
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.brand-logo.brand-sugar .sugar-circle {
    background: var(--clr-text-muted);
    color: var(--clr-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */
.services-section {
    padding: var(--space-5xl) 0;
    background: var(--clr-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--clr-off-white);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-primary);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--clr-cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--clr-primary);
    font-size: 22px;
}

.service-card h3 {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.service-card p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.service-link {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 10px;
}

.service-link::after {
    content: '→';
    transition: transform var(--transition);
}

/* ═══════════════════════════════════════════
   GROWTH STACK SECTION
   ═══════════════════════════════════════════ */
.growth-stack {
    padding: var(--space-5xl) 0;
    background: var(--clr-primary);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.growth-stack .section-label {
    color: rgba(255,255,255,0.5);
}

.growth-stack .section-title {
    color: var(--clr-white);
}

/* Steps timeline */
.gs-steps-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-3xl);
    position: relative;
    padding: 0 var(--space-2xl);
}

.gs-step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    transition: all var(--transition);
}

.gs-step-circle.active-circle {
    background: var(--clr-white);
    color: var(--clr-primary);
}

.gs-step-circle.inactive-circle {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    border: 2px solid rgba(255,255,255,0.2);
}

.gs-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
}

.gs-step-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}

.gs-step-line.filled::after {
    width: 100%;
}

/* Step content grid */
.gs-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.gs-step {
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}

.gs-step:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.gs-step h3 {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 4px;
}

.gs-step .gs-step-sub {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.gs-step ul {
    list-style: none;
}

.gs-step ul li {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.7);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.gs-step ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.4);
}

/* Photos strip */
.gs-photos {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
}

.gs-photo {
    width: 160px;
    height: 200px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    position: relative;
}

.gs-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    opacity: 0.3;
}

/* ═══════════════════════════════════════════
   CASE STUDIES SECTION
   ═══════════════════════════════════════════ */
.case-studies {
    padding: var(--space-5xl) 0;
    background: var(--clr-light-gray);
}

.case-studies-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-3xl);
}

.case-studies-header .section-title {
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.stat-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    transition: all var(--transition);
}

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

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--clr-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 24px;
}

.stat-number {
    font-family: var(--ff-heading);
    font-size: var(--fs-4xl);
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-number.negative {
    color: var(--clr-accent-green);
}

.stat-label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-text-dark);
    margin-bottom: 4px;
}

.stat-desc {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════ */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--clr-white);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.testimonial-card {
    background: var(--clr-off-white);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    transition: all var(--transition);
}

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

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.testimonial-brand {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-text-dark);
}

.testimonial-brand.script-logo {
    font-family: var(--ff-logo);
    font-size: var(--fs-xl);
}

.testimonial-brand.bold-logo {
    text-transform: lowercase;
    font-weight: 800;
}

.testimonial-stars {
    color: var(--clr-accent-gold);
    font-size: var(--fs-sm);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: var(--fs-sm);
    color: var(--clr-text-body);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-weight: 700;
    font-size: var(--fs-sm);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--clr-text-dark);
}

.author-role {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.testimonials-cta {
    text-align: center;
}

/* ═══════════════════════════════════════════
   CTA / CONTACT SECTION
   ═══════════════════════════════════════════ */
.cta-section {
    padding: var(--space-5xl) 0;
    background: var(--clr-primary);
    color: var(--clr-white);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.cta-left {
    padding-right: var(--space-xl);
}

.cta-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-md);
}

.cta-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.cta-checklist {
    margin-bottom: var(--space-2xl);
}

.cta-checklist li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 0;
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.8);
}

.cta-checklist li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    font-size: 10px;
    color: var(--clr-success);
    flex-shrink: 0;
}

/* Calendar */
.calendar-widget {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.calendar-header-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.calendar-header-widget .cal-title {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.calendar-month-display {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-white);
    text-align: center;
    margin-bottom: var(--space-md);
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: var(--space-xs);
}

.calendar-days-header span {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    padding: 4px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-day {
    text-align: center;
    padding: 6px 4px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cal-day:hover:not(.empty):not(.past) {
    background: rgba(255,255,255,0.15);
    color: var(--clr-white);
}

.cal-day.empty {
    cursor: default;
}

.cal-day.past {
    color: rgba(255,255,255,0.25);
    cursor: default;
}

.cal-day.today {
    background: var(--clr-accent-gold);
    color: var(--clr-white);
    font-weight: 700;
    border-radius: 50%;
}

.cal-day.selected {
    background: var(--clr-white);
    color: var(--clr-primary);
    font-weight: 700;
    border-radius: 50%;
}

/* Contact form */
.cta-right {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.form-title {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-xl);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    position: relative;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--clr-white);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.12);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.form-submit {
    grid-column: 1 / -1;
    padding-top: var(--space-sm);
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
    background: var(--clr-primary-dark);
    color: rgba(255,255,255,0.7);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .site-logo {
    color: var(--clr-white);
    margin-bottom: var(--space-md);
    display: inline-block;
}

.footer-brand p {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-sm);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col ul li a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
    transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--clr-white);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
}

.footer-contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-bottom-links a {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Float animation for dashboard */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.dashboard-card {
    animation: float 6s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --fs-5xl: 2.75rem;
        --fs-4xl: 2.25rem;
        --fs-3xl: 2rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .hero {
        min-height: auto;
        padding-bottom: var(--space-3xl);
    }

    .dashboard-card {
        max-width: 500px;
        margin: 0 auto;
        animation: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gs-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        display: none;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --fs-5xl: 2.25rem;
        --fs-4xl: 1.75rem;
        --fs-3xl: 1.5rem;
        --space-5xl: 5rem;
    }

    .container, .container-wide {
        padding: 0 var(--space-md);
    }

    /* Mobile nav */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--clr-white);
        flex-direction: column;
        padding: var(--space-2xl);
        gap: var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: var(--fs-lg);
    }

    .menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

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

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }

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

    .gs-steps-header {
        display: none;
    }

    .gs-steps-grid {
        grid-template-columns: 1fr;
    }

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

    .case-studies-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-card:last-child {
        display: block;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .gs-photos {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .gs-photo {
        width: 120px;
        height: 150px;
    }

    .brands-track {
        gap: var(--space-xl);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --fs-5xl: 1.85rem;
        --fs-4xl: 1.5rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-bottom {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   FLOATING CHAT BUTTON
   ═══════════════════════════════════════════ */
.floating-chat {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--clr-accent-green);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(45, 138, 78, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all var(--transition);
}

.floating-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(45, 138, 78, 0.5);
}
