/* Base */
body {
    background-color: #121007;
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
}
.highlight {
    color: #f0c76e;
    font-style: italic;
    text-shadow: 0 0 10px #f0c76e;
}

/* Navbar/Logo */
.nav-link, .btn-outline-warning {
    color: white;
}
.nav-link:hover {
    color: #f0c76e;
}
.btn-outline-warning:hover {
    background-color: #f0c76e;
    color: black;
}
.navbar-brand img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}
@media (max-width: 992px) {
    .navbar-brand img {
        height: 24px;
    }
}

/* Hero Section */
.hero-title {
    font-size: 6rem;
    line-height: 1.1;
    word-break: break-word;
}
.hero-subtitle {
    font-size: 2rem;
}
.hero-btn {
    min-width: 220px;
    width: auto;
    max-width: 100%;
    border-radius: 0;
    flex-shrink: 0;
    white-space: normal;
}
.video-container {
    margin-top: 80px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
}

/* Clients Grid */
.client-logo-box {
    transition: all 0.3s ease;
    overflow: hidden;
    background: #000;
}
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
}
.client-name-overlay {
    background: rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    top: 0;
    left: 0;
    text-align: center;
    padding: 1rem;
}
.client-logo-box:hover .client-name-overlay {
    opacity: 1;
}
.client-logo-box:hover .img-cover {
    opacity: 0.3;
}

/* CEO Hover Card */
.ceo-card-wrapper {
    max-width: 500px;
}
.ceo-hover-card {
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}
.ceo-image {
    transition: all 0.5s ease;
}
.ceo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ceo-hover-card:hover .ceo-overlay {
    opacity: 1;
}
.ceo-hover-card:hover .ceo-image {
    filter: brightness(0.7);
}

/* Social Icons */
.social-icons i {
    font-size: 3.5rem;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.social-icons a:hover i {
    background: #FDC109;
    border-radius: 50%;
    padding: 8px;
}
.social-icons a {
    transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
    transform: translateY(-3px);
    color: #FDC109 !important;
}

/* Location Section */
.location-section {
    display: flex;
    width: 100%;
}
.separator-line {
    width: 5px;
    background-color: #FDC109 !important;
}
.w-40 {
    width: 40%;
}
.w-60 {
    width: 60%;
}
.h-100 {
    height: 100%;
}
.object-fit-cover {
    object-fit: cover;
    object-position: center;
}

/* Contact Form */
.contact-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.contact-input:focus {
    border-color: #FDC109;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(253, 193, 9, 0.25);
}
.contact-textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 0.2em;
    border-radius: 0 !important;
    border: 1px solid #ddd;
}
.contact-checkbox:checked {
    background-color: #FDC109;
    border-color: #FDC109;
}
.contact-checkbox:focus {
    box-shadow: 0 0 0 0.25rem rgba(253, 193, 9, 0.25);
}
.contact-submit {
    background-color: #FDC109;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 !important;
    transition: all 0.3s ease;
}
.contact-submit:hover {
    background-color: #e0b000;
    transform: translateY(-2px);
}

/* Phone Button */
.phone-circle-btn {
    transition: all 0.3s ease;
    min-width: 56px;
}
.phone-hover-text {
    white-space: nowrap;
    left: calc(100% + 15px);
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    font-weight: 600;
    background: #FFF;
    padding: 8px 15px;
    border-radius: 30px;
    pointer-events: none;
}
.phone-circle-btn:hover {
    background-color: #FFF !important;
}
.phone-circle-btn:hover .phone-hover-text {
    opacity: 1;
    left: calc(100% + 10px);
}

/* Icon Hover Effects */
.icon-hover {
    transition: all 0.3s ease;
    cursor: pointer;
}
.icon-hover:hover {
    transform: translateX(5px);
    color: #f0c76e;
}

/* Utility Classes & Spacing */
.py-5 {
    padding-top: 7rem;
    padding-bottom: 7rem;
    margin-top: 60px;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
        text-align: center;
    }
    .py-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
        margin-top: 30px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .navbar .btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    .social-icons i {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    .location-section {
        flex-direction: column;
    }
    .w-40, .w-60 {
        width: 100%;
    }
    .h-100 {
        height: auto;
    }
    .video-container {
        margin-top: 2rem !important;
    }
    .contact-submit {
        width: 100%;
    }
}

/* Hero Section Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }
    .hero-section .d-flex.align-items-center {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem;
    }
    .hero-btn {
        width: 100%;
        min-width: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}
