/* =========================================
   0. DYNAMIC THEME VARIABLES
   ========================================= */
:root {
    --lh-green: #27632A;
    --lh-green-hover: #1E4D20;
    --lh-orange: #E67E22;
    --lh-orange-hover: #D35400;
    --lh-blue: #1565C0;
    --navy: #0A1128;

    --bg-main: #F4F7F6;
    --bg-card: #FFFFFF;
    --bg-section: #EAEFEF;
    --bg-nav: rgba(255, 255, 255, 0.98);
    --bg-input: #F8FAFC;

    --text-main: #0F172A;
    --text-muted: #475569;
    --text-input: #0F172A;

    --border-soft: rgba(39, 99, 42, 0.1);
    --border-glow: rgba(230, 126, 34, 0.3);
    --icon-bg: rgba(39, 99, 42, 0.08);

    --shadow-accent: 0 10px 30px rgba(230, 126, 34, 0.15);
    --shadow-card: 0 20px 40px rgba(15, 23, 42, 0.06);

    --transition: all 0.3s ease;

    /* "Precision Cut" Asymmetrical Corners */
    --radius-sharp: 0px;
    --radius-curve: 32px;
}

body.dark-theme {
    --bg-main: #0B0F14;
    --bg-card: #131A22;
    --bg-section: #0F151C;
    --bg-nav: rgba(11, 15, 20, 0.98);
    --bg-input: #0B0F14;

    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-input: #F8FAFC;

    --border-soft: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(230, 126, 34, 0.3);
    --icon-bg: rgba(39, 99, 42, 0.2);

    --shadow-accent: 0 10px 30px rgba(230, 126, 34, 0.15);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* =========================================
   1. RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    transition: var(--transition);
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    transition: var(--transition);
    line-height: 1.2;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

strong {
    color: var(--text-main);
    font-weight: 700;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Utility Classes */
.text-gold {
    color: var(--lh-orange);
}

.text-white {
    color: #FFFFFF;
}

.bg-dark {
    background-color: #131A22;
    color: #FFFFFF;
}

.bg-darker {
    background-color: #0B0F14;
    color: #FFFFFF;
}

.bg-navy {
    background-color: var(--navy);
    color: #FFFFFF;
}

.bg-light {
    background-color: #F8FAFC;
}

.center {
    text-align: center;
}

/* =========================================
   2. BUTTONS
   ========================================= */
.btn-primary {
    background: var(--lh-orange) !important;
    color: #FFFFFF !important;
    padding: 14px 35px;
    border-radius: var(--radius-sharp) var(--radius-curve) var(--radius-sharp) var(--radius-curve);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--lh-orange-hover);
    box-shadow: var(--shadow-accent);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    padding: 14px 35px;
    border-radius: var(--radius-sharp) var(--radius-curve) var(--radius-sharp) var(--radius-curve);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: var(--lh-green);
}

/* =========================================
   3. NAVIGATION & HEADER
   ========================================= */
.utility-strip {
    background-color: var(--lh-green);
    color: #FFFFFF;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.utility-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.utility-info span {
    margin-right: 25px;
}

.utility-info span i {
    margin-right: 8px;
    color: var(--lh-orange);
}

.utility-contact a {
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition);
}

.utility-contact a:hover {
    color: var(--lh-orange);
}

/* Update these specific blocks in your style.css */

.nav-header {
    background-color: var(--bg-nav);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Only transition colors and shadows here, not height */
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 1px solid var(--border-soft);
}

.nav-header.scrolled {
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-card);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Lock the initial height */
    min-height: 100px;
    /* Smoothly animate the container shrinking */
    transition: min-height 0.4s ease;
}

.nav-header.scrolled .nav-wrapper {
    /* Target shrunk height */
    min-height: 70px;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo img {
    width: 160px;
    object-fit: contain;
    /* Animate both width and height smoothly */
    transition: width 0.4s ease, max-height 0.4s ease;
}

.nav-header.scrolled .brand-logo img {
    width: 100px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--lh-green);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lh-blue);
    font-weight: 700;
    margin-top: 4px;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links>a,
.dropbtn {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
}

.nav-links>a:hover,
.dropbtn:hover {
    color: var(--lh-orange);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    text-align: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-card);
    min-width: 220px;
    box-shadow: var(--shadow-card);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid var(--border-soft);
    transition: var(--transition);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-section);
    color: var(--lh-orange);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--lh-orange);
}

#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-main);
    transition: var(--transition);
    border-radius: 2px;
}

/* =========================================
   4. HOME PAGE HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('../images/hero.jpeg') center/cover;
    border-bottom: 5px solid var(--lh-orange);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.3) 60%, rgba(15, 23, 42, 0.2) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-text {
    padding: 5% 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    background: var(--lh-green);
    padding: 8px 20px;
    border-radius: var(--radius-curve) var(--radius-sharp) var(--radius-curve) var(--radius-sharp);
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.hero-title span {
    color: var(--lh-orange);
}

.hero-desc {
    font-size: 1.2rem;
    color: #E2E8F0;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.8;
}

/* Conversion Widget */
.quote-widget {
    background: var(--bg-card);
    padding: 20px 15px;
    border-radius: var(--radius-curve) var(--radius-sharp) var(--radius-curve) var(--radius-sharp);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
}

.quote-widget h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 900;
}

.quote-widget p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-input);
    color: var(--text-input);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--lh-green);
    box-shadow: 0 0 0 3px rgba(39, 99, 42, 0.1);
}

.widget-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* =========================================
   5. INTERNAL PAGE HERO
   ========================================= */
.internal-hero {
    padding: 120px 0 80px;
    background-color: var(--lh-green);
    /* Fallback */
    background-blend-mode: multiply;
    text-align: center;
    border-bottom: 5px solid var(--lh-orange);
    position: relative;
}

