/* Color Palette & Custom Constants */
:root {
    --bg-dark: #000000;
    --bg-surface: #111111;
    --accent-orange: #e4592a;
    --text-white: #ffffff;
    --text-gray: #a6a6a6;
    --border-dim: #222222;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Navbar Style */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-dim);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-lion-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lion-img-new {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-gray);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Roar Animation Classes */
.roar-active .lion-img-new {
    animation: shake 1.5s cubic-bezier(.36,.07,.19,.97) both;
    transform-origin: center;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.9)); /* Premium Gold Glow */
}

/* Keyframes */
@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0) rotate(-1.5deg); }
    20%, 80% { transform: translate3d(2px, 0, 0) rotate(2deg); }
    30%, 50%, 70% { transform: translate3d(-3px, 0, 0) rotate(-3.5deg) scale(1.08); }
    40%, 60% { transform: translate3d(3px, 0, 0) rotate(3.5deg) scale(1.08); }
}

.menu-btn {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-btn .bar {
    width: 30px;
    height: 2px;
    background-color: var(--text-white);
    transition: 0.3s;
}

/* Side Menu Panel Overlay */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--text-white);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.side-menu.open {
    right: 0;
}

.close-btn {
    align-self: flex-end;
    font-size: 2.5rem;
    color: #000;
    cursor: pointer;
}

.nav-links {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 400;
    width: fit-content;
}

.nav-links a.active {
    border-bottom: 2px solid var(--accent-orange);
    color: var(--accent-orange);
}

/* Hero Section Split Design */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-dark);
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 80%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-subtitle {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-highlight {
    font-size: 2.2rem;
    font-weight: 600;
}

.hero-right {
    flex: 1;
    min-width: 300px;
    background-color: #333;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Corporate Brand Logos Section */
.logo-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 4%;
    background-color: var(--text-white);
    color: #000;
}

.logo-item h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 15px;
    opacity: 0.8;
}

/* Intro Section */
.intro-section {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 5%;
    background-color: var(--text-white);
    color: #000;
    gap: 40px;
}

.intro-left {
    flex: 1;
    min-width: 280px;
}

.intro-left h4 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 15px;
}

.intro-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.intro-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
}

.intro-right p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
}

/* Interactive Image Grid with Uses Case */
.gallery-section {
    padding: 80px 5%;
    background-color: var(--bg-surface);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-white);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: #161b22;
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: border-color 0.3s;
}

.portfolio-card:hover {
    border-color: var(--accent-orange);
}

.card-img-holder {
    position: relative;
    height: 240px;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: var(--accent-orange);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
}

.card-content {
    padding: 25px;
    transform: translateZ(20px);
}

.card-content h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Premium Footer Style */
.main-footer {
    background: linear-gradient(180deg, #090909 0%, #030303 100%);
    padding: 90px 8% 40px 8%;
    border-top: 1px solid rgba(228, 89, 42, 0.15);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(228, 89, 42, 0.4), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1.1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

.brand-tagline {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.brand-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--accent-orange);
    background: rgba(228, 89, 42, 0.08);
    border: 1px solid rgba(228, 89, 42, 0.25);
    padding: 6px 12px;
    border-radius: 4px;
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--accent-orange);
    margin-top: 4px;
    background: rgba(228, 89, 42, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(228, 89, 42, 0.2);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-orange);
}

