/* =============================================
   Rukoz Enterprises LLC — Stylesheet
   Color Palette: Dark Green / White / Gold accents
   ============================================= */

:root {
    --green-900: #0B2B1F;
    --green-800: #0F3D2C;
    --green-700: #14553D;
    --green-600: #1A6B4D;
    --green-500: #22885F;
    --green-400: #34A574;
    --green-300: #5CC298;
    --green-200: #A3DEC4;
    --green-100: #D4F0E2;
    --green-50:  #EDF9F3;

    --gold-500: #C9A84C;
    --gold-400: #D4B95E;
    --gold-300: #E0CB7A;

    --white: #FFFFFF;
    --gray-50: #F3F4F6;
    --gray-100: #E8EAED;
    --gray-200: #D5D8DC;
    --gray-300: #BFC3C9;
    --gray-400: #8D939B;
    --gray-500: #5F656E;
    --gray-600: #444A52;
    --gray-700: #31363D;
    --gray-800: #1F2329;
    --gray-900: #111318;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--green-500);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
}
.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
    font-size: 0.875rem;
}
.btn-nav:hover {
    background: var(--green-700);
    border-color: var(--green-700);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(11, 43, 31, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color var(--transition);
}
.nav-links a:hover {
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-900) 0%, #061a12 50%, #0a2218 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34,136,95,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-sub strong {
    color: rgba(255,255,255,0.95);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-400);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a {
    color: rgba(255,255,255,0.4);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* =============================================
   SECTIONS (shared)
   ============================================= */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    background: var(--gray-50);
}

.about-grid {
    max-width: 900px;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: 12px;
    color: var(--green-600);
}

.highlight h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-900);
    margin-bottom: 4px;
}

.highlight p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--green-400);
}
.image-placeholder span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* =============================================
   MARKETS
   ============================================= */
.markets {
    background: var(--gray-50);
}

.markets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.market-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}
.market-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.market-image {
    position: relative;
    height: 240px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.nc-image {
    background: url('GSO.webp') center/cover no-repeat;
}

.fl-image {
    background: url('FTLAUD.webp') center/cover no-repeat;
}

.market-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.market-content {
    padding: 32px;
}

.market-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 12px;
}

.market-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.75;
}

.market-stats-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.market-stats-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}
.market-stats-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.market-stats-list strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.market-stats-list span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* =============================================
   RENTCLOUD
   ============================================= */
.rentcloud {
    background: var(--gray-50);
}

.rentcloud-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.rentcloud-text .section-tag {
    text-align: left;
}

.rentcloud-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 20px;
}

.rentcloud-text .lead {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 12px;
    line-height: 1.8;
}

.rentcloud-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.rentcloud-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.rc-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}
.rc-feature svg {
    flex-shrink: 0;
    color: var(--green-500);
}

.rentcloud-cta-text {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* Rentcloud Screenshot */
.rc-screenshot {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: block;
}

/* =============================================
   VENTURES
   ============================================= */
.ventures {
    background: var(--gray-50);
}

.ventures-grid {
    max-width: 800px;
    margin: 0 auto;
}

.venture-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.venture-icon {
    margin-bottom: 24px;
}

.venture-logo {
    height: 64px;
    width: auto;
}

.venture-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 4px;
}

.venture-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.venture-card > p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.venture-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-100);
}

.venture-stat {
    text-align: center;
}

.venture-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-700);
    margin-bottom: 4px;
}

.venture-stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    background: var(--gray-50);
}

.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.req {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(34,136,95,0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

.form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    min-height: 24px;
}
.form-status.success {
    color: var(--green-600);
}
.form-status.error-msg {
    color: #ef4444;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.info-card {
    flex: 1;
}

.info-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    flex: 1;
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: 12px;
    color: var(--green-600);
    margin-bottom: 16px;
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-900);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.info-card a {
    color: var(--green-600);
    font-weight: 500;
}
.info-card a:hover {
    color: var(--green-700);
    text-decoration: underline;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer .logo-mark {
    background: var(--green-700);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 320px;
}

.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    .rentcloud-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .rentcloud-visual {
        order: -1;
    }
    .contact-info {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--green-900);
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right var(--transition);
    }
    .nav-links.active {
        right: 0;
    }
    .btn-nav {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .markets-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 br {
        display: none;
    }

    .hero-stats {
        gap: 32px;
    }

    .rentcloud-features {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 72px 0;
    }


}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
