* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
    padding: 5vw;
}

.hero-section {
    margin-bottom: 100px;
}

.giant-text {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #f5f5f7;
}

.sub-text {
    font-size: 1.2rem;
    margin-top: 20px;
    opacity: 0.5;
    max-width: 400px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.bento-item {
    background: #111111;
    border-radius: 40px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-item:hover {
    background: #1a1a1a;
    transform: scale(1.07);
    border-color: rgba(255, 255, 255, 0.2);

    animation: glowing-pulse 1.5s step-end ease-out;

    z-index: 10;
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
    transform: translateY(0px) scale(1);
}

.item-medium {
    grid-column: span 2;
    grid-row: span 1;
}
.item-small {
    grid-column: span 1;
    grid-row: span 1;
}

.content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.content span {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.3;
    font-weight: 700;
}

.content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.content p {
    opacity: 0.5;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }
    .bento-item {
        height: 300px;
    }
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(0);
    }
}

.giant-text {
    animation: revealText 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.sub-text {
    opacity: 0;
    animation: revealText 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

* {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.contact-section {
    margin-top: 100px;
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    min-height: 500px;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-btn {
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid white;
    background: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.contact-btn:hover {
    background: white;
    color: black;
}

.map-container {
    border-radius: 40px;
    overflow: hidden;
    filter: grayscale(1) invert(1) contrast(0);
    border: 1px solid black;
}

.map-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.map-wrapper.open {
    grid-template-rows: 1fr;
    margin-top: 30px;
}

.map-container {
    min-height: 0;
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    filter: grayscale(1) invert(0.9) contrast(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
    overflow: hidden;
}

.map-wrapper.open {
    grid-template-rows: 1fr;
    margin-top: 20px;
}

.map-container {
    min-height: 0;
    height: 400px;
}

.map-fixed-container {
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    filter: grayscale(6) invert(0) contrast(2);
    border: 10px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    border-color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
}

.icon-circle:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
}

.phone-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    width: fit-content;
    min-width: 200px;
}

.phone-header {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
}

.phone-content {
    display: grid;
    padding: 0 25px;
}

.phone-box.open .phone-content {
    grid-template-rows: 1fr;
    padding: 15px 25px;
}

.phone-content p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 5px 0;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
}

.social-wrapper {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

.call-btn {
    display: inline-flex;
    flex-direction: column;
    background: #fff;
    color: #000;
    padding: 20px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: glowing-pulse 2s infinite ease-in-out;

    -webkit-box-shadow: 0px 0px 47px 9px rgba(177, 177, 177, 1);
    -moz-box-shadow: 0px 0px 47px 9px rgba(204, 204, 204, 1);
    box-shadow: 0px 0px 40px 11px rgba(204, 204, 204, 1);
}

.btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.6;
}

.call-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .map-container {
        height: 300px;
        border-radius: 25px;
    }

    .call-btn {
        width: 100%;
        text-align: center;
    }
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.4rem;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon i {
    color: #ffffff !important;
}

.social-icon:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: translateY(-5px);
}

.social-icon:hover i {
    color: #000000 !important;
}

@keyframes glowing-pulse {
    0% {
        box-shadow: 0px 0px 20px 2px rgba(204, 204, 204, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0px 0px 50px 12px rgba(204, 204, 204, 0.8);
        transform: scale(1.01);
    }
    100% {
        box-shadow: 0px 0px 20px 2px rgba(204, 204, 204, 0.4);
        transform: scale(1);
    }
}

@keyframes glowing-pulse {
    0% {
        box-shadow: 0px 0px 15px 5px rgba(204, 204, 204, 0.3);
    }
    50% {
        box-shadow: 0px 0px 40px 10px rgba(204, 204, 204, 0.7);
    }
    100% {
        box-shadow: 0px 0px 15px 5px rgba(204, 204, 204, 0.3);
    }
}