.internal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* A rich, dark overlay that lets the background image do the talking */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}

.internal-hero .container {
    position: relative;
    z-index: 2;
}

.internal-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: #FFFFFF;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.internal-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.hero-badge {
    display: inline-block;
    background: var(--lh-orange);
    color: #FFF;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-accent);
}

/* =========================================
   6. SILO LAYOUTS & CARDS
   ========================================= */
.services-section {
    padding: 120px 0;
    background: var(--bg-main);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header span {
    color: var(--lh-orange);
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.service-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: var(--radius-sharp) var(--radius-curve) var(--radius-sharp) var(--radius-curve);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-soft);
    border-top: 5px solid var(--lh-green);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.offset {
    margin-top: 60px;
    border-top-color: var(--lh-orange);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--lh-green);
}

.service-card.offset .service-icon i {
    color: var(--lh-orange);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
    border-top: 1px dashed var(--border-soft);
    padding-top: 20px;
}

.service-list li {
    color: var(--text-main);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

.service-list li i {
    color: var(--lh-green);
    font-size: 0.9rem;
    margin-top: 5px;
}

.service-card.offset .service-list li i {
    color: var(--lh-orange);
}

.service-link {
    color: var(--text-main);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: auto;
}

.service-link:hover {
    gap: 15px;
    color: var(--lh-orange);
}

/* Internal Page Article Grid */
.page-section {
    padding: 100px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.text-block h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-top: 40px;
}

.text-block h2:first-child {
    margin-top: 0;
}

.text-block h2 span {
    color: var(--lh-orange);
}

.text-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--lh-green);
}

.text-block ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.text-block ul li {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
    list-style-type: none;
    position: relative;
}

.text-block ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -25px;
    top: 2px;
    color: var(--lh-orange);
}

.highlight-box {
    background: var(--bg-card);
    border-left: 4px solid var(--lh-orange);
    padding: 30px;
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow-card);
    margin: 40px 0;
}

.highlight-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.highlight-box p {
    margin: 0;
    font-size: 1.05rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-image img {
    width: 100%;
    border-radius: var(--radius-curve) var(--radius-sharp) var(--radius-curve) var(--radius-sharp);
    box-shadow: var(--shadow-card);
    margin-top: 40px;
}

/* =========================================
   7. PROCESS CARDS
   ========================================= */
.process-section {
    background: var(--bg-section);
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-soft);
}

.process-step {
    position: absolute;
    top: -25px;
    left: 40px;
    background: var(--lh-orange);
    color: #FFF;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: var(--shadow-accent);
}

.process-card h4 {
    font-size: 1.4rem;
    margin: 15px 0;
    font-weight: 800;
}

.process-card p {
    margin: 0;
    font-size: 1rem;
}

/* =========================================
   8. ABOUT / AUTHORITY SECTION
   ========================================= */
.about-section {
    padding: 120px 0;
    background: var(--bg-section);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-images {
    position: relative;
}

.about-images img {
    width: 100%;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-curve) var(--radius-sharp) var(--radius-curve) var(--radius-sharp);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--lh-orange);
    color: #FFFFFF;
    padding: 40px;
    border-radius: var(--radius-sharp) var(--radius-curve) var(--radius-sharp) var(--radius-curve);
    text-align: center;
    box-shadow: var(--shadow-accent);
}

.about-badge h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin: 0;
}

.about-badge p {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0 0 0;
}

/* =========================================
   9. REVIEWS SECTION
   ========================================= */
.reviews-section {
    padding: 120px 0;
    background: var(--bg-main);
    transition: var(--transition);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.review-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--lh-green);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--icon-bg);
}

.stars {
    color: var(--lh-orange);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--text-main);
    font-size: 1.1rem;
}

.author span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--lh-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* =========================================
   10. FOOTER
   ========================================= */
.footer {
    background: #0B0F14;
    padding: 80px 0 40px;
    color: #FFFFFF;
    border-top: 4px solid var(--lh-green);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.footer-logo-wrapper {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: #FFFFFF;
    padding: 5px 10px;
    border-radius: 12px;
    transition: var(--transition);
}

.footer-logo-wrapper:hover {
    box-shadow: var(--shadow-accent);
}

.footer-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    color: #94A3B8;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-weight: 500;
}

.footer-col ul li i {
    color: var(--lh-green);
    margin-top: 5px;
}

.footer-col ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--lh-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748B;
    font-size: 0.95rem;
    font-weight: 500;
}

.agency-credit {
    color: #94A3B8;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.agency-credit:hover {
    color: var(--lh-orange);
}

/* =========================================
   11. ANIMATIONS & RESPONSIVE
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.active-reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (max-width: 1024px) {
    .nav-header.scrolled .nav-wrapper {
        /* Target shrunk height */
        min-height: 100px;
    }

    .nav-header.scrolled .brand-logo img {
        width: 150px;
        height: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding-top: 80px;
        height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card.offset {
        margin-top: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .utility-strip {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-nav);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
        transition: var(--transition);
        border-top: 1px solid var(--border-soft);
        padding: 40px 5%;
        overflow-y: auto;
    }

    .nav-links>a,
    .dropbtn {
        font-size: 1.4rem;
        font-weight: 800;
    }

    .internal-hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 20px;
        display: block;
        margin-top: 10px;
    }

    .dropdown-content a {
        font-size: 1.1rem;
        border-bottom: none;
        padding: 10px 0;
        color: var(--text-muted);
    }

    .quote-widget {
        margin-bottom: 20px;
    }

    #menu-toggle:checked~.nav-links {
        right: 0;
    }

    #menu-toggle:checked~.hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #menu-toggle:checked~.hamburger span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked~.hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .about-badge {
        right: 0px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}