/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0F1B6E;
    --primary-light: #1d2b8a;
    --dark: #312F2F;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #f4f7fb;
    --white: #ffffff;
    --accent: #f59e0b;
    --border: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 45px rgba(0, 0, 0, 0.08);
    --radius: 0.75rem;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title .divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 1rem auto 0;
    border-radius: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 27, 110, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.navbar-transparent {
    background: transparent;
    box-shadow: none;
}

.navbar-transparent .nav-links a {
    color: var(--white);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.85),
        0 2px 10px rgba(0, 0, 0, 0.55),
        0 0 18px rgba(0, 0, 0, 0.35);
}

.navbar-transparent .nav-links a::after {
    background: var(--accent);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.navbar-transparent .nav-logo img {
    filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.75)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.navbar-transparent .nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    text-shadow: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.navbar-transparent .nav-toggle span {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-light);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #081028;
    color: var(--white);
    padding: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #081028 0%, #081028 42%, rgba(8, 16, 40, 0.55) 58%, rgba(8, 16, 40, 0.08) 72%, transparent 82%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 110px;
    padding-bottom: 4rem;
    padding-right: clamp(1.5rem, 48vw, 38rem);
}

.hero-left {
    max-width: 560px;
    position: relative;
    z-index: 3;
}

.hero-left .hero-buttons {
    margin-bottom: 0;
}

/* Full-height image panel — bleeds to the right edge of the viewport */
.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(54vw, 820px);
    z-index: 2;
}

@media (min-width: 1400px) {
    .hero-visual {
        width: min(50vw, 900px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(79, 142, 247, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 142, 247, 0.45);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 1.15rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero h1 span {
    color: #3b82f6;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle span {
    color: #3b82f6;
}

.hero-left > p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-highlights {
    background: #0b1230;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.75rem 0;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.hero-feature:hover {
    background: transparent;
    transform: none;
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.hero-feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.hero-feature-text h4 span {
    color: #3b82f6;
}

.hero-feature-text p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

/* Diagonal cut on the left; sharp chevron tip (no flat vertical edge) */
.hero-image {
    --hero-cut: polygon(18% 0%, 100% 0%, 100% 100%, 18% 100%, 0% 50%);
    position: absolute;
    inset: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    filter: none;
}

.hero-image::before,
.hero-image::after {
    content: none;
}

.hero-image-shell {
    position: absolute;
    inset: 0;
    background: #081028;
    clip-path: var(--hero-cut);
    z-index: 0;
}

.hero-image-accent {
    position: absolute;
    inset: 0 0 0 8px;
    background: #4f8ef7;
    clip-path: var(--hero-cut);
    z-index: 1;
}

.hero-image-accent-inner {
    position: absolute;
    inset: 0 0 0 12px;
    background: #081028;
    clip-path: var(--hero-cut);
    z-index: 2;
}

.hero-image-media {
    position: absolute;
    inset: 0 0 0 16px;
    z-index: 3;
    margin: 0;
    clip-path: var(--hero-cut);
    overflow: hidden;
    background: #0c1638;
}

.hero-image-media img,
.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    display: block;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.625rem;
    padding: 1.1rem 0.75rem;
    text-align: center;
}

.hero-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.15rem;
}

.hero-stat p {
    font-size: 0.8rem;
    opacity: 0.85;
    margin: 0;
}

/* ===== About Preview ===== */
.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: var(--radius);
    z-index: -1;
}

.about-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-text .subtitle {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-feature .icon {
    width: 42px;
    height: 42px;
    background: rgba(15, 27, 110, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.about-feature p {
    font-size: 0.85rem;
    margin: 0;
}

/* ===== Services ===== */
.services {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card .learn-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
}

.service-card .learn-more:hover {
    gap: 0.6rem;
}

/* ===== Projects ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 27, 110, 0.85), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .btn {
    margin: 0 auto;
}

.project-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.project-info .tag {
    display: inline-block;
    background: rgba(15, 27, 110, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.project-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.project-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Testimonials ===== */
.testimonials {
    background: #f8fafc;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}
.testimonial-stars {
    color: #f59e0b;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}
.testimonial-card blockquote {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text);
    flex: 1;
}
.testimonial-card blockquote::before {
    content: "“";
    color: var(--primary);
    font-size: 1.6rem;
    line-height: 0;
    margin-right: 0.15rem;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}
.testimonial-author strong {
    color: var(--primary);
    font-size: 0.95rem;
}
.testimonial-author span {
    color: var(--text-light);
    font-size: 0.82rem;
}
@media (max-width: 960px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact / Inquiry Form ===== */
.contact {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.contact-item p,
.contact-item a {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--primary);
}

.inquiry-form {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.inquiry-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.inquiry-form .form-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 27, 110, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-message {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.inquiry-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.footer-contact li span {
    flex-shrink: 0;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image img {
        height: 320px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stat h3 {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }
}

/* ===== Why Pre-Engineered Steel Buildings ===== */
.why-steel {
    background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.why-steel .section-title p {
    max-width: 700px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.reason-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 27, 110, 0.2);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.reason-card:hover::before {
    transform: scaleY(1);
}

.reason-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 15px rgba(15, 27, 110, 0.2);
}

.reason-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.reasons-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.reasons-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.reasons-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.reasons-cta h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.reasons-cta .btn-primary {
    background: var(--accent);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.reasons-cta .btn-primary:hover {
    background: #d97706;
}

@media (max-width: 992px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reasons-cta h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 992px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(8, 16, 40, 0.15) 0%, #081028 50%, #081028 100%);
    }

    .hero-visual {
        position: relative;
        order: -1;
        width: 100%;
        height: min(52vh, 420px);
        right: auto;
        top: auto;
        bottom: auto;
    }

    .hero-image {
        --hero-cut: polygon(14% 0%, 100% 0%, 100% 100%, 14% 100%, 0% 50%);
    }

    .hero-content {
        padding-top: 2rem;
        padding-bottom: 3rem;
        padding-right: 1.5rem;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-features {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: min(42vh, 320px);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .inquiry-form {
        padding: 1.5rem;
    }
}
