:root {
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-color: #d4af37; /* elegant gold */
    --accent-hover: #b5952f;
    --overlay-color: rgba(0, 0, 0, 0.75);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Progress bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 10001;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--accent-hover), var(--accent-color));
    width: 0%;
    transition: width 0.1s ease;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: pulse 1.5s infinite alternate;
}

.spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 5vw, 2.4rem);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border-color: var(--accent-color);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 2.2rem;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

.btn-video:hover {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-video i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-video:hover i {
    transform: scale(1.2);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    transition: all 0.5s ease;
}

header.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--text-primary);
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo-sub-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent-color);
    line-height: 1;
    margin-top: 2px;
}

.logo-link:hover .logo-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

#navbar {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-shrink: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    color: #f1f1f1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0%; height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-extras {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon {
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.search-icon:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 32px; height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 3rem;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero.loaded .hero-bg img {
    transform: scale(1);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    margin-bottom: 3.5rem;
    color: #dfdfdf;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Sections Common */
.section {
    padding: 8rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.divider {
    width: 40px; height: 3px;
    background-color: var(--accent-color);
    margin: 1.5rem auto;
}

/* Projects Gallery (Masonry style Grid) */
.projects-section {
    padding: 3rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 240px;
    gap: 1rem;
    padding: 0 2rem;
}

.project-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

/* Make some items larger in the grid for masonry feel */
.item-tall {
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

.project-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--overlay-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item:hover .project-overlay,
.project-item.touched .project-overlay {
    opacity: 1;
    visibility: visible;
}

.hover-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transform: translateY(-20px) scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.project-overlay h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.3rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.project-overlay p {
    color: var(--accent-color);
    font-size: 1rem;
    font-family: var(--font-heading);
    font-style: italic;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.project-item:hover .hover-icon,
.project-item:hover h3,
.project-item:hover p,
.project-item.touched .hover-icon,
.project-item.touched h3,
.project-item.touched p {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.project-item.touched img {
    transform: scale(1.06);
}

/* Services */
.services-section {
    background-color: var(--bg-primary);
    padding: 8rem 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--bg-secondary);
    padding: 4rem 3rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: rgba(212, 175, 55, 0.05); /* very subtle gold */
    transition: height 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

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

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 3rem;
}

.contact-info {
    padding: 5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #111 100%);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.info-item {
    margin-top: 2rem;
    transition: transform 0.4s ease, border-left 0.4s ease;
    padding-left: 0;
    border-left: 0px solid transparent;
}

.info-item:hover {
    transform: translateX(10px);
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
}

.info-item strong {
    display: block;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    transition: letter-spacing 0.3s ease;
}

.info-item:hover strong {
    letter-spacing: 1px;
}

.info-item a {
    font-size: 1.1rem;
}

.info-item a:hover {
    color: var(--accent-color);
}

.contact-form {
    padding: 5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 0.5rem;
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
    background-color: rgba(212, 175, 55, 0.02);
    padding-left: 1rem;
}

.contact-form .btn-primary {
    position: relative;
    overflow: hidden;
}

/* Premium Footer Styling */
.premium-footer {
    background-color: #0d0d0d;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-arch-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    z-index: 0;
}

.footer-top-line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 151px;
    background: linear-gradient(to bottom, transparent, var(--accent-color));
}

.footer-arch-line {
    position: absolute;
    top: 151px;
    width: 80%;
    height: 1000px;
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    border-radius: 100% 100% 0 0;
    transition: all 1.5s ease;
}

.premium-footer:hover .footer-arch-line {
    border-color: rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
}

.footer-main-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-left-links, .footer-right-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-left-links { align-items: flex-start; }
.footer-right-links { align-items: flex-end; }

.footer-nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--text-secondary);
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.footer-nav-link:hover {
    color: var(--accent-color);
    letter-spacing: 4px;
    transform: translateX(5px);
}

.footer-right-links .footer-nav-link:hover {
    transform: translateX(-5px);
}

.footer-center-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo-container {
    position: relative;
    width: 180px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-logo-container:hover .footer-brand-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.6);
}

.logo-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(15px);
    border-radius: 50%;
}

.footer-bottom-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-copyright {
    color: #666;
    font-size: 0.85rem;
    text-align: center;
}

