
body {
    background-color: #02021c; 
    background-image: radial-gradient(circle at 10% 20%, rgba(242, 117, 8, 0.07) 0%, transparent 45%),
                      radial-gradient(circle at 90% 80%, rgba(3, 3, 55, 0.8) 0%, transparent 50%);
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', -apple-system, sans-serif;
    overflow-x: hidden;
}

.site-header {
    width: 100%;
    background: transparent ;
    padding: 30px 6% 20px 6%;
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background: transparent ;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
   text-decoration: none;
   color: #1a1a1a;
   font-weight: 600;
   font-size: 15px;
   transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a, .btn-book-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; 
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden; 
    border-radius: 30px; 
    z-index: 1;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.link-text {
    position: relative;
    z-index: 2;
    pointer-events: none; 
}

.link-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%; 
    aspect-ratio: 1 / 1;
    background: #f27508;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.hover-target:hover .link-bg {
    transform: translate(-50%, -50%) scale(1);
}

.hover-target:hover {
    color: #ffffff; 
}

.btn-book-call {
    display: inline-flex ;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    
    flex-shrink: 0;
    width: auto;
    min-width: 160px; 
    height: 48px;     

    padding: 0 24px;
    border: 2px solid #ff6a00;
    border-radius: 50px;
    background: transparent;
    color: #111111;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-book-call .link-bg {
    background: #f27508; 
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent ;
}

.header-logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-bold {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    margin-top: 4px;
}


.bento-wrapper {
    width: 92%;
    max-width: 1400px;
    margin: 80px auto;
    box-sizing: border-box;
}

.bento-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bento-header h1 {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 15px 0;
}

.bento-header p {
    font-size: 17px;
    line-height: 1.6;
    color: #a0a0c0;
    margin: 0;
}

.glow-accent-bar {
    width: 60px;
    height: 4px;
    background: #f27508;
    margin: 25px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 12px #f27508;
}

.highlight-orange {
    color: #f27508;
    text-shadow: 0 0 15px rgba(242, 117, 8, 0.3);
}


.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-auto-rows: 280px;                 
    gap: 24px;
    width: 100%;
}


.bento-card.size-square { grid-column: span 1; grid-row: span 1; }
.bento-card.size-wide   { grid-column: span 2; grid-row: span 1; }
.bento-card.size-tall   { grid-column: span 1; grid-row: span 2; }
.bento-card.size-large  { grid-column: span 2; grid-row: span 2; }


.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}


