/* ==================== SEVENFOUR VENTURES LANDING PAGE - COMPLETE CSS ==================== */

:root {
    --color-cream: #FAF9F6;
    --color-beige: #E8DFD1;
    --color-beige-dark: #D4C4B0;
    --color-charcoal: #2D2D2D;
    --color-charcoal-light: #4A4A4A;
    --color-gold: #C9A227;
    --color-gold-light: #D4AF37;
    --color-gold-dark: #B8860B;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-success: #22C55E;
    --color-error: #EF4444;
    
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

p {
    font-family: var(--font-body);
}

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

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-medium);
}

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

.btn-primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}

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

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

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* ==================== HEADER - BLACK ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #000000;
    transition: var(--transition-medium);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

/* INCREASED LOGO SIZE - Mobile */
.logo img {
    height: 70px;
    width: auto;
}

.nav-desktop {
    display: none;
}

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

.nav-desktop a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.85);
}

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

.header-cta {
    display: none;
    padding: 12px 24px;
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-cta:hover {
    background: var(--color-gold-dark);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #000000;
    padding: 80px 30px 30px;
    transition: var(--transition-medium);
    z-index: 1001;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile a {
    display: block;
    padding: 18px 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-white);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 1000;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    background: var(--color-charcoal);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 12px 4px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    white-space: nowrap;
}

.mobile-sticky-cta a:last-child {
    border-right: none;
    background: var(--color-gold);
}

.mobile-sticky-cta svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    /* INCREASED LOGO SIZE - Desktop */
    .logo img {
        height: 80px;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .header-cta {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-sticky-cta {
        display: none;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 150px 0 60px;
    background: #000;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.8) 35%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 12px;
}

.hero__grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Hero Content */
.hero__content {
    color: #ffffff;
    padding: 0 6px;
}

.hero__tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 5vw, 3.2rem);
    font-weight: 500;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.hero__title span {
    color: var(--color-gold);
    font-style: italic;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.75;
    max-width: 480px;
    letter-spacing: 0.01em;
}

/* Trust Points */
.hero__trust-points {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
    margin-bottom: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero__check {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
    flex-shrink: 0;
}

/* Social Proof */
.hero__social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero__avatars {
    display: flex;
}

.hero__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201, 162, 39, 0.6);
    margin-left: -8px;
    background: #2a2a2a;
}

.hero__avatar:first-child {
    margin-left: 0;
}

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

.hero__rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero__google-badge {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 3px 8px;
    border-radius: 3px;
}

.hero__rated {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero__on-google {
    font-family: var(--font-body);
    font-size: 0.45rem;
    font-weight: 500;
    color: #666;
    line-height: 1.2;
}

.hero__stars {
    display: flex;
    gap: 1px;
}

.hero__stars svg {
    width: 10px;
    height: 10px;
    color: #FFD700;
    fill: #FFD700;
}

.hero__trusted-text {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== CONTACT FORM CARD ==================== */
.hero__form-wrapper {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form-card {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    padding: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* Form Badge */
.contact-form-badge {
    background: transparent;
    padding: 12px 16px 0;
    text-align: center;
}

.contact-form-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-form-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    stroke: var(--color-gold);
}

.contact-form-badge span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-gold);
}

/* Form Header */
.contact-form-header {
    padding: 10px 16px 12px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.contact-form-title-accent {
    color: var(--color-gold);
    display: inline;
}

.contact-form-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
}

/* ==================== CUSTOM CONTACT FORM STYLES ==================== */
.custom-contact-form {
    padding: 20px 16px 16px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row:last-of-type {
    margin-bottom: 12px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .form-row-2col {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--color-error);
    margin-left: 2px;
}

.form-group label .optional {
    font-weight: 400;
    color: #999;
    font-size: 0.7rem;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #FAFAFA;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.input-wrapper:hover {
    border-color: var(--color-beige-dark);
}

.input-wrapper:focus-within {
    border-color: var(--color-gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.input-wrapper.valid {
    border-color: var(--color-success);
}

.input-wrapper.valid:focus-within {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.input-wrapper.error {
    border-color: var(--color-error);
    background: #FEF2F2;
}

.input-wrapper.error:focus-within {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Input Icon */
.input-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: #999;
    stroke-width: 1.5;
    transition: color 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.input-wrapper:focus-within .input-icon {
    color: var(--color-gold);
}

.input-wrapper.valid .input-icon {
    color: var(--color-success);
}

.input-wrapper.error .input-icon {
    color: var(--color-error);
}

/* Input Fields */
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 12px 12px 40px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-charcoal);
    background: transparent;
    border: none;
    outline: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #999;
}

/* Select Wrapper */
.select-wrapper {
    cursor: pointer;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.select-arrow {
    position: absolute;
    right: 12px;
    width: 16px;
    height: 16px;
    color: #999;
    pointer-events: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.select-wrapper:focus-within .select-arrow {
    transform: rotate(180deg);
    color: var(--color-gold);
}

/* Textarea Wrapper */
.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper .input-icon {
    top: 14px;
}

.textarea-wrapper textarea {
    min-height: 80px;
    resize: vertical;
    padding-top: 12px;
}

/* Error Message */
.error-message {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-error);
    margin-top: 4px;
    min-height: 16px;
}

/* Form Response */
.form-response {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
}

.form-response svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.form-response.success {
    display: flex;
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-response.success svg {
    color: var(--color-success);
}

.form-response.error {
    display: flex;
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.form-response.error svg {
    color: var(--color-error);
}

/* Submit Button */
.contact-form-submit-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.contact-form-submit-btn:hover::before {
    left: 100%;
}

.contact-form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.contact-form-submit-btn:active {
    transform: translateY(0);
}

.contact-form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-form-submit-btn .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form-submit-btn .btn-text svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.contact-form-submit-btn:hover .btn-text svg {
    transform: translateX(4px);
}

.contact-form-submit-btn .btn-loader {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form-submit-btn.loading .btn-text {
    display: none;
}

.contact-form-submit-btn.loading .btn-loader {
    display: flex;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tablet Form */
@media (min-width: 640px) and (max-width: 1023px) {
    .hero__container {
        padding: 0 30px;
    }
    
    .hero__content {
        padding: 0;
    }
    
    .hero__form-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero__tagline {
        font-size: 0.95rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
    }
    
    .hero__trust-item {
        font-size: 0.78rem;
    }
    
    .hero__avatar {
        width: 32px;
        height: 32px;
    }
    
    .custom-contact-form {
        padding: 24px 20px 20px;
    }
}

/* Desktop Hero Layout */
@media (min-width: 1024px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__container {
        padding: 0 40px;
    }
    
    .hero__content {
        padding: 0;
    }
    
    .hero__grid {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
    
    .hero__content {
        flex: 1;
    }
    
    .hero__form-wrapper {
        flex: 0 0 420px;
        max-width: 420px;
    }
    
    .hero__overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.7) 30%,
            rgba(0, 0, 0, 0.4) 55%,
            rgba(0, 0, 0, 0.2) 100%
        );
    }
    
    .hero__tagline {
        font-size: 1rem;
    }
    
    .hero__title {
        font-size: 2.8rem;
    }
    
    .hero__subtitle {
        font-size: 0.95rem;
    }
    
    .hero__trust-item {
        font-size: 0.8rem;
    }
    
    .hero__avatar {
        width: 34px;
        height: 34px;
    }
    
    .hero__rated {
        font-size: 0.65rem;
    }
    
    .hero__on-google {
        font-size: 0.5rem;
    }
    
    .hero__stars svg {
        width: 12px;
        height: 12px;
    }
    
    .hero__trusted-text {
        font-size: 0.75rem;
    }
    
    .custom-contact-form {
        padding: 24px 24px 20px;
    }
}

@media (min-width: 1280px) {
    .hero__container {
        padding: 0 60px;
        max-width: 1500px;
    }
    
    .hero__form-wrapper {
        flex: 0 0 440px;
        max-width: 440px;
    }
    
    .hero__title {
        font-size: 3rem;
    }
}

/* ==================== SOCIAL PROOF STRIP ==================== */
.social-proof {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 50px 0;
    background: #FAF9F6;
    border-top: 1px solid #E8DFD1;
    border-bottom: 1px solid #E8DFD1;
}

.social-proof-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
    text-align: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.proof-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.proof-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.proof-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-charcoal-light);
}

@media (min-width: 768px) {
    .social-proof {
        padding: 60px 0;
    }
    
    .social-proof-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
    
    .proof-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 18px;
    }
    
    .proof-icon img {
        width: 100px;
        height: 100px;
    }
    
    .proof-title {
        font-size: 1.05rem;
    }
    
    .proof-label {
        font-size: 0.9rem;
    }
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 0;
    background: var(--color-cream);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.section-header h2 {
    color: var(--color-charcoal);
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.section-header p {
    font-size: 1rem;
    color: var(--color-charcoal-light);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.filter-btn {
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-charcoal-light);
    background: transparent;
    border: 1px solid var(--color-beige-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-charcoal);
    color: var(--color-white);
    border-color: var(--color-charcoal);
}

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

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-beige);
}

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

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    transition: var(--transition-medium);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

.portfolio-overlay span {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
}

@media (min-width: 1024px) {
    .portfolio {
        padding: 80px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
}

/* ==================== WHY US SECTION ==================== */
.why-us {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 0;
    background: var(--color-white);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Side - Image */
.why-us-image-side {
    position: relative;
    order: 2;
    display: flex;
}

.why-us-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    width: 100%;
    height: 100%;
}

.why-us-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badge on Image */
.why-us-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.why-us-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-badge-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.why-us-badge-text {
    display: flex;
    flex-direction: column;
}

.why-us-badge-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.1;
}

.why-us-badge-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

/* Right Side - Content */
.why-us-content-side {
    order: 1;
}

.why-us-header {
    margin-bottom: 30px;
}

.why-us-header .section-label {
    text-align: left;
    margin-bottom: 12px;
}

.why-us-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--color-charcoal);
    margin-bottom: 12px;
    line-height: 1.2;
}

.why-us-header p {
    font-size: 1rem;
    color: var(--color-charcoal-light);
    line-height: 1.6;
}

/* Why Us Boxes */
.why-us-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-cream);
    border-radius: 12px;
    border: 1px solid var(--color-beige);
    transition: all 0.3s ease;
}

.why-box:hover {
    border-color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.why-box-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.why-box-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.why-box-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.why-box-content p {
    font-size: 0.85rem;
    color: var(--color-charcoal-light);
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 640px) {
    .why-us-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) {
    .why-us-image {
        aspect-ratio: 4/3;
    }
}

@media (min-width: 1024px) {
    .why-us {
        padding: 100px 0;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: stretch;
    }
    
    .why-us-image-side {
        order: 1;
    }
    
    .why-us-content-side {
        order: 2;
        display: flex;
        flex-direction: column;
    }
    
    .why-us-image-wrapper {
        height: 100%;
    }
    
    .why-us-image {
        height: 100%;
        min-height: 100%;
    }
    
    .why-us-badge {
        bottom: 30px;
        left: 30px;
        padding: 20px 28px;
    }
    
    .why-us-badge-icon {
        width: 56px;
        height: 56px;
    }
    
    .why-us-badge-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .why-us-badge-number {
        font-size: 1.75rem;
    }
    
    .why-us-badge-label {
        font-size: 0.85rem;
    }
    
    .why-box {
        padding: 24px;
    }
    
    .why-box-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
    
    .why-box-icon img {
        width: 34px;
        height: 34px;
    }
    
    .why-box-content h4 {
        font-size: 1.05rem;
    }
    
    .why-box-content p {
        font-size: 0.9rem;
    }
}

/* ==================== CLIENT STORIES - VIDEO SECTION ==================== */
.client-stories {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 0;
    background: var(--color-cream);
}

.client-stories .section-header {
    margin-bottom: 50px;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card-simple {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (min-width: 768px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .client-stories {
        padding: 100px 0;
    }
    
    .stories-grid {
        gap: 50px;
    }
}

/* ==================== PROCESS SECTION ==================== */
.process {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 70px 0;
    background: #ffffff;
}

.process .section-header h2,
.process .section-header p {
    color: var(--color-charcoal);
}

.process .section-label {
    color: var(--color-gold);
}

.process-timeline {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-cream);
    border-radius: 12px;
    border: 1px solid var(--color-beige);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--color-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
}

.step-content {
    padding-top: 0;
    margin-top: -2px;
}

.step-content h4 {
    color: var(--color-charcoal);
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.step-content p {
    color: var(--color-charcoal-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 640px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .process {
        padding: 80px 0;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .process-step {
        padding: 24px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }
    
    .step-content {
        margin-top: -3px;
    }
    
    .step-content h4 {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }
    
    .step-content p {
        font-size: 0.88rem;
    }
}

/* ==================== SERVICES SECTION ==================== */
.services {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 70px 0;
    background: #F8F6F2;
}

.services .section-header {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.service-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5EED9;
    border-radius: 10px;
    flex-shrink: 0;
}

.service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.service-content {
    flex: 1;
    padding-top: 2px;
}

.service-content h4 {
    color: var(--color-charcoal);
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--color-charcoal-light);
    line-height: 1.55;
    margin: 0;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .service-card {
        padding: 30px 26px;
    }
}

@media (min-width: 1024px) {
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    
    .service-card {
        padding: 32px 28px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
    
    .service-icon img {
        width: 32px;
        height: 32px;
    }
    
    .service-content h4 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.92rem;
    }
}

/* ==================== CTA SECTION ==================== */
.cta {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23C9A227' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--color-white);
    margin-bottom: 12px;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-buttons .btn {
    width: 100%;
    max-width: 280px;
}

.cta-note {
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-buttons .btn {
        width: auto;
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .cta {
        padding: 80px 20px;
    }
}

/* ==================== MINI FOOTER ==================== */
.mini-footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #0a0a0a;
    padding: 30px 20px 80px;
    text-align: center;
}

@media (min-width: 1024px) {
    .mini-footer {
        padding: 30px 20px;
    }
}

.mini-footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.mini-footer h6 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.mini-footer-links {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mini-footer-links span {
    display: inline;
}

.mini-footer-links span::after {
    content: ' | ';
    color: #333;
}

.mini-footer-links span:last-child::after {
    content: '';
}

.mini-footer-copyright {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #666;
    padding-top: 15px;
    border-top: 1px solid #222;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    margin-top: 16px;
    color: var(--color-white);
}

.lightbox-info h4 {
    color: var(--color-white);
    margin-bottom: 4px;
}

.lightbox-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}
