/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Brand Colors */
    --clr-forest: #305E3B;
    --clr-deep: #547842;
    --clr-gold: #CEAF51;
    --clr-cream: #F1E7BA;
    --clr-tan: #DAD69F;
    --clr-brown: #9E7832;

    /* Neutrals & Utilities */
    --clr-white: #ffffff;
    --clr-dark: #1f2937;
    --clr-text: #4b5563;
    --clr-bg-alt: #FAFAFA;
    --glass-bg: rgba(255, 255, 255, 0.85);

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    line-height: 1.6;
    background-color: var(--clr-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-dark);
    line-height: 1.2;
    text-transform: uppercase;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   Typography & Buttons
   ========================================================================== */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
}

.btn-primary {
    background-color: var(--clr-gold);
    color: var(--clr-dark);
    border: none;
}

.btn-primary:hover {
    background-color: var(--clr-brown);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--clr-forest);
    color: var(--clr-white);
    border: none;
}

.btn-secondary:hover {
    background-color: var(--clr-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--clr-forest);
    border: 2px solid var(--clr-forest);
}

.btn-outline:hover {
    background: var(--clr-forest);
    color: var(--clr-white);
}

.glow-effect {
    position: relative;
    overflow: hidden;
}
.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}
.glow-effect:hover::after {
    animation: shine 1.5s ease-out infinite;
}

/* ==========================================================================
   Components: Alert & Navbar (Mobile First)
   ========================================================================== */
.alert-bar {
    background-color: var(--clr-brown);
    color: var(--clr-white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-bar p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: var(--clr-white);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    height: 180px; /* 200% bigger logo size */
    transition: var(--transition-smooth);
}

/* On mobile, keep the logo a bit smaller to prevent layout breaking, scale up on tablet */
@media (max-width: 768px) {
    .logo-container {
        height: 100px; 
    }
}

.brand-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-dark);
    z-index: 1001; /* Above nav links */
}

.mobile-toggle.active {
    color: var(--clr-forest);
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background: var(--clr-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.nav-links.active {
    right: 0;
}

.nav-links a:not(.btn-primary):not(.btn-outline) {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-dark);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a:not(.btn-primary):not(.btn-outline)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-gold);
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn-primary):not(.btn-outline):hover::after {
    width: 100%;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
    .nav-links {
        position: static;
        height: auto;
        width: auto;
        max-width: none;
        background: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        right: auto;
    }
}

/* ==========================================================================
   Hero Section (Mobile First)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.7) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-overlay {
        background: linear-gradient(to right, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.6) 50%, rgba(31, 41, 55, 0.3) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
        max-width: 800px;
        margin-left: max(5%, calc((100vw - 1400px) / 2));
        padding: 4rem 2rem;
    }
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .badge-row {
        justify-content: flex-start;
    }
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--clr-gold);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--clr-cream);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero-sub {
        font-size: 1.25rem;
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-bullets {
    list-style: none;
    margin-bottom: 3rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--clr-white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .hero-bullets li {
        justify-content: flex-start;
    }
}

.hero-bullets i {
    color: var(--clr-gold);
}

.hero-quick-form {
    background: rgba(48, 94, 59, 0.4); /* Forest green with high transparency */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    max-width: 100%;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inline-form input, .inline-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.9);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-dark);
}

.inline-form input:focus, .inline-form select:focus {
    outline: none;
    border-color: var(--clr-gold);
}

.inline-form button {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

@media (min-width: 900px) {
    .hero-quick-form {
        display: inline-block;
    }
    .inline-form {
        flex-direction: row;
        align-items: center;
    }
    .inline-form input, .inline-form select {
        width: 200px;
    }
    .inline-form button {
        width: auto;
    }
}

/* ==========================================================================
   Proof Bar
   ========================================================================== */
.proof-bar {
    background-color: var(--clr-dark);
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--clr-white);
}

@media (min-width: 768px) {
    .proof-bar {
        padding: 4rem 2rem;
    }
}

.proof-container h2 {
    color: var(--clr-white);
    margin-bottom: 3rem;
    font-weight: 500;
}

.proof-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .proof-icons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3rem;
    }
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 200px;
}

.icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--clr-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    transition: var(--transition-smooth);
}

