:root {
    --primary: #f47816; /* Logo Orange */
    --primary-light: #fff5eb;
    --secondary: #393939; /* Logo Charcoal */
    --accent: #f47816;
    --bg-page: #ffffff;
    --bg-card: #ffffff;
    --text-main: #2d2d2d;
    --text-dim: #555555;
    --border: #eeeeee;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    --font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.5;
    height: 100vh;
    width: 100vw;
    overflow: hidden; /* No scroll on desktop */
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

.main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left Panel - Fixed height, centered */
.left-panel {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-right: 1px dotted var(--border);
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: clamp(273px, 23vw, 364px);
    height: auto;
}

.logo-subtitle {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary);
    margin-top: 0.2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vh, 4.5rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.intro {
    font-size: clamp(1rem, 1.5vh, 1.25rem);
    color: var(--text-dim);
    max-width: 450px;
    margin-bottom: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: none;
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
}

/* Right Panel - Compact list of cards */
.right-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    height: 100vh;
    overflow-y: auto;
    scrollbar-width: none; /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
}

.right-panel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.glass {
    background: var(--bg-card);
    border: none;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

h2 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
}

h2 i {
    width: 24px;
    text-align: center;
    margin-right: 12px;
}

/* Contact Link Styling */
.contact-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: #fdfdfd;
    border: none;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-link i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.contact-link:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* Services and About compacting */
.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0;
    margin: 1rem 0 0 0;
}

.services-list li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
}

.services-list i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.about-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    padding-left: 30px; /* 20px icon + 10px margin */
    line-height: 1.6;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(244, 120, 22, 0.15);
}

.cta-button.secondary {
    background: var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button i {
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.cta-button:active {
    transform: translateY(0);
}

.side-footer {
    padding: 2rem 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.credit {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.left-panel .credit {
    margin-top: auto; /* Push to bottom of left panel on desktop */
    justify-content: flex-start;
    padding-bottom: 80px;
}

.credit a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--primary);
    background: transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.desktop-only { display: flex; }
.mobile-only { display: none; }

@media (max-width: 1000px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
}

.credit a:hover {
    background: var(--primary);
    color: white;
}

/* Animations */
.pulse {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* Responsive Scaling for smaller heights or screens */
@media (max-width: 1000px) {
    body {
        overflow-y: auto;
        height: auto;
    }
    .main-wrapper {
        grid-template-columns: 1fr;
        height: auto;
        padding: 1rem;
    }
    .left-panel, .right-panel {
        height: auto;
        padding: 3rem 1.5rem;
        align-items: stretch; /* Ensure cards fill width */
        text-align: center;
        border-right: none;
    }
    .glass {
        width: 100%;
        max-width: 600px; /* Cap for very large phones */
        margin-left: auto;
        margin-right: auto;
    }
    .status-indicator {
        margin: 0 auto;
        width: fit-content;
        justify-content: center;
    }
    .hero h1 { font-size: 3.5rem; }
    .gallery-track {
        grid-template-columns: 1fr !important;
    }
    .gallery-track img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    .small-text, p, span, li, .sticky-link::after {
        font-size: 1rem !important; /* Minimum 16px */
    }
    .services-card, .about-card, .contact-card {
        text-align: left !important;
        align-items: flex-start !important;
    }
    .services-list {
        text-align: left;
        grid-template-columns: 1fr;
    }
}

@media (max-height: 700px) and (min-width: 1001px) {
    .hero h1 { font-size: 3rem; }
    .glass { padding: 1rem; }
    .right-panel { gap: 0.5rem; }
}


.badge-link {
    text-decoration: none;
    display: block;
}

.badge-link:hover .badge {
    background: #e6fffa;
    transform: scale(1.02);
}

.footer-cta {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    border-bottom-color: var(--primary);
}

/* Dynamic Effects & Micro-animations */

/* Shimmer effect for the main title */
.hero h1 {
    background: linear-gradient(to right, var(--secondary) 20%, var(--primary) 40%, var(--primary) 60%, var(--secondary) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
    to { background-position: 200% center; }
}

/* Floating Logo Animation REMOVED */
.logo {
    /* No animation */
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Glass Card Magnetic Effect */
.glass {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(244, 120, 22, 0.08);
}

/* Status Indicator Pulse Enhancement */
.status-indicator {
    transition: all 0.3s ease;
}

.status-indicator:hover {
    transform: scale(1.05);
    background: var(--primary-light);
}

@keyframes blobMove1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20vw, 20vh) scale(1.2); }
}

@keyframes blobMove2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-25vw, -15vh) scale(1.1); }
}

@keyframes blobMove3 {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-30%, -20%) scale(1.3); }
}

.credit {
    margin-top: auto;
    font-size: 0.75rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    padding-top: 2rem;
    text-align: left;
}

.credit a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
}

.credit:hover {
    opacity: 1;
}

/* Animated Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
    animation: moveShape 20s infinite alternate ease-in-out;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    right: -50px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.bg-shape-3 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: 50%;
    right: 20%;
    animation-duration: 35s;
    animation-delay: -10s;
}

.bg-shape-4 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: 20%;
    left: 10%;
    animation-duration: 40s;
    animation-delay: -15s;
}

@keyframes moveShape {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 150px) scale(1.2); }
    66% { transform: translate(-150px, 100px) scale(0.8); }
    100% { transform: translate(50px, -50px) scale(1.1); }
}

.background-overlay {
    overflow: hidden;
}

/* Cursor Trail Styling */
.trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    animation: trail-fade 0.6s linear forwards;
}

@keyframes trail-fade {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

/* Logo Shimmer Effect */
.logo-container {
    position: relative;
    overflow: hidden;
}

.logo-container::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: logo-shimmer 12s infinite;
}

@keyframes logo-shimmer {
    0% { left: -150%; }
    15% { left: 100%; }
    100% { left: 100%; }
}

/* Gallery Section */
.gallery-section {
    padding: 1.25rem !important;
}

.gallery-wrapper {
    margin-top: 1rem;
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-track img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.gallery-track img:hover {
    transform: scale(1.05);
}

.italic {
    font-style: italic;
    opacity: 0.7;
}

/* Prominent Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff5ed 100%) !important;
    border: 1px solid var(--primary-light) !important;
    box-shadow: 0 15px 35px rgba(244, 120, 22, 0.1) !important;
}

.contact-hero h2 {
    color: var(--primary);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 0.75rem;
    border: 1px solid transparent;
}

.contact-btn i {
    font-size: 1.2rem;
}

.contact-btn.email {
    background: var(--primary);
    color: white;
}

.contact-btn.phone {
    background: var(--secondary);
    color: white;
}

.contact-btn.facebook {
    background: #1877F2;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-btn:active {
    transform: translateY(0);
}

/* Sticky Contact Bar */
.sticky-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2rem;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-contact-bar.visible {
    transform: translateY(0);
}

.sticky-title {
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 1rem;
}

.sticky-links-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sticky-link {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: opacity 0.2s ease;
}

.sticky-link i {
    color: white;
}

.sticky-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .sticky-contact-bar {
        padding: 0.5rem 1rem;
    }
    .sticky-title { display: none; }
    .sticky-links-wrapper {
        width: 100%;
        justify-content: space-around;
        gap: 0.5rem;
    }
    .sticky-link span { 
        display: none; 
    }
    .sticky-link { 
        font-size: 1.4rem; 
        padding: 0.5rem;
        flex-direction: column;
        gap: 2px;
    }
    .sticky-link::after {
        content: attr(data-label);
        font-size: 0.65rem;
        display: block;
        margin-top: 2px;
        font-weight: 700;
    }
}

