/* Container, nav, and footer layouts */
.container {
    width: min(1200px, 100% - 48px);
    margin: 0 auto;
}

#header-placeholder {
    min-height: 96px;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(254, 247, 255, 0.95);
    border-bottom: 1px solid rgba(25, 25, 30, 0.05);
    backdrop-filter: blur(18px);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    animation: headerFadeIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    min-width: 550px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
    color: var(--offer-color-text);
    font-weight: 500;
    font-size: 20px;
    padding: 12.5px 15px;
    transition: all 0.2s ease-in-out;
    border-radius: 12.5px;
}

.nav-link:hover {
    color: var(--offer-color-primary-hover);
    background-color: rgba(26, 115, 232, 0.10);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--offer-color-text);
}

.logo img {
    width: 4rem;
    height: auto;
}

.logo .material-symbols-outlined {
    font-size: 26px;
    color: var(--color-primary);
}

.brand-text {
    font-size: 20px;
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav-actions-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(66, 133, 244, 0.25);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-primary);
    backdrop-filter: blur(6px);
}

.nav-actions-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.2);
}

.nav-actions-toggle .material-symbols-outlined {
    font-size: 22px;
}

.footer {
    background: linear-gradient(180deg,
            rgba(248, 250, 252, 0.98) 0%,
            rgba(241, 245, 249, 1) 100%);
    color: var(--offer-color-text);
    padding: 4rem 2rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(66, 133, 244, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(66, 133, 244, 0.3),
            rgba(52, 168, 83, 0.3),
            rgba(251, 188, 4, 0.3),
            rgba(234, 67, 53, 0.3),
            transparent);
}

[data-color-scheme="dark"] .footer {
    background: linear-gradient(180deg,
            rgba(10, 15, 26, 0.95) 0%,
            rgba(5, 10, 20, 0.98) 100%);
    border-top-color: rgba(138, 180, 248, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 2rem;
}

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

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

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(66, 133, 244, 0.15));
    transition: transform 0.3s ease;
}

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

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--offer-color-primary);
    font-family: 'Google Sans', sans-serif;
}

.footer-section p {
    color: var(--offer-color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-location {
    margin-top: 1.15rem;
}

.footer-section .footer-location-title {
    margin: 0 0 0.7rem;
}

.footer-map-widget {
    width: 100%;
    max-width: 270px;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(66, 133, 244, 0.14);
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(52, 168, 83, 0.06));
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.08);
}

.footer-map {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: saturate(0.92) contrast(0.95);
}

.footer-section .footer-address {
    max-width: 270px;
    margin-top: 0.35rem;
    margin-bottom: 0;
    color: rgba(95, 99, 104, 0.48);
    font-size: 0.72rem;
    line-height: 1.25;
}

[data-color-scheme="dark"] .footer-map-widget {
    border-color: rgba(138, 180, 248, 0.16);
    background: linear-gradient(135deg, rgba(138, 180, 248, 0.12), rgba(52, 168, 83, 0.08));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

[data-color-scheme="dark"] .footer-map {
    filter: saturate(0.8) contrast(0.9) brightness(0.86);
}

[data-color-scheme="dark"] .footer-section .footer-address {
    color: rgba(230, 225, 229, 0.38);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li a {
    color: var(--offer-color-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--offer-color-primary);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--offer-color-primary);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

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

[data-color-scheme="dark"] .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: var(--offer-color-text-secondary);
    font-size: 0.875rem;
}

.footer-builders-trigger {
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: var(--offer-color-text-secondary);
    cursor: pointer;
    display: inline-block;
    font: inherit;
    line-height: inherit;
    position: relative;
    transition: all 0.3s ease;
}

.footer-builders-trigger::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--offer-color-primary);
    transition: width 0.3s ease;
}

.footer-builders-trigger:hover,
.footer-builders-trigger:focus-visible {
    color: var(--offer-color-primary);
    outline: none;
}

.footer-builders-trigger:hover::after,
.footer-builders-trigger:focus-visible::after {
    width: 100%;
}

.builders-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.builders-modal-overlay.active {
    display: flex;
    animation: buildersOverlayFadeIn 0.3s ease-out forwards;
}

