/* ========================================================
   JALILEH — LUXURY BLACK & GOLD DESIGN SYSTEM
   Premium styling with #0a0a0a (black) + #c5a059 (gold)
   ======================================================== */

:root {
    --jalileh-gold: #c5a059;
    --jalileh-gold-light: #d9b574;
    --jalileh-gold-dark: #9b7b3f;
    --jalileh-black: #0a0a0a;
    --jalileh-charcoal: #141414;
    --jalileh-card: #1a1a1a;
    --jalileh-text: #e8e8e8;
    --jalileh-text-muted: #a8a8a8;
    --jalileh-border: rgba(197, 160, 89, 0.2);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #d9b574 50%, #c5a059 100%);
    --shadow-gold: 0 10px 40px rgba(197, 160, 89, 0.15);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--jalileh-black);
    color: var(--jalileh-text);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Override default body constraints */
body {
    max-width: 100% !important;
    font-family: 'Poppins', sans-serif;
    color: var(--jalileh-text);
}

/* ========================================================
   HERO / WELCOME SECTION
   ======================================================== */
.welcome-hero {
    position: relative;
    background: url(../images/backgrounds/jalileh_background_landing.png) no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.welcome-hero:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

/* Decorative gold corner accents — removed per design request */

.welcome-hero-txt {
    text-align: center;
    padding: 120px 20px;
    position: relative;
    z-index: 2;
}

.welcome-hero-txt h2 {
    font-family: 'Rufina', serif;
    font-size: 90px;
    color: var(--jalileh-gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 12px;
    text-shadow: 0 0 40px rgba(197, 160, 89, 0.3);
    position: relative;
    display: inline-block;
}

/* Decorative gold line under title */
.welcome-hero-txt h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 25px auto 0;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.welcome-hero-txt p {
    font-size: 22px;
    color: var(--jalileh-text);
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 6px;
    opacity: 0.9;
}

/* Subtle floating animation for hero — disabled per design request */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Animation removed so the JALILEH title stays still and visible. */

/* ========================================================
   SERVICE SECTION — Sovereign Family Enterprise
   ======================================================== */
.service {
    position: relative;
    background: url(../images/backgrounds/background5.png) no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
    padding: 100px 0;
}

.service:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 0;
}

.service .container {
    position: relative;
    z-index: 1;
}

.single-service-item {
    margin-top: 30px;
    text-align: center;
    padding: 60px 30px 65px;
    border-radius: 0;
    margin-bottom: 30px;
    border: 1px solid var(--jalileh-border);
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Gold corner accent that appears on hover */
.single-service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 2px solid var(--jalileh-gold);
    border-left: 2px solid var(--jalileh-gold);
    transition: var(--transition);
    opacity: 0;
}

.single-service-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 2px solid var(--jalileh-gold);
    border-right: 2px solid var(--jalileh-gold);
    transition: var(--transition);
    opacity: 0;
}

.single-service-item:hover {
    background: rgba(20, 20, 20, 0.8);
    border-color: var(--jalileh-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.single-service-item:hover::before,
.single-service-item:hover::after {
    width: 30px;
    height: 30px;
    opacity: 1;
}

.single-service-icon {
    display: inline-block;
    color: var(--jalileh-gold);
    margin-bottom: 10px;
    transition: var(--transition);
}

.single-service-item:hover .single-service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.5));
}

.single-service-item h2 a {
    font-family: 'Rufina', serif;
    font-size: 22px;
    color: var(--jalileh-gold);
    margin: 30px 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.single-service-item p {
    color: var(--jalileh-text-muted);
    font-size: 15px;
    line-height: 1.8;
    padding-bottom: 0;
    font-weight: 300;
}

.single-service-item p::before {
    display: none; /* Remove old decorative line */
}

/* Remove the old ::before accent line on p */
.single-service-item p:before {
    display: none !important;
}

/* ========================================================
   OWNER PROFILES — Vertikalni Stack
   ======================================================== */
.owner-info {
    position: relative;
    background: url(../images/backgrounds/background3.png) no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
    padding: 100px 0 80px;
}

.owner-info:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.88) 100%);
    z-index: 0;
}

.owner-info .container {
    position: relative;
    z-index: 1;
}

/* Section header */
.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section-heading h2 {
    font-family: 'Rufina', serif;
    font-size: 48px;
    color: var(--jalileh-gold);
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(197, 160, 89, 0.2);
}

.section-heading .gold-divider {
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 20px;
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.5);
}

.section-heading p {
    color: var(--jalileh-text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
}

/* Profile card — left image, right text */
.profile-card {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 50px 0;
    margin-bottom: 30px;
    border-top: 1px solid var(--jalileh-border);
    position: relative;
    transition: var(--transition);
}

.profile-card:last-child {
    border-bottom: 1px solid var(--jalileh-border);
    margin-bottom: 0;
}

.profile-card:hover {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.04) 0%, transparent 100%);
    padding-left: 25px;
}

