/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --color-bg-deep: #0a0c10;
    --color-bg-card: rgba(18, 22, 32, 0.65);
    --color-bg-header: rgba(10, 12, 16, 0.85);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.16);

    --color-text-main: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-text-title: #ffffff;

    /* Theme Accents (Linear Gradients) */
    --grad-primary: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --grad-secondary: linear-gradient(135deg, #7f00ff 0%, #e100ff 100%);
    --grad-whatsapp: linear-gradient(135deg, #25d366 0%, #128c7e 100%);

    /* Service Glow Colors */
    --color-blue-glow: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --color-yellow-glow: linear-gradient(135deg, #ffd200 0%, #f7971e 100%);
    --color-teal-glow: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --color-purple-glow: linear-gradient(135deg, #7f00ff 0%, #da70d6 100%);
    --color-red-glow: linear-gradient(135deg, #ff0844 0%, #ff4e50 100%);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadow */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glow-shadow: 0 0 25px rgba(0, 242, 254, 0.15);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-text-title);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

/* Utility Glassmorphism Class */
.glass {
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    box-shadow: var(--card-shadow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--grad-primary);
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
}

.btn-secondary {
    background: var(--grad-secondary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(127, 0, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 0, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-title);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-title);
    transform: translateY(-2px);
}

.btn-full-width {
    width: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--color-bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-accent {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.logo-subtext {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-text-title);
}

/* Dot animation under nav items */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00f2fe;
    transition: var(--transition-smooth);
}

.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a.btn-secondary {
    padding: 10px 24px;
    color: #ffffff;
    margin-left: 12px;
}

.nav-menu a.btn-secondary::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-title);
    cursor: pointer;
    font-size: 24px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('assets/hero_bg.png') no-repeat center center;
    background-size: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.8) 0%, rgba(10, 12, 16, 0.95) 100%);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #00f2fe;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* ==========================================
   TRUST / STATS BAR
   ========================================== */
.trust-bar {
    background: #0f121a;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 40px 0;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    color: #00f2fe;
    background: rgba(0, 242, 254, 0.08);
    padding: 10px;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 242, 254, 0.15);
}

.trust-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #00f2fe;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 16px;
}

/* ==========================================
   SERVICES GRID & CARDS
   ========================================== */
.services-section {
    padding: 100px 0;
}

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

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 30px -5px rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
    height: 6px;
    opacity: 1;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-color);
    border-color: transparent;
}

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--color-text-title);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    color: #000000;
    transform: scale(1.1);
}

/* For service areas with white content inside black, adjust icons like automate / purple */
.service-card:hover[data-service="automacao"] .service-icon,
.service-card:hover[data-service="vigilancia"] .service-icon {
    color: #ffffff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-preview-list {
    list-style: none;
    margin-bottom: 28px;
}

.service-preview-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.service-preview-list li i {
    width: 16px;
    height: 16px;
    color: #00f2fe;
}

.btn-card-more {
    background: transparent;
    border: none;
    color: var(--color-text-title);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth);
}

.btn-card-more i {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.service-card:hover .btn-card-more i {
    color: var(--color-text-title);
    transform: rotate(90deg);
}

/* ==========================================
   MODAL PANEL (DETAILS POPUP)
   ========================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    width: 100%;
    max-width: 650px;
    border-radius: 24px;
    position: relative;
    padding: 48px;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-title);
    font-size: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ff0844;
}

/* Inner Modal Elements */
.modal-title-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.modal-title-area i {
    width: 36px;
    height: 36px;
    color: #00f2fe;
}

.modal-title-area h3 {
    font-size: 26px;
}

.modal-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.modal-subservices-list {
    list-style: none;
    margin-bottom: 36px;
}

.modal-subservices-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.modal-subservices-list li i {
    width: 20px;
    height: 20px;
    color: #00f2fe;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================
   ABOUT / QUEM SOMOS SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    background: #090b0f;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.visual-stack {
    position: relative;
    padding: 20px;
}

.about-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    box-shadow: var(--card-shadow);
}

.visual-accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-accent-icon {
    width: 36px;
    height: 36px;
    color: #00f2fe;
}

.visual-accent-text {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-main);
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-text p.lead {
    font-size: 18px;
    color: var(--color-text-title);
    font-weight: 500;
}

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

.point-item {
    display: flex;
    gap: 16px;
}

.point-icon {
    width: 24px;
    height: 24px;
    color: #00f2fe;
    flex-shrink: 0;
}

.point-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.point-item p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================
   LOCATION SECTION
   ========================================== */
.location-section {
    padding: 100px 0;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.location-info {
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-item {
    display: flex;
    gap: 18px;
}

.location-icon {
    width: 28px;
    height: 28px;
    color: #00f2fe;
    flex-shrink: 0;
}

.location-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.location-item p {
    font-size: 14px;
    color: var(--color-text-muted);
}

.contact-link {
    color: var(--color-text-title);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: #00f2fe;
}

.location-map {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    height: 450px;
    box-shadow: var(--card-shadow);
}

/* ==========================================
   CONTACT FORM SECTION
   ========================================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0c10 0%, #0e121b 100%);
    border-top: 1px solid var(--color-border);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.contact-heading h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.contact-heading p {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
}

.benefit-item i {
    width: 24px;
    height: 24px;
    color: #00f2fe;
}

.contact-form-wrapper {
    border-radius: 24px;
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--color-text-title);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00f2fe;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

/* Custom styling for option dropdown in dark mode */
.form-group select option {
    background: #0f121a;
    color: var(--color-text-title);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: #07090d;
    padding: 80px 0 0 0;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-brand p {
    color: var(--color-text-main);
    font-size: 14px;
}

.footer-brand p.cnpj {
    color: var(--color-text-muted);
    font-size: 12px;
    margin-top: 6px;
    letter-spacing: 0.05em;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00f2fe;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-text-title);
    transform: translateX(4px);
}

.footer-contact {
    font-size: 14px;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact p i {
    width: 18px;
    height: 18px;
    color: #00f2fe;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 30px 0;
    font-size: 13px;
    color: var(--color-text-muted);
}

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

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--grad-whatsapp);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

/* Pulsing effect ring */
.pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: pulsate 2s infinite ease-out;
    opacity: 0;
    z-index: -1;
}

@keyframes pulsate {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 44px;
    }

    .about-container,
    .contact-container {
        gap: 40px;
    }

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

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

@media (max-width: 768px) {

    /* Navigation */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0a0c10;
        border-bottom: 1px solid var(--color-border);
        padding: 40px 24px;
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .nav-menu a {
        font-size: 18px;
        width: 100%;
        display: block;
    }

    .nav-menu a.btn-secondary {
        text-align: center;
        margin-top: 10px;
    }

    /* Hero */
    .hero-section {
        padding: 140px 0 60px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    /* Trust & Stats */
    .trust-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: 2;
    }

    .visual-accent-box {
        bottom: -10px;
        right: -10px;
        padding: 16px;
    }

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

    .location-map {
        height: 300px;
    }

    /* Contact & Footer */
    .contact-form-wrapper {
        padding: 24px;
    }

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

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

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}