/* ========================================
   LITTLE RED HOUSE DESIGN - MAIN STYLESHEET
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

/* Anchor link offset for sticky header */
section[id] {
    scroll-margin-top: 120px;
}

/* ROOT VARIABLES */
:root {
    /* Brand Colors - Derived from the house */
    --red-primary: #8B2525;
    --red-mid: #A93A33;
    --red-dark: #6B1D1D;
    --warm-cream: #F5F0EB;
    --warm-bg: #FAF7F4;

    /* Dark Theme + Accent */
    --dark-bg: #1A1A1A;
    --dark-secondary: #2D2D2D;
    --gold-accent: #2F7C85;
    --gold-light: #4E97A0;

    /* Neutral Colors */
    --text: #2C2C2C;
    --text-light: #6B7280;
    --text-light-inv: #B8BCC4;
    --white: #FFFFFF;
    --border: #E5E7EB;

    /* UI Colors */
    --green-accent: #1F5E66;
    --shadow-deep: rgba(20, 8, 8, 0.35);

    /* Typography */
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --weight-bold: 700;
    --weight-semibold: 600;
    --weight-medium: 500;
    --weight-normal: 400;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 72px;
}

/* BASE TYPOGRAPHY */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--red-primary);
    transition: color 0.3s;
}

a:hover {
    color: var(--red-dark);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* BUTTONS */
.btn-primary {
    background: var(--red-primary);
    color: var(--white);
    padding: 16px 36px;
    font-size: 17px;
    font-weight: var(--weight-semibold);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-accent);
    transition: left 0.3s;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 37, 37, 0.35);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 16px 36px;
    font-size: 17px;
    font-weight: var(--weight-semibold);
    border: 2px solid var(--red-primary);
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: var(--red-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 37, 37, 0.25);
    border-color: var(--red-dark);
}

/* HEADER */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-accent);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo a {
    font-family: var(--font-header);
    font-size: 22px;
    font-weight: var(--weight-bold);
    color: var(--red-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text);
    font-weight: var(--weight-medium);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--red-primary);
}

.header-cta .btn-primary {
    padding: 12px 24px;
    font-size: 16px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(140deg, rgba(33, 10, 11, 0.9) 0%, rgba(107, 29, 29, 0.82) 48%, rgba(169, 58, 51, 0.58) 100%),
                url('../images/house.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    border-bottom: 3px solid var(--gold-accent);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(47, 124, 133, 0.2) 0%, transparent 42%),
        radial-gradient(circle at 82% 78%, rgba(182, 106, 77, 0.24) 0%, transparent 45%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(245, 240, 235, 0.06) 0%, transparent 34%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(140deg, rgba(38, 14, 15, 0.42) 0%, rgba(57, 21, 23, 0.24) 100%);
    border: 1px solid rgba(245, 240, 235, 0.12);
    border-radius: 24px;
    box-shadow: 0 20px 50px var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(2px);
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 48px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero .btn-primary {
    background: var(--red-primary);
    font-size: 20px;
    padding: 18px 36px;
}

.hero .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--red-primary);
}

/* SECTION DEFAULTS */
.section {
    padding: 80px 20px;
}

.section-alt {
    background:
        linear-gradient(180deg, rgba(250, 247, 244, 0.96) 0%, rgba(250, 247, 244, 1) 100%),
        radial-gradient(circle at 15% 30%, rgba(169, 58, 51, 0.06) 0%, transparent 45%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

/* SERVICE SNAPSHOT */
.service-snapshot {
    background:
        radial-gradient(circle at 10% 15%, rgba(139, 37, 37, 0.08) 0%, transparent 42%),
        radial-gradient(circle at 90% 84%, rgba(47, 124, 133, 0.1) 0%, transparent 42%),
        linear-gradient(180deg, #fefcfa 0%, #f5efea 100%);
}

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

.snapshot-grid-compact {
    max-width: 980px;
    margin: 0 auto;
}

.snapshot-card {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 240, 235, 0.9) 100%);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 16px 32px rgba(25, 14, 14, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.snapshot-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.28) 0%, transparent 65%);
    pointer-events: none;
}

.snapshot-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-accent);
    box-shadow: 0 24px 48px rgba(139, 37, 37, 0.15), 0 12px 24px rgba(212, 175, 55, 0.12);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 240, 235, 0.95) 100%);
}

