* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #0B1726;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #E5ECF5;
    min-height: 100vh;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

button {
    font-family: inherit;
}

.page-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 24px 64px 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    backdrop-filter: blur(18px);
    background: rgba(11, 23, 38, 0.92);
    border-bottom: 1px solid rgba(191, 185, 180, 0.24);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    gap: 24px;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar:hover {
    background: rgba(11, 23, 38, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(191, 185, 180, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(11, 60, 120, 0.9);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-primary {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.logo-secondary {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #BFB9B4;
}

.navbar-links-desktop {
    display: flex;
    gap: 24px;
    align-items: center;
}

.navbar-links-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 12px 32px 16px 32px;
    background: rgba(11, 23, 38, 0.98);
    border-top: 1px solid rgba(191, 185, 180, 0.24);
}

.navbar-links-mobile.active {
    display: flex;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(191, 185, 180, 0.5);
    background: rgba(11, 23, 38, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0;
}

.menu-line {
    width: 18px;
    height: 2px;
    background: #E5ECF5;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active .menu-line:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active .menu-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.nav-link {
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E5ECF5;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: #FFB74D;
    border-color: #FFB74D;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #FFB74D;
    border-color: #FFB74D;
}

.nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 183, 77, 0.5);
    border-radius: 2px;
}

.hero {
    min-height: 80vh;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 40px 0 32px 0;
    position: relative;
    color: #E5ECF5;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-right {
    position: relative;
    min-height: 320px;
}

.hero-heading {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
    border-left: 3px solid #FFB74D;
    padding-left: 16px;
}

.hero-subheading {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 580px;
    color: #E5ECF5;
    margin: 0;
    opacity: 0.9;
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
    margin-top: 8px;
}

.hero-meta-tag {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(191, 185, 180, 0.45);
    background: rgba(11, 23, 38, 0.75);
    color: #E5ECF5;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-meta-tag:hover {
    background: rgba(29, 79, 145, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary {
    padding: 12px 26px;
    min-height: 44px;
    background: #FFB74D;
    color: #0B1726;
    border: 1px solid #FFB74D;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #FFC76E;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
    transform: translateY(-2px);
}

.btn-primary:active {
    background: #F9A825;
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 183, 77, 0.7), 0 10px 24px rgba(0, 0, 0, 0.45);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    padding: 11px 24px;
    min-height: 42px;
    background: transparent;
    color: #E5ECF5;
    border: 1px solid rgba(229, 236, 245, 0.5);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(11, 60, 120, 0.9);
    border-color: #FFB74D;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}

.btn-secondary:active {
    background: rgba(11, 60, 120, 1);
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.btn-secondary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 183, 77, 0.6);
}

.btn-secondary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.hero-project-panel {
    position: relative;
    border-radius: 24px;
    background: rgba(11, 23, 38, 0.9);
    border: 1px solid rgba(191, 185, 180, 0.35);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.hero-project-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    background: #0B1726;
}

.hero-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

.hero-project-panel:hover .hero-project-image {
    transform: scale(1.06);
}

.hero-project-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 23, 38, 0.95) 0%, rgba(11, 23, 38, 0.4) 55%, rgba(11, 23, 38, 0) 100%);
}

.sliding-schematic-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.16) 0, transparent 55%),
        linear-gradient(120deg, rgba(191, 185, 180, 0.4) 1px, transparent 1px),
        linear-gradient(210deg, rgba(191, 185, 180, 0.25) 1px, transparent 1px);
    background-size: 240px 240px, 32px 32px, 48px 48px;
    mix-blend-mode: screen;
    opacity: 0;
    transform: translateX(12%);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.sliding-schematic-overlay.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-project-caption {
    padding: 16px 18px 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hero-project-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    color: #FFFFFF;
}

.hero-project-text {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

.schematic-toggle-pill {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 183, 77, 0.7);
    background: rgba(11, 23, 38, 0.9);
    color: #FFB74D;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.schematic-toggle-pill:hover {
    background: rgba(255, 183, 77, 0.1);
    transform: translateY(-1px);
}

.schematic-toggle-pill.active {
    background: #FFB74D;
    color: #0B1726;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
}

.building-stack-container {
    position: absolute;
    inset: 0;
    perspective: 1200px;
    pointer-events: none;
    overflow: visible;
}