.builders-modal-container {
    width: min(920px, 100%);
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
    border: 1px solid rgba(66, 133, 244, 0.2);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.16),
        0 20px 40px rgba(66, 133, 244, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: buildersModalPopIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-color-scheme="dark"] .builders-modal-container {
    background: linear-gradient(145deg, rgba(17, 25, 40, 0.96), rgba(17, 25, 40, 0.92));
    border-color: rgba(138, 180, 248, 0.25);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(66, 133, 244, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.builders-modal-content {
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.builders-modal-content::-webkit-scrollbar {
    display: none;
}

.builders-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(66, 133, 244, 0.05));
    border: 1px solid rgba(66, 133, 244, 0.2);
    color: var(--gdg-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-color-scheme="dark"] .builders-modal-close {
    background: linear-gradient(135deg, rgba(138, 180, 248, 0.15), rgba(138, 180, 248, 0.08));
    border-color: rgba(138, 180, 248, 0.25);
    color: #8AB4F8;
}

.builders-modal-close:hover,
.builders-modal-close:focus-visible {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.15), rgba(234, 67, 53, 0.08));
    border-color: rgba(234, 67, 53, 0.3);
    color: var(--gdg-red);
    outline: none;
    transform: scale(1.05) rotate(90deg);
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.2);
}

[data-color-scheme="dark"] .builders-modal-close:hover,
[data-color-scheme="dark"] .builders-modal-close:focus-visible {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.2), rgba(234, 67, 53, 0.1));
    color: #f87171;
}

.builders-modal-close .material-symbols-outlined {
    font-size: 22px;
}

.builders-modal-header {
    padding: 40px 40px 26px;
    text-align: center;
    border-bottom: 1px solid rgba(66, 133, 244, 0.1);
    background: linear-gradient(to bottom, rgba(66, 133, 244, 0.05), transparent);
}

[data-color-scheme="dark"] .builders-modal-header {
    border-bottom-color: rgba(138, 180, 248, 0.12);
    background: linear-gradient(to bottom, rgba(66, 133, 244, 0.08), transparent);
}