.bento-content {
    position: relative;
    z-index: 5;
    padding: 35px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.size-wide .bento-content,
.size-large .bento-content {
    flex-direction: row;
    align-items: center;
    gap: 30px;
}


.bento-card.color-light {
    background-color: rgba(255, 255, 255, 0.94);
}
.bento-card.color-light .bento-text h3 { color: #030337; }
.bento-card.color-light .bento-text p { color: #555566; }

.bento-card.color-dark {
    background-color: rgba(3, 3, 55, 0.65);
    backdrop-filter: blur(10px);
}
.bento-card.color-dark .bento-text h3 { color: #ffffff; }
.bento-card.color-dark .bento-text p { color: #a0a0b5; }


.bento-grid-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.color-light .bento-grid-texture {
    background-image: 
        linear-gradient(to right, rgba(242, 117, 8, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(242, 117, 8, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
}
.color-dark .bento-grid-texture {
    background-image: 
        linear-gradient(to right, rgba(252, 140, 48, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(252, 140, 48, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}


.bento-text {
    max-width: 100%;
    z-index: 6;
}
.bento-text h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.size-large .bento-text h3 { font-size: 34px; }
.size-large .bento-text p { font-size: 16px; line-height: 1.6; }

.bento-text p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}


.bento-media {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: auto;
    align-self: flex-end;
}
.size-wide .bento-media,
.size-large .bento-media {
    width: 200px;
    height: 200px;
    align-self: center;
    margin-top: 0;
}


.bento-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.4s ease;
}
.color-light .bento-media::before { background-color: #f27508; }
.color-dark .bento-media::before { background-color: #ffffff; }


.bento-media.shape-circle::before { border-radius: 50%; }
.bento-media.shape-square::before { border-radius: 16px; }
.bento-media.shape-triangle::before { clip-path: polygon(50% 0%, 0% 100%, 100% 100%); }
.bento-media.shape-hexagon::before { clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%); }
.bento-media.shape-shield::before { border-radius: 12px 12px 100px 100px; }
.bento-media.shape-semicircle::before { height: 50%; top: auto; bottom: 0; border-radius: 100px 100px 0 0; }
.bento-media.shape-rectangle::before { height: 75%; top: auto; bottom: 12.5%; border-radius: 12px; }
.bento-media.shape-capsule::before { height: 85%; top: auto; bottom: 7.5%; border-radius: 50px; }

.bento-gif {
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 4;
    transition: transform 0.4s ease;
}
.fallback-icon { font-size: 38px; position: relative; z-index: 5; }
.size-large .fallback-icon { font-size: 55px; }


.bento-card:hover {
    transform: translateY(-6px);
    border-color: #f27508;
    box-shadow: 0 0 25px rgba(242, 117, 8, 0.35);
}
.bento-card:hover .bento-grid-texture { opacity: 0.9; }
.bento-card:hover .bento-media::before { transform: scale(1.05) rotate(4deg); }
.bento-card:hover .bento-gif { transform: scale(1.12) translateY(-4px); }


.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1),
                transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }


@media (max-width: 1100px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
    .bento-card.size-square, .bento-card.size-wide, .bento-card.size-tall, .bento-card.size-large {
        grid-column: span 1; grid-row: span 1;
    }
    .bento-content, .size-wide .bento-content, .size-large .bento-content {
        flex-direction: column; justify-content: space-between; align-items: flex-start; padding: 25px;
    }
    .bento-media, .size-wide .bento-media, .size-large .bento-media {
        width: 100px; height: 100px; align-self: flex-end;
    }
}
@media (max-width: 650px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-header h1 { font-size: 40px; }
}


.main-footer {
    background-color: #030337;
    color: #ffffff;
    padding: 90px 6% 40px 6%;
    border-top: 2px solid #f27508;
    width: 100%;
    margin-top: 100px;
    box-sizing: border-box;
}
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; max-width: 1300px; margin: 0 auto; }
.footer-column { flex: 1; min-width: 220px; }
.footer-column h3 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 25px; color: #f27508; }
.footer-column ul { list-style-type: none; padding: 0; margin: 0; }
.footer-column ul li { font-size: 14px; line-height: 1.8; margin-bottom: 12px; color: #cccccc; }
.footer-column ul li a { color: #cccccc; text-decoration: none; transition: color 0.2s ease, transform 0.2s ease; display: inline-block; }
.footer-column ul li a:hover { color: #f27508; transform: translateX(4px); }
.location-bold-title { font-weight: bold; color: #ffffff; margin-bottom: 8px; }
.footer-brand-column { display: flex; justify-content: center; align-items: center; min-width: 320px; }
.footer-logo-box { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-logo-img { height: 110px; width: 110px; border-radius: 50%; object-fit: cover; border: 3px solid #f27508; box-shadow: 0 8px 24px rgba(242, 117, 8, 0.2); }
.footer-logo-text { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer-brand-title { font-size: 30px; font-weight: 900; color: #ffffff; letter-spacing: 2px; text-transform: uppercase; }
.footer-brand-subtitle { font-size: 14px; font-weight: 800; color: #f27508; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-bottom { max-width: 1300px; margin: 60px auto 0 auto; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.08); text-align: center; }
.footer-bottom p { color: #777788; font-size: 13px; margin: 0; }
@media (max-width: 768px) { .footer-container { flex-direction: column; gap: 35px; } .footer-brand-column { justify-content: flex-start; min-width: 100%; } }

@media (max-width: 768px) {
    
    .site-header {
        height: auto ;
        min-height: auto ;
        position: relative ; 
        padding: 15px 0 ;
        background: #ffffff; 
    }

    
    .header-container {
        flex-direction: column ;
        align-items: center ;
        justify-content: center ;
        gap: 15px ;
        width: 100% ;
        max-width: 100% ;
        padding: 0 15px ;
        box-sizing: border-box ;
    }

    
    .site-logo {
        margin-bottom: 5px;
    }

    
    .main-nav {
        flex-direction: column ;
        width: 100% ;
        gap: 15px ;
        align-items: center ;
    }

    
    .nav-links {
        display: flex ;
        flex-direction: row ;
        flex-wrap: wrap ;
        justify-content: center ;
        gap: 10px 20px ;
        width: 100% ;
    }

    .nav-links a {
        padding: 5px 10px ;
    }

   
    .btn-book-call {
        display: inline-block ;
        margin-top: 5px;
        width: auto ;
        white-space: nowrap ;
    }
}