/* CSS variables - Premium Palette */
:root {
    /* Colors */
    --primary: #0F172A;
    /* Deep slate/navy, extremely solid */
    --primary-light: #1E293B;
    --primary-blue: #0A3055;
    /* Contractor true blue */
    --accent: #EA580C;
    /* Premium burnt orange */
    --accent-hover: #C2410C;
    --text-main: #334155;
    --text-light: #64748B;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-alt: #F1F5F9;
    --border: #E2E8F0;

    /* Effects */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Modern Soft Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

body {
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.bg-white {
    background-color: var(--bg-white);
}

.bg-light {
    background-color: var(--bg-light);
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.pt-large {
    padding-top: 5rem;
}

.pb-large {
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .pt-large {
        padding-top: 7rem;
    }

    .pb-large {
        padding-bottom: 7rem;
    }
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-light {
    color: var(--text-light);
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--primary);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    h2 {
        font-size: 2.75rem;
    }
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* About Grid & Founder Feature */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }

    .about-content .lead-text {
        margin-left: 0;
    }
}

.founder-message {
    background: var(--bg-alt);
    padding: 2.5rem;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    position: relative;
}

.founder-quote-icon {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    font-size: 3rem;
    color: var(--bg-white);
    background: var(--accent);
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: var(--shadow-md);
}

.founder-message p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.founder-signature {
    display: flex;
    flex-direction: column;
}

.signature-font {
    font-family: 'Georgia', serif;
    /* Or a specific cursive if loaded */
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 700;
    color: var(--primary);
}

.founder-title {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--primary);
    color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 4px solid var(--accent);
}

@media (max-width: 768px) {
    .experience-badge {
        right: 1rem;
        bottom: -1rem;
        padding: 1.5rem;
    }
}

.exp-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* Section Header & Dividers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-header .divider {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Layout Grid & Containers */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding: 0 2rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-md);
}

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

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

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-outline-dark:hover {
    background-color: var(--bg-light);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.google-icon {
    color: #DB4437;
    /* Google Red/Orange for slight brand touch */
    font-size: 1.25rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Fade-in Animation Engine */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Header & Nav */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
    /* Reduced padding to let the massive logo fit seamlessly */
    border-bottom: 1px solid var(--border);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.site-logo {
    height: 140px;
    /* Massively increased */
    max-height: 14vh;
    width: auto;
    object-fit: contain;
    display: block;
    transform: scale(1.3);
    /* Boost scale aggressively */
    transform-origin: left center;
}

.main-nav,
.header-actions {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
    transform-origin: top;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: scaleY(0.95);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem;
}

.mobile-nav a {
    font-weight: 600;
    padding: 0.5rem 0;
    display: block;
    color: var(--text-main);
}

.mobile-phone-link {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .main-nav {
        display: block;
    }

    .main-nav ul {
        display: flex;
        gap: 2.5rem;
    }

    .main-nav a {
        font-weight: 600;
        color: var(--text-main);
        font-size: 0.95rem;
        transition: var(--transition);
        position: relative;
    }

    .main-nav a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s ease;
    }

    .main-nav a:hover {
        color: var(--primary);
    }

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

    .header-actions {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .phone-link {
        font-weight: 700;
        color: var(--primary-blue);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: var(--transition);
    }

    .phone-link:hover {
        color: var(--accent);
    }

    .phone-link i {
        font-size: 1.25rem;
        color: var(--accent);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary);
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&q=80&w=1920&h=900');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(234, 88, 12, 0.2);
    border: 1px solid rgba(234, 88, 12, 0.5);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero h1 {
    color: var(--bg-white);
}

.hero .subheadline {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Trust Bar */
.trust-bar {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    padding: 2rem 0;
    border-top: 4px solid var(--accent);
}

.trust-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.trust-icon {
    font-size: 2rem;
    color: var(--bg-white);
    opacity: 0.9;
}

@media (min-width: 768px) {
    .trust-container {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: center;
    }

    .trust-item {
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
        min-width: 200px;
    }

    .trust-icon {
        font-size: 2.5rem;
        color: var(--accent);
        opacity: 1;
    }
}

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

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

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

.service-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    position: relative;
    top: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(234, 88, 12, 0.3);
}

.service-icon {
    background: var(--bg-alt);
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--bg-white);
}

.service-benefit {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.service-list {
    margin-bottom: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.service-list li i {
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cta-link {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cta-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-link:hover {
    color: var(--accent);
}

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

/* Why Choose Us */
.why-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-container {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.why-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.icon-wrap {
    background: rgba(234, 88, 12, 0.1);
    color: var(--accent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.icon-wrap i {
    font-size: 1rem;
}

/* Project Gallery */
.gallery-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

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

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    background-color: var(--primary);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 0.6;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

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

/* Service Areas */
.text-container {
    max-width: 800px;
    margin: 0 auto;
}

.cities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.city-badge {
    background-color: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.city-badge i {
    color: var(--text-light);
}

.city-badge:hover {
    background-color: var(--white);
    border-color: rgba(234, 88, 12, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.city-badge:hover i {
    color: var(--accent);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 6rem;
    color: var(--bg-alt);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

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

.author {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.author-location {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Final CTA Structure */
.final-cta-section {
    background-color: var(--primary-light);
    background-image: url('https://images.unsplash.com/photo-1541888086425-d81bb19240f5?auto=format&fit=crop&q=80&w=1920&h=800');
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
    color: var(--bg-white);
}

.final-cta-section h2 {
    color: var(--bg-white);
}

.final-cta-section h3 {
    color: var(--primary);
}

.final-cta-section p {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.7;
}

.cta-container {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .cta-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.contact-card h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent);
}

.contact-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-white);
    transition: var(--transition);
}

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

/* Form Component styling - Premium input fields */
.contact-form {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    margin: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap i {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    font-size: 1.25rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
    background-color: var(--bg-light);
    outline: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.05);
}

/* Footer */
.site-footer {
    background-color: #060f1b;
    color: #94a3b8;
    padding: 6rem 0 0 0;
}

.site-footer h3 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.site-logo-footer {
    height: 180px;
    /* Massively increased from 110px */
    max-height: 25vh;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transform: scale(1.2);
    transform-origin: left center;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-grid {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-list li,
.footer-links-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links-list i {
    color: var(--accent);
}

.footer-links-list a:hover {
    color: var(--bg-white);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
}