.snapshot-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-arrow {
    font-size: 24px;
    transition: transform 0.3s;
    color: var(--red-primary);
}

.snapshot-card:hover .card-arrow {
    transform: translateX(4px);
    color: var(--gold-accent);
}

.snapshot-card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.service-starting {
    margin-top: 14px;
    color: var(--red-primary);
    font-weight: var(--weight-semibold);
    font-size: 14px;
}

/* TRUST STRIP */
.trust-strip {
    background:
        radial-gradient(circle at 12% 22%, rgba(182, 106, 77, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 88% 75%, rgba(47, 124, 133, 0.22) 0%, transparent 40%),
        linear-gradient(135deg, #2a0f10 0%, #5c1f21 62%, #7b302f 100%);
    border-top: 2px solid var(--gold-accent);
    border-bottom: 2px solid var(--gold-accent);
    padding: 28px 20px;
    box-shadow: inset 0 1px 0 rgba(245, 240, 235, 0.14), inset 0 -1px 0 rgba(245, 240, 235, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    text-align: center;
    padding: 10px;
}

.trust-value {
    font-family: var(--font-header);
    color: var(--white);
    font-size: 24px;
    font-weight: var(--weight-bold);
    line-height: 1.2;
}

.trust-label {
    color: var(--text-light-inv);
    font-size: 13px;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* LOCAL SEO FOCUS */
.local-seo-focus {
    background: var(--warm-bg);
    margin-bottom: 40px;
}

.seo-focus-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.seo-focus-panel {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(45, 45, 45, 0.06);
}

.seo-focus-panel h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.seo-focus-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.seo-focus-list li {
    padding: 10px 0 10px 26px;
    border-bottom: 1px solid var(--border);
    position: relative;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.seo-focus-list li:last-child {
    border-bottom: none;
}

.seo-focus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--gold-accent);
    font-weight: var(--weight-bold);
}

.seo-focus-cta {
    text-align: center;
    margin-top: 36px;
}

/* SERVICES PAGE */
.services-page-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 3px solid var(--gold-accent);
    color: var(--white);
}

.services-page-hero h1 {
    font-size: 56px;
    margin-bottom: 16px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-page-hero p {
    font-size: 20px;
    color: var(--text-light-inv);
    margin: 0;
}

/* SERVICE DIVIDER */
.service-divider {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    padding: 100px 20px;
    text-align: center;
    border-top: 3px solid var(--gold-accent);
    border-bottom: 3px solid var(--gold-accent);
}

.divider-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.divider-content h2 {
    font-size: 44px;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider-content p {
    font-size: 18px;
    color: var(--text-light-inv);
    line-height: 1.8;
    margin-bottom: 18px;
}

.divider-content p:last-child {
    margin-bottom: 0;
}

.ppc-fees {
    background: var(--white);
    padding-top: 120px;
}

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

.fee-card {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 240, 235, 0.9) 100%);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 16px 30px rgba(25, 14, 14, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.fee-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(139, 37, 37, 0.12), 0 8px 20px rgba(212, 175, 55, 0.1);
}

.fee-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.fee-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 20px;
}

.fee-details {
    flex-grow: 1;
    margin-bottom: 24px;
}

.fee-details p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.fee-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fee-details li {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0 8px 24px;
    position: relative;
    line-height: 1.5;
}

.fee-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red-primary);
    font-weight: 700;
}

.fee-card .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 15px;
}

