/* ====================================
   Digital Beast Website - Styles
   ==================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #020617, #1e3a8a, #0f172a);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
.logo-font {
    font-family: 'Orbitron', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    stroke: #60a5fa;
    stroke-width: 2;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #60a5fa;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    transition: width 0.3s;
}

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

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
    transition: 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-mobile {
    display: none;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(96, 165, 250, 0.2);
    padding: 1rem 1.5rem;
}

.nav-mobile.active {
    display: block;
}

.nav-link-mobile {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

/* Main Content */
main {
    padding-top: 5rem;
}

.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(30deg, rgba(96, 165, 250, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(96, 165, 250, 0.05) 87.5%),
        linear-gradient(150deg, rgba(96, 165, 250, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(96, 165, 250, 0.05) 87.5%);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.animate-slide-in {
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(to right, #3b82f6, #9333ea);
    color: white;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(96, 165, 250, 0.5);
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.btn-secondary:hover {
    background: rgba(30, 41, 59, 0.7);
}

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

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.4s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: rgba(15, 23, 42, 0.5);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto;
}

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

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

.service-card {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
}

.service-icon {
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 3rem;
    height: 3rem;
    stroke-width: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
}

/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.office-card {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.office-icon {
    width: 3rem;
    height: 3rem;
    color: #60a5fa;
    stroke-width: 2;
    margin: 0 auto 1.5rem;
}

.office-country {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.office-address {
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.office-phones {
    color: #60a5fa;
    font-size: 0.875rem;
}

.office-phones p {
    margin: 0.25rem 0;
}

/* CTA Section */
.cta-section {
    background-image: 
        linear-gradient(30deg, rgba(96, 165, 250, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(96, 165, 250, 0.05) 87.5%),
        linear-gradient(150deg, rgba(96, 165, 250, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(96, 165, 250, 0.05) 87.5%);
    background-size: 80px 140px;
}

.cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
    padding: 5rem 0;
    text-align: center;
    background-image: 
        linear-gradient(30deg, rgba(96, 165, 250, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(96, 165, 250, 0.05) 87.5%),
        linear-gradient(150deg, rgba(96, 165, 250, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(96, 165, 250, 0.05) 87.5%);
    background-size: 80px 140px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #e5e7eb;
    max-width: 48rem;
    margin: 0 auto;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.two-column.reverse .column:first-child {
    order: 2;
}

.two-column.reverse .column:last-child {
    order: 1;
}

.text-content {
    color: #d1d5db;
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 1rem;
}

/* Value Cards */
.value-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    display: flex;
    gap: 1rem;
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(96, 165, 250, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #60a5fa;
    stroke-width: 2;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.value-box {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.value-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-box p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Service Detail */
.service-detail {
    margin-bottom: 5rem;
}

.service-icon-large {
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.service-icon-large svg {
    width: 3rem;
    height: 3rem;
    stroke-width: 2;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-desc {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: #d1d5db;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background: linear-gradient(to right, #60a5fa, #9333ea);
    border-radius: 50%;
}

.service-image {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 16rem;
}

.service-image svg {
    width: 6rem;
    height: 6rem;
    color: #60a5fa;
    stroke-width: 2;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.process-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #9ca3af;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

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

.form-success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #22c55e;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #d1d5db;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #60a5fa;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #60a5fa;
}

.hours-list p {
    margin: 0.5rem 0;
    color: #d1d5db;
}

.hours-note {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1rem;
}

/* Office Locations */
.office-locations {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.office-location {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.office-details {
    padding: 2rem;
}

.office-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    color: #d1d5db;
}

.location-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #60a5fa;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.location-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.location-item a:hover {
    color: #60a5fa;
}

.office-map {
    height: 20rem;
}

.office-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background: #020617;
    border-top: 1px solid rgba(96, 165, 250, 0.2);
    padding: 3rem 0;
}

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

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 0.5rem;
    color: #9ca3af;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin: 0.75rem 0;
    font-size: 0.875rem;
}

.footer-contact svg {
    width: 1rem;
    height: 1rem;
    color: #60a5fa;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid rgba(96, 165, 250, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offices-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .page-title {
        font-size: 4rem;
    }

    .two-column {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column.reverse .column:first-child {
        order: 1;
    }

    .two-column.reverse .column:last-child {
        order: 2;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .office-location {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .office-map {
        height: auto;
        min-height: 20rem;
    }
}

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

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