.footer-social-minimal {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-social-minimal i {
    font-size: 1.1rem;
    color: #777;
    transition: all 0.3s ease;
}

.footer-social-minimal a:hover i {
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* Response for footer */
@media (max-width: 992px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .footer-left-links, .footer-right-links {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    .footer-arch-line { width: 95%; left: 2.5%; }
}

@media (max-width: 768px) {
    .footer-left-links, .footer-right-links {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px; height: 60px;
    bottom: 40px; right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20b858;
}

/* Responsive */
/* Responsive Improvements */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        border-left: 1px solid var(--accent-color);
        animation: slideInRight 0.5s ease forwards;
        padding: 0;
    }

    .nav-links.active {
        display: flex;
    }

    @keyframes slideInRight {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }

    .nav-links li {
        margin: 2rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .hamburger { display: flex; }

    /* Fix header layout on mobile */
    .nav-container {
        padding: 0 1.2rem;
    }

    #navbar {
        gap: 0.5rem;
    }

    /* Hide search icon on mobile — keeps header clean */
    .search-icon {
        display: none;
    }

    
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero { padding: 0 1.5rem; text-align: center; }
    .hero-actions { justify-content: center; flex-direction: column; gap: 1rem; }
    
    .contact-container {
        grid-template-columns: 1fr;
        margin: 0 1rem;
    }
    
    .contact-info, .contact-form { padding: 2rem; }
    
    .designs-container {
        padding: 0 2rem;
    }

    .projects-gallery {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
        gap: 1rem;
        grid-auto-rows: 200px;
    }

    .item-tall, .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    h1, .hero-title { font-size: 28px !important; line-height: 1.3; }
    .hero-subtitle { font-size: 1rem; }
    
    .section {
        padding: 40px 20px !important;
    }

    /* Projects gallery - 2 columns on mobile for a magazine feel */
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
        grid-auto-rows: 180px;
    }

    .item-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Overlay hidden by default on mobile — shows only on tap (.touched) */
    .project-overlay {
        background: var(--overlay-color);
        justify-content: center;
        padding-bottom: 0;
        opacity: 0;
        visibility: hidden;
    }

    .project-overlay h3 {
        font-size: 1rem;
        text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    }

    .project-overlay p {
        font-size: 0.8rem;
    }

    /* On touch (tap), add gold border highlight */
    .project-item.touched {
        box-shadow: 0 0 0 2.5px var(--accent-color);
        border-radius: 6px;
    }

    .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .nav-links {
        width: 85%;
    }

    /* Section headers on mobile */
    .section-header h2 {
        font-size: 1.6rem;
    }

    /* Service cards more compact */
    .service-card {
        padding: 2.5rem 2rem;
    }

    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    /* Fix designs section on mobile */
    .designs-container {
        padding: 0 1rem !important;
        gap: 2rem !important;
    }

    .design-item > div {
        height: 280px !important;
    }
    
    .logo-main-text { font-size: 1.4rem; }
    .logo-sub-text { font-size: 0.7rem; }

    /* Hero buttons stack nicely */
    .hero-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .btn-primary, .btn-secondary, .btn-video {
        padding: 0.8rem 1.8rem;
        font-size: 0.8rem;
    }

    /* Contact section */
    .contact-info { padding: 2rem 1.5rem; }
    .contact-form { padding: 1.5rem; }

    /* Footer compact */
    .premium-footer { padding: 4rem 1rem 2rem; }
    .footer-main-content { gap: 2rem !important; }
}

/* GLOBAL MICRO-ANIMATIONS */

/* Shimmer/Shine Effect */
.btn-primary, .btn-outline, .btn-video, .project-item, .service-card {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-outline::after, .btn-video::after, .project-item::after, .service-card::after {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 5;
}

.btn-primary:hover::after, .btn-outline:hover::after, .btn-video:hover::after, .project-item:hover::after, .service-card:hover::after {
    left: 100%;
    top: 100%;
}

/* Floating Motion for Icons */
.service-icon i, .hero-actions i, .footer-social-minimal i, .hover-icon i {
    animation: floatIcon 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes floatIcon {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Scroll Fade Revelations */
[data-aos] {
    transition-property: transform, opacity;
}

/* Smooth Cursor Interaction Hints */
a, button {
    cursor: pointer;
}

.project-item:hover img {
    transform: scale(1.1);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes pulse { 0% { opacity: 0.6; } 100% { opacity: 1; text-shadow: 0 0 10px var(--accent-color); } }

/* Lightbox Premium Viewer */
.lightbox {
    display: none;
    position: fixed;
    z-index: 20000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    animation: zoomLightbox 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoomLightbox {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--accent-color);
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20001;
}

.close-lightbox:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.design-item img, .projects-gallery img {
    cursor: pointer;
}

/* APP-LIKE MOBILE HUD NAV */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 10%;
    width: 80%;
    height: 65px;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    padding: 0 10px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (min-width: 993px) {
    .mobile-bottom-nav { display: none !important; }
}

@media (max-width: 992px) {
    .mobile-bottom-nav { display: flex; }
    .whatsapp-float { bottom: 110px; } /* Don't overlap with bot nav */
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-bottom-nav .nav-item:hover, .mobile-bottom-nav .nav-item.active {
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* HAPTIC TOUCH FEEDBACK */
a:active, button:active, .project-item:active {
    transform: scale(0.96) !important;
}

.hero-actions .btn-primary, .hero-actions .btn-outline {
    flex: 1;
}

@media (max-width: 480px) {
    .mobile-bottom-nav { 
        width: 90%; 
        left: 5%; 
        bottom: 15px;
    }
}
