/* ==========================================================================
   Bureau Dimanche Style Sheets
   ========================================================================== */

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

:root {
    --bg-color: #FAF9F6;
    --text-color: #2b2b2b;
    --text-muted: #666666;
    --border-color: #dedede;
    --accent-green: #21b30b;
    --accent-green-bg: rgba(33, 179, 11, 0.1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'Fragment Mono', monospace;
    --card-bg: #ffffff;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px; /* space for sticky bottom bar */
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.mt-4 {
    margin-top: 2rem;
}

.highlight {
    color: var(--text-muted);
}

.highlight-underline {
    position: relative;
    display: inline-block;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-green);
    opacity: 0.3;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Sticky Header Navigation */
.main-header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none; /* Let scroll pass through background */
}

.nav-pill {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 8px 12px 8px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    pointer-events: auto; /* Re-enable pointer events on nav */
    transition: var(--transition);
}

.logo {
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.logo-icon {
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-color);
}

.btn-contact {
    background-color: var(--text-color);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-contact:hover {
    background-color: #000000;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.04);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent-green);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
    top: 0;
    left: 0;
    transform-origin: center;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text-color);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 24px 10px 14px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-booking:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Hero Right: Tilted stack */
.hero-right {
    display: flex;
    justify-content: center;
    position: relative;
    height: 400px;
}

.cards-stack {
    position: relative;
    width: 360px;
    height: 100%;
}

.card-item {
    position: absolute;
    width: 320px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    z-index: 3;
    transform: rotate(-5deg) translate(-20px, 40px);
}

.card-2 {
    z-index: 2;
    transform: rotate(3deg) translate(20px, 80px);
}

.card-3 {
    z-index: 1;
    transform: rotate(-1deg) translate(40px, 140px);
    opacity: 0.8;
}

.cards-stack:hover .card-1 {
    transform: rotate(-2deg) translate(-10px, 20px);
}

.cards-stack:hover .card-2 {
    transform: rotate(1deg) translate(15px, 60px);
}

/* Social Proof Row & Marquee */
.social-proof-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(255,255,255,0.5);
}

.social-proof-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: 40px;
}

.clients-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.overlapping-avatars {
    display: flex;
}

.overlapping-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    margin-right: -10px;
}