.social-tagline {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.social-icons a.whatsapp-btn:hover {
    background-color: #25D366;
    border-color: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.social-icons a.instagram-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.social-icons a.facebook-btn:hover {
    background-color: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.social-icons a.linkedin-btn:hover {
    background-color: #0077B5;
    border-color: #0077B5;
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.designer-credit {
    color: var(--text-white);
    font-weight: 600;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--accent-orange);
}

@media(max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media(max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-section { flex-direction: column; }
}

/* =============================================
   HIGHLIGHT / SPECIAL MOMENTS SECTION
============================================= */
.highlight-section {
    padding: 100px 40px;
    background: linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 89, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.highlight-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 89, 42, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.highlight-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.highlight-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-badge {
    display: inline-block;
    background: rgba(228, 89, 42, 0.12);
    color: var(--accent-orange);
    border: 1px solid rgba(228, 89, 42, 0.35);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: fit-content;
}

.highlight-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
}

.highlight-heading span {
    background: linear-gradient(90deg, #e4592a, #ff8a60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-desc {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 520px;
}

.highlight-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    border-radius: 2px;
}

.highlight-quote {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    border-left: 3px solid var(--accent-orange);
    padding-left: 16px;
    line-height: 1.6;
}

.highlight-photo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.highlight-photo-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(228, 89, 42, 0.2),
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(228, 89, 42, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 520px;
    width: 100%;
}

.highlight-photo-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 0 0 1px rgba(228, 89, 42, 0.35),
        0 40px 90px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(228, 89, 42, 0.12);
}

.highlight-photo-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.highlight-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 28px 20px 14px;
    text-align: center;
}

@media (max-width: 900px) {
    .highlight-inner {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .highlight-heading { font-size: 1.8rem; }
    .highlight-photo-frame { max-width: 100%; }
}

/* =============================================
   ZOOM HINT OVERLAY ON CARD HOVER
============================================= */
.card-img-holder {
    position: relative;
    cursor: pointer;
}

.zoom-hint {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: background 0.35s ease, opacity 0.35s ease;
    z-index: 2;
    border-radius: 4px 4px 0 0;
}

.zoom-hint i {
    font-size: 2.2rem;
    color: #ffffff;
    background: rgba(228, 89, 42, 0.85);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(228, 89, 42, 0.6);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.card-img-holder:hover .zoom-hint {
    opacity: 1;
    background: rgba(0, 0, 0, 0.35);
}

.card-img-holder:hover .zoom-hint i {
    transform: scale(1);
}

/* =============================================
   PREMIUM LIGHTBOX MODAL
============================================= */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, background 0.4s ease;
}

.lb-overlay.lb-open {
    opacity: 1;
    pointer-events: all;
    background: rgba(0, 0, 0, 0.92);
}

.lb-container {
    display: flex;
    gap: 0;
    max-width: 1100px;
    width: 94%;
    max-height: 88vh;
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(228, 89, 42, 0.25);
    transform: scale(0.88) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
}

.lb-overlay.lb-open .lb-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.lb-img-wrap {
    flex: 1.4;
    min-height: 400px;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.lb-img-wrap img:hover {
    transform: scale(1.03);
}

.lb-info {
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-left: 1px solid rgba(228, 89, 42, 0.2);
}

.lb-tag-label {
    display: inline-block;
    background: rgba(228, 89, 42, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(228, 89, 42, 0.4);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
}

.lb-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.lb-desc {
    font-size: 1rem;
    color: #a6a6a6;
    line-height: 1.7;
}

.lb-counter {
    margin-top: auto;
    font-size: 0.85rem;
    color: #555;
    letter-spacing: 1px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.lb-counter span {
    color: var(--accent-orange);
    font-weight: 700;
}

/* Close Button */
.lb-close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(228, 89, 42, 0.9);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 10001;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(228, 89, 42, 0.5);
}

.lb-close:hover {
    background: #ff3c00;
    transform: rotate(90deg) scale(1.1);
}

/* Prev / Next Navigation */
.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(6px);
}

.lb-prev { left: 18px; }
.lb-next { right: 18px; }

.lb-nav:hover {
    background: rgba(228, 89, 42, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 700px) {
    .lb-container {
        flex-direction: column;
        max-height: 92vh;
        overflow-y: auto;
    }
    .lb-img-wrap { min-height: 260px; flex: none; }
    .lb-info { padding: 24px 20px; }
    .lb-title { font-size: 1.3rem; }
    .lb-nav { display: none; }
}