/* ==========================================================================
   PRANGON REAL ESTATE - FULL INTEGRATED STYLESHEET
   Brand Theme: Deep Trust Navy (#0F2C59) & Dynamic Orange (#FF6B00)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Master Variables & Global Reset
   -------------------------------------------------------------------------- */
:root {
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #08172e;
    
    --primary-navy: #0F2C59;      /* Deep Navy Blue */
    --accent-orange: #FF6B00;     /* Dynamic Orange */
    --accent-orange-hover: #e05e00;
    
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12);
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-orange {
    color: var(--accent-orange) !important;
}

.text-white {
    color: #ffffff !important;
}

.bg-orange {
    background-color: var(--accent-orange) !important;
}

.bg-blue {
    background-color: #2563eb !important;
}

.w-full {
    width: 100%;
}

.mt-5 {
    margin-top: 40px;
}

/* AutoCAD Grid Texture Background */
.autocad-bg {
    position: relative;
    background-color: #f8fafc;
    background-image: 
        linear-gradient(rgba(15, 44, 89, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 44, 89, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.reveal.active {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   2. Sticky Navigation Header & Mobile Drawer
   -------------------------------------------------------------------------- */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.sticky-header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 2px 0;
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-navy);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(15, 44, 89, 0.2);
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.1;
}

.brand-tagline {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    text-transform: uppercase;
    display: block;
}

.nav-menu ul {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-navy);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-contact-item {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary-navy);
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(15, 44, 89, 0.15);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-contact:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: #f1f5f9;
    color: var(--primary-navy);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--accent-orange);
    color: #ffffff;
    border-color: var(--accent-orange);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 44, 89, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   3. Hero Section & Counter Strip
   -------------------------------------------------------------------------- */
.hero-section {
    padding: 140px 0 70px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary-navy);
    margin-bottom: 18px;
}

.highlight-text {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent-orange);
    color: #ffffff;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.25);
    border: none;
    cursor: pointer;
}

.btn-orange:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
}

.btn-outline-navy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #ffffff;
    border: 1px solid var(--primary-navy);
    color: var(--primary-navy);
    font-weight: 700;
    border-radius: 10px;
}

.btn-outline-navy:hover {
    background: var(--primary-navy);
    color: #ffffff;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-img-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.hero-floating-card i {
    font-size: 26px;
}

.hero-floating-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-navy);
}

.hero-floating-card p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Counter Strip */
.counter-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 24px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    margin-top: 60px;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-item i {
    font-size: 32px;
    color: var(--accent-orange);
}

.counter-data h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.counter-data p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.counter-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* --------------------------------------------------------------------------
   4. Master Project Section & Cards
   -------------------------------------------------------------------------- */
.projects-section {
    padding: 90px 0;
}

.section-header {
    margin-bottom: 45px;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 6px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-navy);
}

.section-description {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 8px auto 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.master-project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.master-project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

.card-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.master-project-card:hover .card-thumb img {
    transform: scale(1.05);
}

.thumb-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge-audit {
    background: rgba(15, 44, 89, 0.9);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.badge-status {
    background: #10b981;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.thumb-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--accent-orange);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
}

.card-details {
    padding: 22px;
}

.card-dev-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.card-title a {
    color: var(--primary-navy);
}

.card-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.specs-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: #f8fafc;
    padding: 12px;
    border-radius: 10px;
    border: 1px dashed var(--border-color);
    margin-bottom: 16px;
}

.spec-box {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-navy);
}

.spec-box i {
    color: var(--accent-orange);
    font-size: 14px;
}

.audit-pass-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-navy);
    background: #eff6ff;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 18px;
}

.card-footer-buttons {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
}

.btn-card-call {
    padding: 10px;
    border: 1px solid var(--border-color);
    color: var(--primary-navy);
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.btn-card-details {
    padding: 10px;
    background: var(--primary-navy);
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.btn-view-all-projects {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-navy);
    color: #ffffff;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.btn-view-all-projects:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. Engineering Audit Standards Section
   -------------------------------------------------------------------------- */
.audit-standards-section {
    padding: 90px 0;
}

.audit-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.audit-step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 32px 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.audit-step-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    font-weight: 800;
    color: #e2e8f0;
}

.step-icon {
    width: 54px;
    height: 54px;
    background: #fff7ed;
    color: var(--accent-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.audit-step-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.audit-step-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. Home Loan / EMI Calculator Section
   -------------------------------------------------------------------------- */
.calculator-section {
    padding: 90px 0;
}

.calc-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 44px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.calc-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.calc-info p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.calc-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.calc-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.calc-result {
    margin-top: 20px;
    background: var(--primary-navy);
    color: #ffffff;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
}

.calc-result span {
    font-size: 12px;
    color: var(--text-light);
}

.calc-result h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   7. YouTube Showcase Section
   -------------------------------------------------------------------------- */
.youtube-section {
    padding: 90px 0;
}

.youtube-showcase-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
}

.main-video-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.video-thumbnail-wrapper {
    position: relative;
    height: 320px;
}

.video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-live-audit {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 44, 89, 0.9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.play-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--accent-orange);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.video-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.main-video-details {
    padding: 24px;
}

.video-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 6px;
    display: block;
}

.main-video-details h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.main-video-details p {
    font-size: 13px;
    color: var(--text-muted);
}

.youtube-sidebar-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel-brand-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 18px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yt-icon-circle {
    width: 44px;
    height: 44px;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.brand-left h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-navy);
}

.brand-left p {
    font-size: 11px;
    color: var(--text-muted);
}

.btn-yt-subscribe {
    background: #ef4444;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.recent-videos-list {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
}

.widget-list-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 14px;
}

.video-list-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.video-list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-thumb {
    position: relative;
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    background: rgba(0,0,0,0.5);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-info h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 4px;
}

.item-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   8. Contact Section & Footer
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 90px 0;
}

.contact-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 44px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-item i {
    width: 44px;
    height: 44px;
    background: #fff7ed;
    color: var(--accent-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-item span {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.info-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-navy);
}

.footer {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 70px 0 30px;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-desc {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 14px;
    max-width: 340px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-light);
    font-size: 13px;
}

.footer-links ul li a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

/* --------------------------------------------------------------------------
   9. Responsive Breakdown (Media Queries)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }

    .desktop-only-btn {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        padding: 90px 24px 40px;
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
    }

    .mobile-contact-item {
        display: block;
        margin-top: 10px;
        width: 100%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 34px;
    }

    .counter-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: center;
    }

    .counter-item {
        flex-direction: column;
    }

    .counter-divider {
        display: none;
    }

    .calc-wrapper, .contact-wrapper, .youtube-showcase-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .counter-strip {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .card-footer-buttons {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .calc-wrapper, .contact-wrapper {
        padding: 24px 16px;
    }
}