.building-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 140px;
    margin: -70px 0 0 -110px;
    border-radius: 16px;
    background: rgba(11, 60, 120, 0.85);
    border: 1px solid rgba(191, 185, 180, 0.5);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
    transform-style: preserve-3d;
    transform: rotateY(-18deg) rotateX(18deg) translateZ(0);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.building-layer-primary {
    z-index: 2;
}

.building-layer-secondary {
    z-index: 1;
    transform: rotateY(-22deg) rotateX(20deg) translateZ(-40px) translateY(26px) translateX(-40px);
    opacity: 0.7;
}

.building-layer-tertiary {
    z-index: 0;
    transform: rotateY(-26deg) rotateX(22deg) translateZ(-80px) translateY(52px) translateX(-80px);
    opacity: 0.5;
}

.building-facade-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(223, 223, 221, 0.4) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(223, 223, 221, 0.25) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.9;
    mix-blend-mode: screen;
}

.parallax-layer {
    position: absolute;
    inset: -10%;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.18;
    transition: transform 0.4s ease-out;
}

.parallax-layer-orbit {
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(255, 183, 77, 0.3) 0, transparent 60%);
}

.section-wrapper {
    padding: 16px 0 8px 0;
    border-top: 1px solid rgba(191, 185, 180, 0.25);
    position: relative;
    scroll-margin-top: 80px;
}

.section-heading {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-heading::before {
    content: "";
    width: 32px;
    height: 1px;
    background: rgba(255, 183, 77, 0.8);
}

.section-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(191, 185, 180, 0.25);
}

.section-subheading {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    color: #E5ECF5;
    max-width: 640px;
    margin: 0 0 24px 0;
    opacity: 0.9;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: flex-start;
}

.about-text-block {
    padding: 24px 24px 20px 24px;
    border-radius: 16px;
    background: rgba(11, 23, 38, 0.9);
    border: 1px solid rgba(191, 185, 180, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    color: #E5ECF5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: blur(18px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-text-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 183, 77, 0.6);
}

.about-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 4px 0;
}

.about-highlight-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.about-stat-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(191, 185, 180, 0.35);
    background: rgba(11, 60, 120, 0.4);
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 183, 77, 0.7);
}

.about-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #BFB9B4;
}

.about-stat-value {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
}

.about-stat-meta {
    font-size: 12px;
    opacity: 0.9;
}

.about-projects-panel {
    display: flex;
}

.about-projects-card {
    padding: 24px 24px 20px 24px;
    border-radius: 16px;
    background: rgba(11, 23, 38, 0.9);
    border: 1px solid rgba(191, 185, 180, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    width: 100%;
}

.about-projects-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.about-projects-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.project-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #FFB74D;
    margin-right: 8px;
}

.about-projects-list li span:first-child {
    display: inline-flex;
    align-items: center;
}

.project-status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #BFB9B4;
}

.project-status.upcoming {
    color: #FFB74D;
}

.about-note {
    font-size: 13px;
    margin-top: 8px;
    opacity: 0.9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 24px;
    align-items: stretch;
    margin-top: 8px;
}

.project-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    background: rgba(11, 23, 38, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(191, 185, 180, 0.32);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 183, 77, 0.7);
}

.project-card:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 183, 77, 0.7), 0 20px 50px rgba(0, 0, 0, 0.8);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    background: #0B1726;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.project-card:hover .project-image {
    transform: scale(1.04);
}

.project-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 23, 38, 0.9) 0%, rgba(11, 23, 38, 0.2) 55%, rgba(11, 23, 38, 0) 100%);
}

.project-schematic-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.16) 0, transparent 55%),
        linear-gradient(120deg, rgba(191, 185, 180, 0.4) 1px, transparent 1px),
        linear-gradient(210deg, rgba(191, 185, 180, 0.25) 1px, transparent 1px);
    background-size: 240px 240px, 32px 32px, 48px 48px;
    mix-blend-mode: screen;
    opacity: 0;
    transform: translateX(12%);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-schematic-overlay.active {
    opacity: 1;
    transform: translateX(0);
}

.project-content {
    position: relative;
    padding: 16px 18px 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
}

