/* ===================================================== */
/* GLOBAL THEME COLORS */
/* ===================================================== */
:root {
    --primary-black: #0E0E0E;
    --charcoal: #1A1A1A;
    --gold: #C89B3C;
    --light-gold: #E0B84F;
    --light-gray: #f5f5f5;
}

/* Global */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--primary-black);
    color: white;
}

.section-padding {
    padding: 100px 0;
}

.section-eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

/* ===================================================== */
/* HERO SECTION */
/* ===================================================== */

.hero-section {
    height: 100vh;
    min-height: 700px;
    background: url('images/hero-background.png') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content-inner {
    padding-top: 100px;
    /* Prevent overlap with fixed navbar */
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-top: 20px;
    line-height: 1.6;
}

.hero-content span {
    color: var(--gold);
}

.btn-gold {
    background-color: var(--gold);
    color: black;
    border: none;
}

.hero-buttons .btn {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--light-gold);
}

/* ===================================================== */
/* NAVBAR */
/* ===================================================== */

.custom-navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

/* ===================================================== */
/* RESPONSIVE - HERO MOBILE FIX */
/* ===================================================== */

@media (max-width: 992px) {

    #hero-section {
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
    }

    #hero-section {
        align-items: center;
        padding: 60px 20px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .nav-item {
        margin-top: 7px;
        margin-bottom: 7px;
    }

    .nav-item:last-child {
        margin-left: 0 !important;
    }

}

/* ===================================================== */
/* ABOUT SECTION - REFINED */
/* ===================================================== */

.about-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
    position: relative;
}

.about-wrapper {
    background: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Content */
.about-content {
    padding-right: 20px;
}

.about-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content h2 {
    color: #555;
}

/* Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: #fafafa;
    padding: 14px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item i {
    font-size: 18px;
    color: var(--gold);
    margin-right: 12px;
}

.highlight-item span {
    font-weight: 500;
    color: #333;
}

.highlight-item:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
}

/* Image Styling */
.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: 16px;
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Subtle Decorative Accent */
.about-image-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
}

/* ===================================================== */
/* RESPONSIVE - ABOUT SECTION */
/* ===================================================== */

@media (max-width: 992px) {

    .about-wrapper {
        padding: 40px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 350px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {

    .about-wrapper {
        padding: 30px 20px;
    }

    .about-img {
        height: 280px;
    }
}

/* ===================================================== */
/* SERVICES SECTION - REFINED */
/* ===================================================== */

.services-section {
    background: var(--charcoal);
    position: relative;
}

/* Card */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Image */
.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

/* Content */
.service-content {
    padding: 30px 25px;
    flex-grow: 1;
    position: relative;
}

/* Icon Badge */
.service-icon-badge {
    width: 50px;
    height: 50px;
    background: rgba(200, 155, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 18px;
}

.service-icon-badge i {
    font-size: 22px;
    color: var(--gold);
}

/* Title */
.service-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: #333
}

/* Text */
.service-text {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Link */
.service-link {
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #000;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===================================================== */
/* RESPONSIVE - SERVICES */
/* ===================================================== */

@media (max-width: 992px) {
    .service-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .service-image-wrapper {
        height: 180px;
    }

    .service-content {
        padding: 25px 20px;
    }
}

/* ===================================================== */
/* CONTACT SECTION - REFINED */
/* ===================================================== */

.contact-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
}

/* Subtext */
.contact-subtext {
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Card */
.contact-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

/* Icon Circle */
.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(200, 155, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.contact-icon-wrapper i {
    font-size: 24px;
    color: var(--gold);
}

/* Labels */
.contact-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-value {
    color: #555;
    margin: 0;
}

/* Social Icons */
.social-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    background: var(--gold);
    color: #ffffff;
    transform: translateY(-4px);
}

/* .section-title.contact {
    color: #333;
    text-align: center;
    margin-bottom: 15px;
} */

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media (max-width: 992px) {
    .contact-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .contact-subtext {
        font-size: 14px;
    }
}

/* ===================================================== */
/* FOOTER - REFINED */
/* ===================================================== */

.footer-section {
    background: #0E0E0E;
    color: #ccc;
    padding: 80px 0 40px;
    font-size: 14px;
}

/* Headings */
.footer-heading {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Brand */
.footer-brand h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #999;
    line-height: 1.6;
}

/* Disclaimer */
.footer-disclaimer {
    color: #999;
    line-height: 1.6;
}

/* Developer */
.footer-developed a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-developed a:hover {
    color: #ffffff;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #888;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media (max-width: 768px) {

    .footer-section {
        padding: 60px 0 30px;
        text-align: center;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}


/* ===================================================== */
/* SERVICES PAGE */
/* ===================================================== */

.services-hero {
    height: 40vh;
    background: url('images/hero-background.png') center/cover no-repeat;
    background-color: #000;
    position: relative;
    padding-top: 120px;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

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

.services-detail {
    background: white;
    color: var(--primary-black);
}

.service-detail-item {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-detail-img {
    border-radius: 16px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.4);
}

.service-detail-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-content i {
    color: var(--gold);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
}

.service-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.services-cta {
    background: linear-gradient(to right, #111, #1a1a1a);
    padding: 100px 0;
    color: white;
}

.services-cta h3 {
    margin-bottom: 20px;
}

.services-cta p {
    margin-bottom: 30px;
    color: #aaa;
}

/* Responsive */

@media (max-width: 992px) {
    .services-hero {
        height: auto;
        padding: 140px 0 80px;
    }

    .service-detail-item {
        padding: 40px 0;
    }
}