:root {
    --primary-dark: #1b222c;
    --primary-brand: #ff6c00;
    --secondary-brand: #e11d48;
    --brand-gradient: linear-gradient(135deg, #ff6c00 0%, #ef4444 100%);
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Diagonal Background Accents */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bg-diagonal {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 70%;
    height: 120%;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.8) 100%);
    transform: skewX(-12deg);
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.02);
    z-index: 2;
}

.bg-dot-pattern {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--primary-brand) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.15;
    z-index: 3;
}

/* Building Image on Right */
.building-side {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: calc(100vh - 200px); /* Leave room for bottom bar */
    background-image: url('../images/building.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.1) brightness(0.95);
    z-index: 1;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.building-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: calc(100vh - 200px);
    background: linear-gradient(to right, rgba(248, 250, 252, 0.9) 0%, rgba(248, 250, 252, 0) 100%);
    z-index: 2;
    pointer-events: none;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.building-dot-pattern {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-brand) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.25;
    z-index: 3;
}

/* Main Container */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 40px 8%;
    min-height: calc(100vh - 200px);
}

.content-container {
    max-width: 600px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 40px;
}

.logo-img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

/* Typography */
h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 20px;
}

h1 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.divider {
    width: 120px;
    height: 2px;
    background: var(--brand-gradient);
    margin-bottom: 25px;
}

.subheading {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Contact Details Badge */
.contact-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 18px 24px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    gap: 16px;
    transition: all 0.3s ease;
}

.contact-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 108, 0, 0.15);
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50px;
    background: #fff;
    border: 2px solid var(--primary-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brand);
    flex-shrink: 0;
}

.icon-circle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-brand);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--secondary-brand);
}

/* Bottom Feature Banner */
.features-banner {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 45px 8%;
    z-index: 10;
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 10px 20px;
}

/* Add separators between columns on desktop */
.feature-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-brand);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Footer */
footer {
    background-color: #ffffff;
    padding: 25px 8%;
    text-align: center;
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, var(--primary-brand) 50%, rgba(0,0,0,0) 100%);
    max-width: 250px;
}

.footer-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 6px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.footer-text span {
    color: var(--primary-brand);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .building-side, .building-overlay, .building-dot-pattern {
        display: none;
    }

    .bg-diagonal {
        width: 110%;
        transform: skewX(-6deg);
    }

    .main-wrapper {
        padding: 60px 5%;
        min-height: auto;
        text-align: center;
        align-items: center;
    }

    .content-container {
        text-align: center;
        margin: 0 auto 40px auto;
    }

    .divider {
        margin: 0 auto 25px auto;
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-card:not(:last-child)::after {
        display: none;
    }

    .feature-card {
        padding: 10px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    .logo-img {
        max-height: 75px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .contact-badge {
        padding: 14px 20px;
        border-radius: 20px;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .contact-info {
        align-items: center;
    }

    .footer-text {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
}
