/* ===================================
   PROS ENTERPRISES LLC
   Premium Luxury Website Styles
   =================================== */

/* ===================================
   CSS Variables - Brand Colors
   =================================== */
:root {
    --brand-red: #D9482B;
    --charcoal-black: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;

    --brand-red-dark: #B83620;
    --brand-red-light: #E56B52;
    --charcoal-light: #2A2A2A;
    --gray-100: #F9F9F9;
    --gray-200: #E8E8E8;
    --gray-300: #D4D4D4;
    --gray-700: #4A4A4A;
    --gray-800: #333333;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.16);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --border-radius: 16px;
    --border-radius-lg: 20px;
    --border-radius-sm: 12px;
}

/* ===================================
   Global Resets & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal-black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal-black);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-red);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--charcoal-black);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--brand-red);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(217, 72, 43, 0.3);
}

.btn-primary:hover {
    background: var(--brand-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 72, 43, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: var(--brand-red);
    padding: 0.5rem 0;
    font-weight: 600;
}

.btn-text:hover {
    color: var(--brand-red-dark);
    transform: translateX(4px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-base);
    padding: 1.5rem 0;
}

.nav.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
}

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

.nav-logo .logo {
    height: 48px;
    width: auto;
    transition: all var(--transition-base);
}

.nav.scrolled .nav-logo .logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    transition: all var(--transition-base);
}

.nav.scrolled .nav-link {
    color: var(--charcoal-black);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--brand-red);
}

.nav-cta {
    background: var(--brand-red);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(217, 72, 43, 0.3);
}

.nav-cta:hover {
    background: var(--brand-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 72, 43, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

.nav.scrolled .nav-toggle span {
    background: var(--charcoal-black);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal-black);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-link:hover {
    color: var(--brand-red);
}

.mobile-cta {
    display: block;
    background: var(--brand-red);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

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

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(26, 26, 26, 0.5) 0%,
            rgba(26, 26, 26, 0.3) 50%,
            rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-title-line {
    display: block;
    animation: fadeInUp 1s ease-out backwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.375rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 8rem 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-image {
    transition: transform var(--transition-slow);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-red);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--brand-red);
    color: var(--white);
    transform: rotate(5deg);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal-black);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--brand-red);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    display: inline-block;
}

.service-link:hover {
    transform: translateX(4px);
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio {
    padding: 8rem 0;
    background: var(--white);
}

.project-showcase {
    max-width: 1400px;
    margin: 0 auto;
}

.project {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
    padding: 0 2rem;
}

.project-reverse {
    grid-template-columns: 1fr 1.2fr;
}

.project-reverse .project-image {
    order: 2;
}

.project-reverse .project-content {
    order: 1;
}

.project-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 16/11;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project:hover .project-image img {
    transform: scale(1.08);
}

.project-location {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-red);
    margin-bottom: 1rem;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--charcoal-black);
}

.project-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-black);
    transition: all var(--transition-base);
}

.tag:hover {
    background: var(--brand-red);
    color: var(--white);
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose {
    padding: 8rem 0;
    background: var(--charcoal-black);
    color: var(--white);
}

.why-choose .section-label {
    color: var(--brand-red);
}

.why-choose .section-title,
.why-choose .section-description {
    color: var(--white);
}

.why-choose .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
    padding: 2.5rem;
    background: var(--charcoal-light);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature:hover {
    background: var(--charcoal-light);
    border-color: var(--brand-red);
    transform: translateY(-8px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    transition: all var(--transition-base);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* ===================================
   Process Section
   =================================== */
.process {
    padding: 8rem 0;
    background: var(--light-gray);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 2.5rem 0;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 100px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom, var(--brand-red), transparent);
}

.process-number {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(217, 72, 43, 0.3);
    transition: all var(--transition-base);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(217, 72, 43, 0.4);
}

.process-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal-black);
}

.process-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 8rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.testimonial:hover {
    border-color: var(--brand-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating .stars {
    font-size: 1.25rem;
    color: #FFD700;
}

.rating-source {
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--charcoal-black);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal-black);
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.85),
            rgba(217, 72, 43, 0.75));
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4rem;
}

.cta-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
    color: var(--charcoal-black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    background: var(--white);
}

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

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1.125rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--brand-red);
}

.contact-item a {
    color: var(--white);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--brand-red);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--charcoal-black);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--charcoal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--brand-red);
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.footer-column ul li a:hover {
    color: var(--brand-red);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
}

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

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--brand-red);
}

/* ===================================
   Mobile Sticky Buttons
   =================================== */
.mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    z-index: 998;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.mobile-btn {
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.mobile-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-btn-call {
    background: var(--charcoal-black);
    color: var(--white);
}

.mobile-btn-call:active {
    background: var(--charcoal-light);
}

.mobile-btn-estimate {
    background: var(--brand-red);
    color: var(--white);
}

.mobile-btn-estimate:active {
    background: var(--brand-red-dark);
}

/* ===================================
   Animation Utilities
   =================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* ===================================
   Responsive Design
   =================================== */

/* Large Tablets */
@media (max-width: 1024px) {
    .project {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .project-reverse .project-image,
    .project-reverse .project-content {
        order: initial;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 600px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .services,
    .portfolio,
    .why-choose,
    .process,
    .testimonials {
        padding: 5rem 0;
    }

    .cta {
        padding: 6rem 0;
    }

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

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

    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }

    .process-number {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }

    .process-step:not(:last-child)::after {
        left: 40px;
        top: 80px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .mobile-sticky {
        display: grid;
    }

    body {
        padding-bottom: 70px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .project-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-form-container {
        padding: 2rem 1.5rem;
    }

    .service-card {
        margin: 0 1rem;
    }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    .nav-container {
        max-width: 1600px;
    }
}

/* Print Styles */
@media print {

    .nav,
    .mobile-sticky,
    .scroll-indicator,
    .cta-form-container {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}