/* Image container with gold frame */
.profile-image {
    flex-shrink: 0;
    position: relative;
    width: 320px;
    height: 380px;
    overflow: hidden;
    border: 1px solid var(--jalileh-gold);
    box-shadow: var(--shadow-gold);
}

.profile-image::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    z-index: 2;
    pointer-events: none;
    transition: var(--transition);
}

.profile-card:hover .profile-image::before {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-color: var(--jalileh-gold);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: var(--transition);
}

.profile-card:hover .profile-image img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

/* Profile content */
.profile-content {
    flex: 1;
    color: var(--jalileh-text);
}

.profile-content .profile-number {
    font-family: 'Rufina', serif;
    font-size: 14px;
    color: var(--jalileh-gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.profile-content .profile-name {
    font-family: 'Rufina', serif;
    font-size: 36px;
    color: var(--jalileh-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 600;
}

.profile-content .profile-title {
    font-size: 13px;
    color: var(--jalileh-gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 500;
}

.profile-content .profile-company {
    font-size: 12px;
    color: var(--jalileh-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--jalileh-border);
}

.profile-content .profile-bio {
    font-size: 15px;
    line-height: 1.9;
    color: var(--jalileh-text-muted);
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 700px;
}

.profile-content .profile-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--jalileh-text);
    font-weight: 300;
    letter-spacing: 1px;
}

.profile-content .profile-contact a {
    color: var(--jalileh-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.profile-content .profile-contact a:hover {
    color: var(--jalileh-gold-light);
    letter-spacing: 2px;
}

.profile-content .profile-contact i {
    color: var(--jalileh-gold);
    margin-right: 10px;
    width: 16px;
}

/* ========================================================
   ABOUT US / ADVISORY
   ======================================================== */
.about-us {
    position: relative;
    background: url(../images/backgrounds/background6.png) no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.about-us::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.88) 100%);
    z-index: 0;
}

.about-us-top {
    position: relative;
    z-index: 1;
    padding: 80px 0 50px;
    text-align: center;
    border-bottom: 1px solid var(--jalileh-border);
    margin-bottom: 50px;
}

.about-us-logo a,
.about-us-logo a:hover,
.about-us-logo a:focus {
    display: inline-block;
    color: var(--jalileh-gold);
    font-family: 'Rufina', serif;
    font-size: 32px;
    letter-spacing: 6px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0 0 25px rgba(197, 160, 89, 0.2);
}

.jalileh-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 100px;
    max-width: 800px;
    margin: 0 auto;
}

.intro-row {
    margin-bottom: 3rem;
    text-align: center;
}

.intro-row p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--jalileh-text-muted);
    margin: 0 0 1rem;
    font-weight: 300;
}

.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 30px;
}

.pillar-card {
    border: none;
    border-top: 1px solid var(--jalileh-border);
    border-radius: 0;
    padding: 1.8rem 0;
    background: transparent;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.pillar-card:last-child {
    border-bottom: 1px solid var(--jalileh-border);
}

.pillar-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.pillar-card:hover {
    background: rgba(197, 160, 89, 0.04);
    padding-left: 30px;
}

.pillar-card:hover::before {
    width: 20px;
}

.pillar-title {
    font-family: 'Rufina', serif;
    font-size: 22px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.75rem;
    color: var(--jalileh-gold) !important;
}

.pillar-body {
    font-size: 15px !important;
    line-height: 1.7;
    margin: 0;
    color: var(--jalileh-text-muted) !important;
    font-weight: 300;
}

/* ========================================================
   FOOTER / CONTACT
   ======================================================== */
.contact {
    position: relative;
    background: url(../images/backgrounds/background1.png) no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
    border-top: 1px solid var(--jalileh-border);
}

.contact:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 80px 0 30px;
}

.footer-logo a,
.footer-logo a:hover,
.footer-logo a:focus {
    display: inline-block;
    color: var(--jalileh-gold);
    font-family: 'Rufina', serif;
    font-size: 36px !important;
    letter-spacing: 6px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(197, 160, 89, 0.2);
}

.single-footer-widget p {
    color: var(--jalileh-text-muted);
    font-size: 14px;
    max-width: 650px;
    margin: 25px 0 20px;
    font-weight: 300;
    line-height: 1.8;
}

.single-footer-widget h2 {
    font-size: 12px;
    color: var(--jalileh-gold);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: 500;
}