.fee-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.fee-value {
    color: var(--red-primary);
    font-family: var(--font-header);
    font-size: 30px;
    font-weight: var(--weight-bold);
    margin-bottom: 10px;
}

.fee-card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 15px;
}

.fee-note {
    margin-top: 24px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

/* SERVICES / PACKAGES */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 240, 235, 0.9) 100%);
    border-radius: 16px;
    padding: 44px 36px;
    border: 2px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-primary), var(--gold-accent));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(25, 14, 14, 0.18), 0 8px 20px rgba(47, 124, 133, 0.1);
    border-color: var(--red-primary);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card.featured {
    border-color: var(--red-primary);
    position: relative;
    background: linear-gradient(145deg, rgba(139, 37, 37, 0.12) 0%, rgba(252, 242, 236, 0.96) 48%, rgba(47, 124, 133, 0.12) 100%);
    box-shadow: 0 26px 58px rgba(25, 14, 14, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: var(--weight-semibold);
    white-space: nowrap;
    z-index: 2;
}

.package-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.package-price {
    font-size: 36px;
    font-weight: var(--weight-bold);
    color: var(--red-primary);
    margin-bottom: 4px;
    font-family: var(--font-header);
}

.price-setup {
    font-size: 16px;
    font-weight: var(--weight-medium);
    color: var(--text-light);
}

.package-monthly {
    font-size: 22px;
    font-weight: var(--weight-semibold);
    color: var(--text);
    margin-bottom: 8px;
    font-family: var(--font-header);
}

.package-timeline {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.packages-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    margin-top: 32px;
    margin-bottom: 0;
}

.package-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    padding-left: 24px;
    position: relative;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: var(--weight-bold);
}

.package-card .btn-primary,
.package-card .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 16px;
}

/* ADD-ON CARD */
.addon-card {
    margin-top: 48px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    position: relative;
}

.addon-label {
    display: inline-block;
    background: var(--green-accent);
    color: var(--white);
    font-family: var(--font-header);
    font-size: 13px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.addon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.addon-info {
    flex: 1;
}

.addon-info h3 {
    font-family: var(--font-header);
    font-size: 22px;
    color: var(--text);
    margin-bottom: 8px;
}

.addon-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.addon-pricing {
    text-align: center;
    flex-shrink: 0;
}

.addon-price {
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: var(--weight-bold);
    color: var(--red-primary);
    margin-bottom: 12px;
}

.addon-price span {
    font-size: 16px;
    font-weight: var(--weight-normal);
    color: var(--text-light);
}

/* HOW IT WORKS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 240, 235, 0.85) 100%);
    border: 1px solid rgba(139, 37, 37, 0.1);
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(25, 14, 14, 0.11);
}

.step-card::before {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--gold-accent), transparent);
    opacity: 0;
}

.step-card:not(:last-child)::before {
    opacity: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: var(--weight-bold);
    font-family: var(--font-header);
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(139, 37, 37, 0.2);
    position: relative;
    border: 3px solid var(--gold-accent);
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* PORTFOLIO */
.portfolio-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.portfolio-image {
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 40px;
}

.portfolio-image-inner {
    text-align: center;
}

.portfolio-image-inner .client-name {
    font-family: var(--font-header);
    font-size: 28px;
    font-weight: var(--weight-bold);
    margin-bottom: 8px;
}

.portfolio-image-inner .client-type {
    font-size: 16px;
    opacity: 0.85;
}

.portfolio-content {
    padding: 40px;
}

.portfolio-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag {
    background: var(--warm-bg);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: var(--weight-medium);
}

/* WHY CHOOSE US */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(249, 240, 235, 0.9) 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid var(--gold-accent);
    box-shadow: 0 16px 36px rgba(25, 14, 14, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: var(--red-primary);
    border-radius: 4px;
    transition: height 0.3s;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 58%;
    height: 120%;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.24) 0%, transparent 66%);
    pointer-events: none;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(139, 37, 37, 0.12);
    border-left-color: var(--red-primary);
}