.builders-modal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.12), rgba(52, 168, 83, 0.08));
    border: 1px solid rgba(66, 133, 244, 0.2);
    color: var(--gdg-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

[data-color-scheme="dark"] .builders-modal-badge {
    background: linear-gradient(135deg, rgba(138, 180, 248, 0.18), rgba(52, 168, 83, 0.12));
    border-color: rgba(138, 180, 248, 0.25);
    color: #8AB4F8;
}

.builders-modal-title {
    margin: 0;
    color: var(--offer-color-text);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
}

.builders-modal-subtitle {
    max-width: 560px;
    margin: 10px auto 0;
    color: var(--offer-color-text-secondary);
    font-size: 14px;
}

.builders-modal-members {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 30px 40px 42px;
}

.builders-modal-member {
    min-width: 0;
    min-height: 154px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(66, 133, 244, 0.18);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
    box-shadow:
        0 8px 32px rgba(66, 133, 244, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    transition:
        transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.35s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.builders-modal-member::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 20% 20%, rgba(66, 133, 244, 0.07), transparent 52%),
        radial-gradient(circle at 85% 80%, rgba(52, 168, 83, 0.06), transparent 52%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.builders-modal-member::after {
    content: '';
    position: absolute;
    inset: -45% 45% 65% -30%;
    background: linear-gradient(
        135deg,
        rgba(66, 133, 244, 0.12),
        rgba(255, 255, 255, 0.4),
        rgba(52, 168, 83, 0.08)
    );
    opacity: 0;
    filter: blur(20px);
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.builders-modal-member:hover,
.builders-modal-member:focus-within {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(66, 133, 244, 0.45);
    box-shadow:
        0 18px 42px rgba(66, 133, 244, 0.16),
        0 8px 22px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.builders-modal-member:hover::before,
.builders-modal-member:hover::after,
.builders-modal-member:focus-within::before,
.builders-modal-member:focus-within::after {
    opacity: 1;
}

[data-color-scheme="dark"] .builders-modal-member {
    background: linear-gradient(145deg, rgba(17, 25, 40, 0.92), rgba(17, 25, 40, 0.78));
    border-color: rgba(66, 133, 244, 0.16);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 3px 12px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-color-scheme="dark"] .builders-modal-member::before {
    background:
        radial-gradient(circle at 20% 20%, rgba(66, 133, 244, 0.08), transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(52, 168, 83, 0.05), transparent 50%);
}

[data-color-scheme="dark"] .builders-modal-member:hover,
[data-color-scheme="dark"] .builders-modal-member:focus-within {
    background: linear-gradient(145deg, rgba(17, 25, 40, 0.94), rgba(17, 25, 40, 0.84));
    border-color: rgba(138, 180, 248, 0.34);
    box-shadow:
        0 14px 28px rgba(66, 133, 244, 0.14),
        0 6px 18px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.builders-modal-logo {
    width: 76px;
    height: 76px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid rgba(66, 133, 244, 0.2);
    filter: drop-shadow(0 8px 16px rgba(66, 133, 244, 0.15));
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, filter 0.3s ease;
}

.builders-modal-member:hover .builders-modal-logo,
.builders-modal-member:focus-within .builders-modal-logo {
    transform: scale(1.08) translateY(-2px);
    border-color: rgba(66, 133, 244, 0.4);
    filter: drop-shadow(0 12px 24px rgba(66, 133, 244, 0.25));
}

[data-color-scheme="dark"] .builders-modal-logo {
    border-color: rgba(138, 180, 248, 0.25);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
}

.builders-modal-member-content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.builders-modal-member-name,
.builders-modal-member-role {
    display: block;
}

.builders-modal-member-name {
    color: var(--offer-color-text);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease, transform 0.3s ease;
}

.builders-modal-member:hover .builders-modal-member-name,
.builders-modal-member:focus-within .builders-modal-member-name {
    color: var(--gdg-blue);
    transform: translateY(-1px);
}

[data-color-scheme="dark"] .builders-modal-member:hover .builders-modal-member-name,
[data-color-scheme="dark"] .builders-modal-member:focus-within .builders-modal-member-name {
    color: #8AB4F8;
}

.builders-modal-member-role {
    margin: 0;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(66, 133, 244, 0.15);
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.08));
    color: var(--gdg-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-transform: uppercase;
}

[data-color-scheme="dark"] .builders-modal-member-role {
    background: linear-gradient(135deg, rgba(138, 180, 248, 0.15), rgba(52, 168, 83, 0.1));
    border-color: rgba(138, 180, 248, 0.2);
    color: #8AB4F8;
}

.builders-socials {
    width: 100%;
    display: flex;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(66, 133, 244, 0.08);
}

[data-color-scheme="dark"] .builders-socials {
    border-color: rgba(138, 180, 248, 0.1);
}

.builders-social-link {
    --social-accent: var(--gdg-blue);
    --social-accent-rgb: var(--gdg-blue-rgb);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(52, 168, 83, 0.05));
    color: var(--social-accent);
    border: 1px solid rgba(66, 133, 244, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.builders-social-link svg {
    width: 16px;
    height: 16px;
}

.builders-social-link[data-network="gmail"] svg {
    width: 18px;
    height: 14px;
}

.builders-social-link .material-symbols-outlined {
    font-size: 18px;
}

.builders-social-link[data-network="linkedin"] {
    --social-accent: #0a66c2;
    --social-accent-rgb: 10, 102, 194;
}

.builders-social-link[data-network="github"] {
    --social-accent: #24292f;
    --social-accent-rgb: 36, 41, 47;
}

.builders-social-link[data-network="gmail"] {
    --social-accent: #ea4335;
    --social-accent-rgb: 234, 67, 53;
}

.builders-social-link:hover,
.builders-social-link:focus-visible {
    background: linear-gradient(135deg, rgba(var(--social-accent-rgb), 0.15), rgba(var(--social-accent-rgb), 0.08));
    border-color: rgba(var(--social-accent-rgb), 0.35);
    box-shadow:
        0 8px 20px rgba(var(--social-accent-rgb), 0.25),
        0 4px 8px rgba(0, 0, 0, 0.08);
    outline: none;
    transform: translateY(-3px) scale(1.1);
}

.builders-social-link[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.42;
}

.builders-social-link[aria-disabled="true"]:hover,
.builders-social-link[aria-disabled="true"]:focus-visible {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(52, 168, 83, 0.05));
    border-color: rgba(66, 133, 244, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transform: none;
}

[data-color-scheme="dark"] .builders-social-link {
    background: linear-gradient(135deg, rgba(138, 180, 248, 0.08), rgba(52, 168, 83, 0.05));
    border-color: rgba(138, 180, 248, 0.12);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

[data-color-scheme="dark"] .builders-social-link[data-network="github"] {
    --social-accent: #f0f6fc;
    --social-accent-rgb: 240, 246, 252;
}

[data-color-scheme="dark"] .builders-social-link:hover,
[data-color-scheme="dark"] .builders-social-link:focus-visible {
    background: linear-gradient(135deg, rgba(var(--social-accent-rgb), 0.14), rgba(var(--social-accent-rgb), 0.07));
    border-color: rgba(var(--social-accent-rgb), 0.28);
    box-shadow:
        0 6px 14px rgba(var(--social-accent-rgb), 0.14),
        0 4px 8px rgba(0, 0, 0, 0.16);
}

@keyframes buildersOverlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-links a {
    --social-accent: var(--color-primary);
    --social-accent-rgb: 66, 133, 244;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(52, 168, 83, 0.05));
    color: var(--social-accent);
    border: 1px solid rgba(66, 133, 244, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.social-links a[data-network="instagram"] {
    --social-accent: #e1306c;
    --social-accent-rgb: 225, 48, 108;
}

.social-links a[data-network="x"],
.social-links a[data-network="medium"] {
    --social-accent: #111111;
    --social-accent-rgb: 17, 17, 17;
}

.social-links a[data-network="linkedin"] {
    --social-accent: #0a66c2;
    --social-accent-rgb: 10, 102, 194;
}

.social-links a[data-network="whatsapp"] {
    --social-accent: #25d366;
    --social-accent-rgb: 37, 211, 102;
}

.social-links a:hover {
    background: linear-gradient(135deg, rgba(var(--social-accent-rgb), 0.15), rgba(var(--social-accent-rgb), 0.08));
    border-color: rgba(var(--social-accent-rgb), 0.35);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(var(--social-accent-rgb), 0.25);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

[data-color-scheme="dark"] .social-links a {
    background: linear-gradient(135deg, rgba(138, 180, 248, 0.12), rgba(52, 168, 83, 0.08));
    border-color: rgba(138, 180, 248, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

[data-color-scheme="dark"] .social-links a[data-network="x"],
[data-color-scheme="dark"] .social-links a[data-network="medium"] {
    --social-accent: #f5f5f5;
    --social-accent-rgb: 245, 245, 245;
}

[data-color-scheme="dark"] .social-links a:hover {
    background: linear-gradient(135deg, rgba(var(--social-accent-rgb), 0.2), rgba(var(--social-accent-rgb), 0.1));
    border-color: rgba(var(--social-accent-rgb), 0.4);
}

.social-links a[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.65;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1rem;
    }

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

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

    .footer-logos {
        justify-content: center;
    }

    .footer-map-widget,
    .footer-address {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .builders-modal-overlay {
        padding: 16px;
    }

    .builders-modal-header {
        padding: 34px 24px 22px;
    }

    .builders-modal-title {
        font-size: 22px;
    }

    .builders-modal-members {
        grid-template-columns: 1fr;
        padding: 22px 24px 28px;
    }

    .builders-modal-member {
        align-items: center;
        text-align: center;
    }

    .builders-modal-member-content {
        align-items: center;
    }

    .builders-socials {
        justify-content: center;
    }

}

@media (max-width: 520px) {
    .builders-modal-member {
        flex-direction: column;
    }
}

[data-color-scheme="dark"] .navbar {
    background: rgba(12, 16, 24, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-color-scheme="dark"] .logo {
    color: #E6E1E5;
}

[data-color-scheme="dark"] .nav-actions-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #E6E1E5;
}

[data-color-scheme="dark"] .footer {
    border-top-color: rgba(255, 255, 255, 0.12);
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .nav-links {
        min-width: unset;
        gap: 8px;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px;
    }

    .brand-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        padding: 10px 0;
        gap: 8px;
    }

    .nav-brand {
        flex: 1;
        min-width: 35%;
    }

    .nav-actions {
        flex: 1;
        justify-content: flex-end;
    }

    .nav-links {
        width: 100%;
        order: 3;
        overflow-x: auto;
        padding: 0 12px 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        display: flex;
        justify-content: center;
        gap: 4px;
        scroll-padding-inline: 12px;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        font-size: 14px;
        white-space: nowrap;
        padding: 7px 10px;
        border-radius: 10px;
    }

    .nav-links .brand-text {
        font-size: inherit;
        font-weight: 600;
    }

    .logo img {
        width: 2rem;
    }

    .nav-actions-toggle {
        width: 34px;
        height: 34px;
        margin-right: 0;
    }

    .nav-actions-toggle .material-symbols-outlined {
        font-size: 18px;
    }

    .nav-actions .btn-primary span:last-child {
        display: none;
        /* Hide button text on mobile */
    }

    .nav-actions .btn-primary {
        padding: 0;
        border-radius: 50%;
        min-width: unset;
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    #header-placeholder {
        min-height: 112px;
    }
}

@media (max-width: 480px) {
    .nav-brand .brand-text {
        font-size: 15px;
    }

    .logo img {
        width: 2rem;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-link {
        font-size: 13px;
        padding: 7px 9px;
    }
}
