/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

/* ========================================
   CSS VARIABLES - COLOR PALETTE
   ======================================== */

:root {
    /* Primary Colors */
    --color-primary: #7A1515;
    --color-secondary: #A01D1D;
    --color-accent: #C92A2A;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-dark: #0A0A0A;
    --color-gray-darker: #1A1A1A;
    --color-gray-medium: #B0B0B0;
    --color-gray-light: #E5E5E5;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7A1515 0%, #A01D1D 100%);
    --gradient-secondary: linear-gradient(135deg, #5A0F0F 0%, #7A1515 100%);

    /* Typography */
    --font-primary: 'Courier New', Courier, monospace;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-gray-medium);
    background-color: var(--color-black);
    overflow-x: hidden;
    font-weight: 300;
}

body * {
    transform-origin: center;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray-medium);
}

/* Override paragraph size inside content sections */
.section p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #e6e6e6;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition-normal);
}
/* Override heading sizes inside content sections */
.section h2 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section h3 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section:nth-child(even) {
    background-color: var(--color-gray-dark);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-gray-medium);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(122, 21, 21, 0.2);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-white);
    font-weight: 300;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A1A1A;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--spacing-lg) var(--spacing-md);
}

.hero-title {
    font-size: 7.5rem;          /* bigger */
    line-height: 1.15;          /* taller */
    letter-spacing: 1px;        /* optional: adds presence */
    background: linear-gradient(135deg, #C92A2A 0%, #7A1515 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    text-shadow: none;
}

/* Put the media query RIGHT AFTER the main rule */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

.hero-subtitle {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #A01D1D 0%, #7A1515 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;      /* slightly larger button */
    background: var(--gradient-primary);
    color: var(--color-white);
    font-weight: 400;
    font-size: 1.5rem;          /* bigger text */
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(122, 21, 21, 0.5);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(122, 21, 21, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(122, 21, 21, 0.5);
    }
    50% {
        box-shadow: 0 8px 32px rgba(122, 21, 21, 0.8);
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background-color: var(--color-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: var(--color-gray-darker);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(122, 21, 21, 0.3);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 32px rgba(122, 21, 21, 0.4);
    border-color: var(--color-primary);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--color-white);
}

.service-title {
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.service-description {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 400;
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.service-link:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background-color: var(--color-gray-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text {
    padding-right: var(--spacing-md);
}

.about-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-gray-darker);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(122, 21, 21, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 400;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    color: var(--color-gray-medium);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.image-placeholder svg {
    width: 150px;
    height: 150px;
    color: var(--color-white);
    opacity: 0.5;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
    background-color: var(--color-black);
}

.timeline {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-number {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-number {
    grid-column: 2;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--color-gray-darker);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(122, 21, 21, 0.3);
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(122, 21, 21, 0.4);
    transform: scale(1.02);
}

.timeline-title {
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.timeline-description {
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background-color: var(--color-gray-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-form {
    background: var(--color-gray-darker);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(122, 21, 21, 0.3);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 400;
    color: var(--color-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(122, 21, 21, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
    background-color: var(--color-black);
    color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.125rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 8px 32px rgba(122, 21, 21, 0.5);
    animation: pulse 2s infinite;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(122, 21, 21, 0.7);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    display: block;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    background: var(--color-gray-darker);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(122, 21, 21, 0.3);
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 25px;
    height: 25px;
    color: var(--color-white);
}

.contact-item h4 {
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.contact-item p {
    margin: 0;
    color: var(--color-gray-medium);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-md);
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--gradient-secondary);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--color-black);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-white);
    font-weight: 400;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-copyright {
    color: var(--color-gray-medium);
    font-size: 0.875rem;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.4);
}
/* =========================
   Logo Splash + Navbar Drop-in
   ========================= */

.logo-splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: -1;        /* <-- puts logo BEHIND the site */
  pointer-events: none;
}
/* 3× bigger splash logo */
.logo-splash__img {
    max-height: 180vmin;   /* 2× bigger */
    width: auto;
    object-fit: contain;
    display: block;
    transform: translateY(0);
    transition: transform 0.2s linear;
}
/* fade out when hidden */
.logo-splash.hidden {
  opacity: 0;
  pointer-events: none;
}

/* navbar starts hidden above viewport */
.navbar {
  transform: translateY(-100%);
  transition: transform 1.00s cubic-bezier(.2,.9,.2,1);
  z-index: 1000;
}

/* navbar slides down on scroll */
.navbar.drop-in {
  transform: translateY(0);
}

/* hero starts lower so splash logo is visible behind it */
.hero-section {
  transform: translateY(30vh);
  transition: transform 0.6s cubic-bezier(.2,.9,.2,1);
}

/* hero moves up once splash is gone */
.hero-section.curtain {
  transform: translateY(0);
}

/* mobile tweaks */
@media (max-width: 480px) {
}

.hero-section {
  margin-top: 100vh;
}

.logo-splash__img {
  max-height: 100vmin !important;
  width: auto;
}
header, .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
/* Home hero adjustments */
.hero-section { padding: 80px 0 40px; }
.hero-title { font-size: 2.6rem; line-height:1.05; margin-bottom: 0.6rem; }
.hero-subtitle { font-size: 1.05rem; color:#222; max-width:900px; margin:0 auto 1.6rem; }

/* Big red CTA boxes */
.hero-cta-row {
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 1.6rem;
}
.cta-red-box {
    display: inline-block;
    padding: 1.5rem 3.5rem;     /* bigger button */
    font-size: 2rem;            /* bigger text */
    font-weight: 600;           /* stronger presence */
    background: #C92A2A;        /* your red */
    color: #000000;
    border-radius: 20px;        /* curved box */
    text-align: center;
    transition: 0.3s ease;
}

.cta-red-box:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(200,16,46,0.22); }

/* Remove trust banner if present */
.trust-banner, .trust-item { display:none !important; }

/* Remove right-side contact bars under form
   Adjust selectors if your contact bars use different classes */
.right-contact-bar, .contact-side, .contact-info-panel { display:none !important; }

/* Social icons larger and add spacing */
.social-links a { display:inline-block; margin-right:12px; width:48px; height:48px; line-height:48px; text-align:center; border-radius:8px; background:#111; color:#fff; font-size:20px; }
.social-links a.youtube { background:#FF0000; }
.social-links a.facebook { background:#1877F2; }
.social-links a.instagram { background: linear-gradient(45deg,#feda75,#d62976,#962fbf); }
.social-links a.linkedin { background:#0A66C2; }

}

/* Force consistent section headings */
.section .section-title,
.section h2 {
  font-size: 4rem !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  margin-bottom: 1.5rem !important;
  color: var(--color-white) !important;
}

.section h3 {
  font-size: 2.8rem !important;
  line-height: 1.3 !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
}

/* Force consistent section h4 headings */
.section h4,
.section .section-title,
.services-section h4,
.about-section h4 {
  font-size: 2.4rem !important;
  line-height: 1.25 !important;
  font-weight: 400 !important;
  margin-top: 0.5rem !important;
  margin-bottom: 1rem !important;
  color: var(--color-white) !important;
}

/* Normalize section headings so none look "tabbed out" */
.section h2,
.section h3,
.section h4,
.section .section-title {
  display: block;
  margin: 0 0 1.25rem 0;
  padding: 0;
  text-align: left;
  font-weight: 400;
  color: var(--color-white);
}

/* Force zero left offset if a parent is adding padding/margin */
.section h2,
.section h3,
.section h4 {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* If some headings are centered and you want them centered site-wide in sections */
.section .centered-heading,
.section .section-title {
  text-align: center;
}

/* Mobile tweak so they don't feel off on small screens */
@media (max-width: 768px) {
  .section h2,
  .section h3,
  .section h4 {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem) !important;
    margin-bottom: 1rem !important;
  }
}

.section hr {
    margin: 36px 0;
    border: none;
    border-top: 1px solid #eee;
    padding: 0;
    display: block;
}

.section hr + h4 {
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: block;
}

/* HARD RESET: remove all left indentation from section headings */
.section h1,
.section h2,
.section h3,
.section h4,
.section .section-title {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-indent: 0 !important;
  transform-origin: center !important;
}

/* Optional: remove container padding ONLY for this section */
#tadashi-offer .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* FINAL — Clean, unified heading rules for Tadashi Offer section */
#tadashi-offer h2,
#tadashi-offer h3,
#tadashi-offer h4 {
    font-size: 3.5rem !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
    margin: 0 0 1.25rem 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
    text-align: left !important;
}

/* Boost the hero headline size */
.hero-title {
    font-size: 7rem !important;
    line-height: 1.1 !important;
    letter-spacing: 2px !important;
}

.hero-content {
    margin-top: 0 !important;
}

/* Make the feature list text bigger and more readable */
#tadashi-offer .feature-list li {
    font-size: 1.8rem !important;
    line-height: 1.9 !important;
    color: #e6e6e6 !important;
    margin-bottom: 1.2rem !important;
}

/* Make the TADASHI Cure blockquote text bigger */
#tadashi-offer blockquote {
    font-size: 1.9rem !important;
    line-height: 2 !important;
    color: #ffffff !important;
    padding: 1.5rem 0 !important;
}

/* Make feature list text a dark red for readability */
#tadashi-offer .feature-list li {
    color: #8B1A1A !important;
}

/* Make the TADASHI Cure blockquote text dark red too */
#tadashi-offer blockquote {
    color: #8B1A1A !important;
}

/* RESPONSIVE FIX — shrink hero headline on smaller screens */
@media (max-width: 900px) {
  .hero-title {
    font-size: 3.5rem !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 1300px) {
  .hero-title {
    font-size: 5rem !important;
    line-height: 1.1 !important;
  }
}

/* Remove the right-side contact info boxes */
.contact-info {
    display: none !important;
}

/* Strategic list styling (replaces right-side contact boxes) */
.strategic-list {
    display: block !important;
    padding: 1.8rem;
    background: var(--color-gray-darker);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    border: 1px solid rgba(122,21,21,0.3);
}

.strategic-header {
    font-size: 2.8rem;
    line-height: 1.25;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.strategic-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategic-points li {
    font-size: 1.45rem;
    line-height: 1.85;
    color: #8B1A1A; /* dark red for readability */
    margin-bottom: 1.2rem;
}

.strategic-points li strong {
    color: var(--color-white);
}

/* Container styling */
.strategic-list {
    padding: 2rem;
    background: var(--color-gray-darker);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(122,21,21,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

/* Top header */
.strategic-header {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--color-white);
}

/* Each section block */
.strategic-section {
    margin-bottom: 2.5rem;
}

/* Section titles */
.group-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    color: var(--color-white);
}

/* Bullet list */
.strategic-points {
    list-style: disc;
    padding-left: 2rem;
    margin: 0;
}

.strategic-points li {
    font-size: 1.45rem;
    line-height: 1.85;
    color: #8B1A1A;
    margin-bottom: 0.6rem;
}

/* Prevent the form from stretching to match the right column */
.contact-content {
    align-items: flex-start !important;
}
/* NEW FORMS — FULLY ISOLATED */
#contact-forms .contact-form-simple {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
}

#contact-forms .contact-form-simple label {
  font-weight: 600;
  margin-bottom: 4px;
}

#contact-forms .contact-form-simple input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

#contact-forms .contact-form-simple input:focus {
  border-color: #ff3b3b;
  outline: none;
  box-shadow: 0 0 4px rgba(255, 59, 59, 0.4);
}
/* ========================================
   MATCH BUYER/SELLER FORMS TO ORIGINAL FORM
   ======================================== */

#contact-forms .contact-form-simple {
    background: var(--color-gray-darker);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(122, 21, 21, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

/* Labels identical */
#contact-forms .contact-form-simple label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 400;
    color: var(--color-white);
}

/* Inputs identical */
#contact-forms .contact-form-simple input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(122, 21, 21, 0.3);
    border-radius: var(--radius-sm);
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

/* Focus identical */
#contact-forms .contact-form-simple input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

/* Button identical */
#contact-forms .contact-form-simple button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.125rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 8px 32px rgba(122, 21, 21, 0.5);
    animation: pulse 2s infinite;
}

/* Hover identical */
#contact-forms .contact-form-simple button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(122, 21, 21, 0.7);
}

/* Active identical */
#contact-forms .contact-form-simple button:active {
    transform: translateY(0);
}

/* ========================================
   CAL.COM SCHEDULING SECTION
   ======================================== */

.scheduling-section {
    background-color: var(--color-gray-darker);
    padding: var(--spacing-xl) 0;
}

.scheduling-section .section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
}

.scheduling-section .section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--color-gray-medium);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cal-embed-container {
    background: var(--color-black);
    border: 2px solid rgba(122, 21, 21, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    min-height: 600px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for Cal.com embed */
@media (max-width: 768px) {
    .scheduling-section .section-title {
        font-size: 2.5rem;
    }

    .cal-embed-container {
        min-height: 500px;
        padding: var(--spacing-sm);
    }
}