.value-card:hover::after {
    height: 100%;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text);
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* PAIN POINT */
.pain-point {
    text-align: center;
    background: var(--dark-bg);
    color: var(--white);
}

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

.pain-point h2 {
    font-size: 44px;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-point p {
    font-size: 20px;
    color: var(--text-light-inv);
    line-height: 1.8;
    margin-bottom: 18px;
}

.pain-point .btn-primary {
    margin-top: 24px;
    background: var(--gold-accent);
    color: var(--dark-bg);
}

.pain-point .btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 24px rgba(47, 124, 133, 0.35);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 4px 16px rgba(47, 124, 133, 0.16);
}

.faq-item summary {
    padding: 24px;
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: var(--weight-semibold);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    transition: color 0.3s;
}

.faq-item summary:hover {
    color: var(--red-primary);
}

.faq-item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: var(--weight-bold);
    color: var(--red-primary);
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s, color 0.3s;
}

.faq-item summary:hover::after {
    color: var(--gold-accent);
}

.faq-item[open] summary {
    border-bottom: 2px solid var(--gold-accent);
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--red-primary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 0 24px 24px;
    background: rgba(245, 240, 235, 0.3);
    border-top: 2px solid var(--gold-accent);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
}

/* CTA BANNER */
.cta-banner {
    padding: 100px 20px;
    background:
        radial-gradient(circle at 14% 26%, rgba(182, 106, 77, 0.2) 0%, transparent 44%),
        radial-gradient(circle at 86% 74%, rgba(47, 124, 133, 0.18) 0%, transparent 40%),
        linear-gradient(135deg, #2a0f10 0%, #5c1f21 55%, #7e2d2f 100%);
    color: var(--white);
    text-align: center;
    border-top: 3px solid var(--gold-accent);
    border-bottom: 3px solid var(--red-primary);
    box-shadow: inset 0 1px 0 rgba(245, 240, 235, 0.15), inset 0 -1px 0 rgba(245, 240, 235, 0.08);
}

.cta-banner h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: var(--text-light-inv);
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--red-primary);
    font-size: 20px;
    padding: 18px 40px;
}

.cta-banner .btn-primary:hover {
    background: var(--warm-cream);
    color: var(--red-dark);
}

/* CONTACT PAGE */
.contact-section {
    padding: 80px 20px;
}

.contact-layout {
    max-width: 640px;
    margin: 0 auto;
}

.contact-layout h1 {
    text-align: center;
    margin-bottom: 12px;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form label {
    display: block;
    margin-bottom: 20px;
}

.contact-form .label-text {
    display: block;
    font-weight: var(--weight-semibold);
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--text);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: var(--font-body);
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.3s;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red-primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-primary {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 16px;
    margin-top: 8px;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    color: var(--text-light-inv);
    padding: 60px 20px 32px;
    border-top: 3px solid var(--gold-accent);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 60px;
}

.footer-brand h4 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 16px;
    max-width: 360px;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.footer-nav a {
    color: var(--text-light-inv);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s;
}

.footer-nav a:hover {
    color: var(--white);
}

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

.footer-bottom {
    border-top: 1px solid rgba(47, 124, 133, 0.25);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.7;
}

/* BLOG */
.blog-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 3px solid var(--gold-accent);
    color: var(--white);
}

.blog-header h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header p {
    font-size: 20px;
    color: var(--text-light-inv);
    margin: 0;
}

.blog-list {
    display: grid;
    gap: 48px;
    margin: 60px 0;
}

.blog-card {
    padding: 0;
    border: none;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}