.icon-wrap svg {
    width: 40px;
    height: 40px;
}

.proof-item:hover .icon-wrap {
    transform: translateY(-10px);
    background: var(--clr-gold);
    color: var(--clr-dark);
}

.proof-item span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Social Proof / Testimonials (Mobile First)
   ========================================================================== */
.testimonials {
    background-color: var(--clr-cream);
    padding: 4rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonials {
        padding: 5rem 2rem;
    }
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-container h2 {
    color: var(--clr-forest);
    font-size: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .testimonials-container h2 {
        font-size: 2.5rem;
    }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.testimonial-card {
    background: var(--clr-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--clr-gold);
}

.star-filled {
    fill: var(--clr-gold);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--clr-dark);
    line-height: 1.6;
    flex-grow: 1;
}

.author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--clr-forest);
    font-weight: 600;
}

/* ==========================================================================
   Services Section (Mobile First)
   ========================================================================== */
.services, .projects, .process, .contact {
    padding: 4rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services, .projects, .process, .contact {
        padding: 6rem 2rem;
    }
}

.services {
    background-color: var(--clr-bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--clr-forest);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.service-card {
    background: var(--clr-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--clr-gold);
}

.service-card svg {
    width: 48px;
    height: 48px;
    color: var(--clr-forest);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.urgent-tag {
    position: absolute;
    top: 1rem;
    right: -2.5rem;
    background: var(--clr-gold);
    color: var(--clr-dark);
    padding: 0.25rem 3.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    transform: rotate(45deg);
    font-weight: bold;
}

.service-card.urgent {
    border: 2px solid var(--clr-gold);
}

/* ==========================================================================
   Projects / Gallery (Mobile First)
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .gallery-item {
        height: 350px;
    }
}

.img-wrapper {
    width: 100%;
    height: 100%;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(48, 94, 59, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    text-align: center;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .gallery-overlay span {
        font-size: 2rem;
    }
}

.gallery-item:hover .img-wrapper img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   Process Section (Mobile First)
   ========================================================================== */
.process-container {
    max-width: 800px;
    margin: 0 auto;
}

.process-text {
    text-align: center;
}

.process-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--clr-forest);
}

@media (min-width: 768px) {
    .process-text h2 {
        font-size: 2.5rem;
    }
}

.process-text > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left; /* Keep steps readable left-aligned */
    background: var(--clr-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .process-steps {
        padding: 3rem;
    }
}

.step {
    display: flex;
    gap: 1.25rem;
}

.step-num {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--clr-cream);
    color: var(--clr-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    border: 3px solid var(--clr-gold);
}

@media (min-width: 768px) {
    .step-num {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .step-content h4 {
        font-size: 1.4rem;
    }
}

.process-cta {
    text-align: center;
}

/* ==========================================================================
   Contact / Footer (Mobile First)
   ========================================================================== */
.contact {
    background: var(--clr-dark);
    max-width: 100%;
    color: var(--clr-white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info h2 {
    color: var(--clr-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .contact-info h2 {
        font-size: 3rem;
    }
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #9ca3af;
}

.contact-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
}

.contact-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.contact-bullets i {
    color: var(--clr-gold);
}

.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .direct-contact {
        padding: 2rem;
    }
}

.contact-link, .location-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--clr-gold);
}

.glass-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .glass-form {
        padding: 3rem;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .form-group {
        margin-bottom: 1.5rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

@media (min-width: 768px) {
    .form-group input, .form-group select {
        padding: 1rem;
    }
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--clr-gold);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: var(--clr-dark);
    color: var(--clr-white);
}

.form-submit {
    width: 100%;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Footer Bottom */
footer {
    background: #111827;
    color: #9ca3af;
    padding: 3rem 1.5rem 2rem;
}

@media (min-width: 768px) {
    footer {
        padding: 4rem 2rem 2rem;
    }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

@media (min-width: 768px) {
    .footer-logo {
        height: 50px;
        margin-bottom: 1.5rem;
    }
}

.footer-col h4 {
    color: var(--clr-white);
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--clr-gold);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================================================
   Animations & Interactivity (Intersection Observer Target Classes)
   ========================================================================== */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animation Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Triggered State */
.in-view {
    opacity: 1;
    transform: translateY(0) scale(1) translateX(0);
}