.footer-contact p {
    margin: 0;
    color: var(--jalileh-text);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-contact a {
    color: var(--jalileh-gold) !important;
    transition: var(--transition-fast);
    font-size: 14px !important;
}

.footer-contact a:hover {
    color: var(--jalileh-gold-light) !important;
    letter-spacing: 2px;
}

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

.footer-locations li {
    font-size: 13px;
    color: var(--jalileh-text-muted);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--jalileh-border);
    line-height: 1.6;
    font-weight: 300;
}

.footer-locations li:last-child {
    border-bottom: none;
}

.location-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--jalileh-gold);
    margin-bottom: 4px;
    font-weight: 500;
}

.footer-copyright {
    padding: 25px 0 20px;
    border-top: 1px solid var(--jalileh-border);
    margin-top: 40px;
}

.footer-copyright p,
.footer-copyright p a {
    color: var(--jalileh-text-muted) !important;
    font-size: 13px;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.footer-copyright a {
    color: var(--jalileh-gold) !important;
    transition: var(--transition-fast);
}

.footer-copyright a:hover {
    color: var(--jalileh-gold-light) !important;
}

.footer-social {
    text-align: right;
}

.footer-social a i {
    color: var(--jalileh-gold) !important;
    opacity: 0.6;
    font-size: 16px !important;
    margin-left: 18px;
    transition: var(--transition-fast);
    width: 36px;
    height: 36px;
    border: 1px solid var(--jalileh-border);
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.footer-social a i:hover {
    opacity: 1;
    border-color: var(--jalileh-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ========================================================
   SCROLL TO TOP — Luxury gold
   ======================================================== */
#scroll-Top .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 48px;
    line-height: 48px;
    height: 48px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--jalileh-black);
    background: var(--gold-gradient);
    border: 1px solid var(--jalileh-gold);
    border-radius: 0;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

#scroll-Top .return-to-top:hover {
    background: transparent;
    color: var(--jalileh-gold);
    border-color: var(--jalileh-gold);
    transform: translateY(-3px);
}

#scroll-Top .return-to-top i {
    position: relative;
    animation-name: example;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}

@keyframes example {
    0%   { bottom: 0; }
    100% { bottom: 6px; }
}

/* ========================================================
   RESPONSIVE — Mobiteli i tableti
   ======================================================== */
@media (max-width: 991px) {
    .welcome-hero-txt {
        padding: 80px 20px;
    }
    .welcome-hero-txt h2 {
        font-size: 56px;
        letter-spacing: 8px;
    }
    .welcome-hero-txt p {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .section-heading h2 {
        font-size: 36px;
        letter-spacing: 5px;
    }

    /* Profile card goes vertical */
    .profile-card {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .profile-content {
        text-align: center;
    }

    .profile-content .profile-bio {
        margin: 0 auto 30px;
    }

    .profile-content .profile-contact {
        align-items: center;
    }

    .profile-image {
        width: 280px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .container,
    section,
    .welcome-hero,
    .service,
    .owner-info,
    .about-us,
    .contact {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    .welcome-hero {
        min-height: 80vh;
    }

    .welcome-hero-txt h2 {
        font-size: 42px !important;
        letter-spacing: 5px !important;
    }

    .welcome-hero-txt p {
        font-size: 16px !important;
        letter-spacing: 3px !important;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 28px !important;
        letter-spacing: 3px !important;
    }

    .profile-card {
        padding: 35px 0;
        gap: 25px;
    }

    .profile-card:hover {
        padding-left: 0;
    }

    .profile-image {
        width: 240px;
        height: 290px;
    }

    .profile-content .profile-name {
        font-size: 28px;
    }

    .single-service-item {
        padding: 40px 20px 45px !important;
    }

    .about-us-top {
        padding: 50px 15px 30px !important;
    }

    .about-us-logo a {
        font-size: 22px !important;
        letter-spacing: 3px !important;
    }

    .jalileh-wrap {
        padding: 0 15px 60px !important;
        max-width: 100% !important;
    }

    .footer-top {
        padding: 50px 0 10px !important;
        text-align: center;
    }

    .single-footer-widget {
        text-align: center;
    }

    .footer-social {
        text-align: center !important;
        margin-top: 20px !important;
    }

    .footer-social a i {
        margin: 0 8px !important;
    }

    #scroll-Top .return-to-top {
        right: 15px !important;
        bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .welcome-hero-txt h2 {
        font-size: 32px !important;
    }

    .welcome-hero-txt p {
        font-size: 14px !important;
    }

    .profile-image {
        width: 220px;
        height: 260px;
    }
}

/* ========================================================
   ANIMATIONS — Scroll reveal
   ======================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card,
.single-service-item,
.pillar-card {
    animation: fadeInUp 0.8s ease-out backwards;
}

.profile-card:nth-child(1) { animation-delay: 0.1s; }
.profile-card:nth-child(2) { animation-delay: 0.3s; }
.profile-card:nth-child(3) { animation-delay: 0.5s; }