.blog-card-image {
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px -4px rgba(50, 50, 93, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 28px -4px rgba(50, 50, 93, 0.3);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 0;
}

.blog-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card h2 a {
    color: var(--red-primary);
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.blog-date, .blog-category, .blog-read-time {
    display: inline;
}

.blog-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.read-more {
    color: var(--red-primary);
    font-weight: var(--weight-semibold);
    text-decoration: none;
    font-size: 15px;
}

.read-more:hover {
    color: var(--red-dark);
}

.blog-post {
    padding: 80px 0;
}

.blog-featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-featured-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -5px rgba(50, 50, 93, 0.35), 0 12px 24px -8px rgba(0, 0, 0, 0.4);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-inline-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin: 48px 0;
    box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
}

.blog-inline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-header {
    margin-bottom: 80px;
}

.blog-post h1 {
    font-size: 42px;
    margin-bottom: 16px;
    line-height: 1.3;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.blog-post-header .blog-meta {
    margin-bottom: 0;
}

.blog-post-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
}

.blog-post-content h2 {
    font-size: calc(1.625rem + 0.5vw);
    margin: 56px 0 28px;
    color: var(--text);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--red-primary);
    display: inline-block;
}

.blog-post-content h2:first-child {
    margin-top: 0;
}

.blog-post-content p {
    margin-bottom: 24px;
    font-size: calc(1rem + 0.1vw);
}

.blog-post-content ul {
    list-style: none;
    margin: 28px 0;
    padding: 0;
}

.blog-post-content li {
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.blog-post-content li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--red-primary);
    font-weight: var(--weight-bold);
    font-size: 18px;
}

.blog-post-content strong {
    color: var(--text);
    font-weight: var(--weight-semibold);
}

.blog-quote {
    margin: 48px 0;
    padding: 32px 40px;
    border-left: 5px solid var(--red-primary);
    background: var(--warm-bg);
    border-radius: 6px;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
    box-shadow: 0 4px 12px rgba(139, 37, 37, 0.08);
}

.blog-quote p {
    margin: 0;
}

.blog-callout {
    margin: 48px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 37, 37, 0.06) 0%, rgba(139, 37, 37, 0.02) 100%);
    border: 2px solid var(--red-primary);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(139, 37, 37, 0.1);
}

.callout-label {
    display: inline-block;
    background: var(--red-primary);
    color: var(--white);
    font-family: var(--font-header);
    font-size: 12px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.blog-callout p {
    margin-bottom: 16px;
}

.blog-callout p:last-child {
    margin-bottom: 0;
}

.blog-cta {
    margin-top: 48px;
    text-align: center;
}

.blog-cta .btn-primary {
    display: inline-block;
}

.blog-author {
    margin-top: 64px;
    margin-bottom: 60px;
    padding: 48px;
    background: linear-gradient(135deg, var(--warm-bg) 0%, rgba(245, 240, 235, 0.7) 100%);
    border-left: 5px solid var(--red-primary);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(139, 37, 37, 0.08);
}

.blog-author h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text);
    font-family: var(--font-header);
}

.blog-author p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

.author-cta {
    margin-top: 24px;
}

.author-cta .btn-secondary {
    display: inline-block;
}

.blog-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-light);
}

.blog-footer a {
    color: var(--red-primary);
    text-decoration: none;
}

.blog-footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .snapshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .seo-focus-layout {
        grid-template-columns: 1fr;
    }

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

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

@media (min-width: 1025px) {
    .hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }

    .hero h1 {
        font-size: 36px;
    }

    .services-page-hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .main-nav.active ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav.active a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .header-cta {
        display: none;
    }

    .portfolio-card {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        min-height: 200px;
    }

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

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

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

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .addon-content {
        flex-direction: column;
        text-align: center;
    }

    .addon-pricing {
        width: 100%;
    }

    .addon-pricing .btn-secondary {
        width: 100%;
    }

    .blog-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-image {
        width: 100%;
        max-width: none;
    }

    .blog-featured-image {
        height: 250px;
    }

    .blog-inline-image {
        height: 250px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 28px; }
    h2 { font-size: 24px; }

    .hero h1 {
        font-size: 30px;
    }

    .hero {
        min-height: 70vh;
    }

    .section {
        padding: 60px 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 16px;
    }
}