.clients-count {
    font-size: 0.8rem;
    line-height: 1.2;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.clients-count p {
    font-weight: 600;
}

/* Infinite Marquee */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-content img {
    height: 32px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.5;
    transition: var(--transition);
}

.marquee-content img:hover {
    filter: grayscale(0);
    opacity: 0.8;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Common Titles */
.section-title {
    font-size: 3rem;
    margin-bottom: 48px;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.project-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
    transition: var(--transition);
    cursor: pointer;
}

.project-img-wrapper {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.project-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.view-project-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: underline;
    margin-top: 8px;
}

/* Hover effects */
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

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

.btn-all-projects {
    display: inline-block;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-all-projects:hover {
    background-color: var(--text-color);
    color: #ffffff;
}

/* Testimonial Highlight */
.testimonial-highlight {
    padding: 80px 0;
    background-color: rgba(255,255,255,0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quote-container {
    max-width: 800px;
    text-align: center;
}

.testimonial-highlight blockquote {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-author h4 {
    font-size: 1rem;
    font-weight: 700;
}

.quote-author p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.tools-grid-wrapper {
    margin-top: 60px;
}

.tools-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.tools-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tools-icons span {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    cursor: default;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--text-color);
}

.tools-icons span svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}

.tools-icons span:hover {
    transform: translateY(-2px);
    border-color: var(--text-color);
    color: #000000;
}

.services-right {
    border-left: 1px solid var(--border-color);
    padding-left: 60px;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-icon {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-color);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.services-list h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.02);
    border-top: 1px solid var(--border-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.author-profile-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 32px;
}

.profile-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.profile-meta {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-meta h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.profile-meta p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.linkedin-badge {
    background-color: #0a66c2;
    color: #ffffff;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.in-icon {
    background-color: #ffffff;
    color: #0a66c2;
    border-radius: 2px;
    padding: 0 4px;
    font-size: 0.7rem;
}

.cv-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.cv-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cv-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.cv-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    vertical-align: top;
}

.cv-role {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.cv-date {
    text-align: right;
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.cv-link {
    display: block;
    text-align: center;
    color: var(--text-color);
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.9rem;
}

.about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 1.1rem;
    color: #333333;
}

.about-paragraphs p strong {
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 60px;
}

.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.highlighted-card {
    border: 2px solid var(--text-color);
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    z-index: 5;
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-green);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.card-header .quote {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.card-header .desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 72px;
}

.card-price {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    margin-bottom: 24px;
}

.price-prefix {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-val {
    font-family: var(--font-mono);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.price-tax {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.duration {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
}

.btn-price-action {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    padding: 14px;
    border-radius: 100px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-price-action:hover {
    background-color: var(--text-color);
    color: #ffffff;
}

.highlighted-btn {
    background-color: var(--text-color);
    color: #ffffff;
}

.highlighted-btn:hover {
    background-color: #000000;
}

/* Retainer monthly banner */
.retainer-box {
    background-color: var(--text-color);
    color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 240px;
    align-items: center;
    gap: 40px;
}

.retainer-left h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.retainer-left p {
    color: #cccccc;
    font-size: 0.95rem;
}

.retainer-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.retainer-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.retainer-features li::before {
    content: '✓';
    color: var(--accent-green);
}

.btn-retainer {
    display: block;
    background-color: #ffffff;
    color: var(--text-color);
    text-decoration: none;
    padding: 14px;
    border-radius: 100px;
    text-align: center;
    font-weight: 700;
    transition: var(--transition);
}

.btn-retainer:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-wall {
    padding: 100px 0;
    background-color: rgba(255,255,255,0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.badge-count {
    display: block;
    text-align: center;
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feedback-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.feedback-text {
    font-size: 1rem;
    color: #444444;
    font-style: italic;
}

.feedback-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedback-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.feedback-user h5 {
    font-size: 0.9rem;
    font-weight: 700;
}

.feedback-user p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.accordion {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    padding: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.accordion-header .num {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-right: 20px;
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    flex-grow: 1;
}

.accordion-header .arrow {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.accordion-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-bottom: 24px;
}

/* Open states */
.accordion-item.active {
    border-color: var(--text-color);
}

.accordion-item.active .accordion-header .arrow {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

/* Booking Card (Right Side FAQ) */
.booking-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.booking-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 2px solid var(--border-color);
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.booking-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.btn-booking-large {
    display: inline-block;
    background-color: var(--text-color);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-booking-large:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

/* Footer Section */
.main-footer {
    padding: 100px 0 60px;
    background-color: #121212;
    color: #ffffff;
    border-top: 1px solid #222222;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.footer-left h2 {
    font-size: 4rem;
    line-height: 1;
}

.footer-left .highlight {
    color: #555555;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666666;
    margin-bottom: 16px;
}

.footer-email {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition);
}

.footer-link:hover {
    color: #ffffff;
}

.linkedin-link span {
    font-family: var(--font-mono);
    background-color: #222222;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-left: 4px;
}

.footer-bottom {
    border-top: 1px solid #222222;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu {
    display: flex;
    gap: 24px;
}

.footer-menu a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal a {
    color: #666666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #ffffff;
}

.copyright {
    color: #444444;
    font-size: 0.85rem;
}

/* Sticky Bottom Action Bar */
.bottom-sticky-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 12px 16px 12px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    z-index: 999;
    width: auto;
    min-width: 360px;
    justify-content: space-between;
}

.bottom-sticky-bar p {
    font-size: 0.9rem;
    font-weight: 700;
}

.sticky-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-actions a:first-child {
    font-size: 1.2rem;
    color: var(--text-color);
    text-decoration: none;
    background-color: var(--bg-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.btn-sticky-call {
    background-color: var(--text-color);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-sticky-call:hover {
    background-color: #000000;
}

/* ==========================================================================
   Responsive adjustments
   ========================================================================== */

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .highlighted-card {
        transform: scale(1);
    }
    
    .retainer-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .retainer-features {
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .nav-pill {
        gap: 16px;
        padding: 8px 8px 8px 16px;
    }
    
    .nav-links {
        display: none; /* Hide middle links on mobile */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        margin: 0 auto 32px;
    }
    
    .hero-right {
        height: 320px;
    }
    
    .cards-stack {
        width: 100%;
        max-width: 280px;
    }
    
    .card-item {
        width: 100%;
        max-width: 260px;
        height: 190px;
    }
    
    .social-proof-container {
        grid-template-columns: 1fr;
        gap: 24px;
        justify-items: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-right {
        border-left: none;
        padding-left: 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left h2 {
        font-size: 2.8rem;
    }
    
    .footer-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ─── 3D WebGL Canvas & Elements ─── */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#coffee-cup-3d {
    width: 100%;
    height: 480px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
}

#coffee-cup-3d canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

#coffee-cup-3d:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    #coffee-cup-3d {
        height: 350px;
    }
}