.project-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-description {
    font-size: 13px;
    line-height: 1.6;
    color: #E5ECF5;
    margin: 0;
    opacity: 0.9;
}

.project-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    font-size: 11px;
    color: #BFB9B4;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.text-link {
    color: #FFB74D;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: rgba(255, 183, 77, 0.7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.text-link:hover {
    color: #FFC76E;
    transform: translateY(-1px);
}

.text-link:hover::after {
    transform: scaleX(1);
}

.text-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 183, 77, 0.7);
}

.contact-card {
    padding: 24px 24px 20px 24px;
    border-radius: 16px;
    background: rgba(11, 23, 38, 0.95);
    border: 1px solid rgba(191, 185, 180, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: flex-start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #E5ECF5;
}

.contact-social-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-icon-button {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(191, 185, 180, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #E5ECF5;
    background: rgba(11, 23, 38, 0.9);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
}

.social-icon-button:hover {
    background: #FFB74D;
    color: #0B1726;
    border-color: #FFB74D;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
}

.social-icon-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.contact-form-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-field label {
    font-size: 13px;
    font-weight: 500;
    color: #E5ECF5;
}

.helper-text {
    font-size: 11px;
    color: #BFB9B4;
    margin: 0;
}

.error-text {
    font-size: 11px;
    color: #D32F2F;
    min-height: 14px;
    margin: 0;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    min-height: 40px;
    background: rgba(11, 23, 38, 0.9);
    color: #E5ECF5;
    border: 1px solid rgba(191, 185, 180, 0.5);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    outline: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

input::placeholder {
    color: rgba(229, 236, 245, 0.6);
}

input[type="text"]:hover,
input[type="email"]:hover {
    border-color: rgba(255, 183, 77, 0.6);
    transform: translateY(-1px);
}

input[type="text"]:focus-visible,
input[type="email"]:focus-visible {
    border-color: #FFB74D;
    box-shadow: 0 0 0 1px rgba(255, 183, 77, 0.8), 0 12px 28px rgba(0, 0, 0, 0.75);
    background: rgba(11, 23, 38, 1);
}

textarea {
    width: 100%;
    min-height: 120px;
    padding: 10px 12px;
    background: rgba(11, 23, 38, 0.9);
    color: #E5ECF5;
    border: 1px solid rgba(191, 185, 180, 0.5);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

textarea::placeholder {
    color: rgba(229, 236, 245, 0.6);
}

textarea:hover {
    border-color: rgba(255, 183, 77, 0.6);
    transform: translateY(-1px);
}

textarea:focus-visible {
    border-color: #FFB74D;
    box-shadow: 0 0 0 1px rgba(255, 183, 77, 0.8), 0 12px 28px rgba(0, 0, 0, 0.75);
    background: rgba(11, 23, 38, 1);
}

.form-status {
    margin-top: 8px;
    font-size: 12px;
    min-height: 16px;
}

.site-footer {
    margin-top: 40px;
    padding: 18px 24px 20px 24px;
    border-top: 1px solid rgba(191, 185, 180, 0.35);
    background: rgba(11, 23, 38, 0.96);
    color: #E5ECF5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    line-height: 1.5;
    z-index: 10;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-created-by {
    font-weight: 500;
    color: #FFB74D;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.modal-zoom {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-zoom[hidden] {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
}

.modal-zoom-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.9);
    background: #0B1726;
    display: flex;
    flex-direction: column;
}

.modal-zoom-image {
    width: 100%;
    height: 100%;
    max-height: 60vh;
    object-fit: contain;
    background: #000;
}

.modal-zoom-caption {
    padding: 12px 16px 14px 16px;
}

.modal-zoom-title {
    margin: 0 0 4px 0;
    font-size: 16px;
}

.modal-zoom-text {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(191, 185, 180, 0.6);
    background: rgba(11, 23, 38, 0.9);
    color: #E5ECF5;
    cursor: pointer;
}

.modal-close:hover {
    background: #FFB74D;
    color: #0B1726;
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .about-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .contact-card {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding-inline: 16px;
    }

    .navbar-links-desktop {
        display: none;
    }

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

@media (max-width: 640px) {
    .page-container {
        padding-inline: 16px;
    }

    .hero {
        padding: 24px 0 16px 0;
    }

    .hero-heading {
        font-size: 32px;
    }
}
