/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:not(html):not(body) {
    max-width: 100%;
}

:root {
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-lighter: #1a1a1a;
    --gold: #d4af37;
    --gold-light: #e5c158;
    --gold-dark: #b8941f;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --gray-dark: #333333;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: backgroundPulse 4s ease-in-out infinite;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    z-index: 2;
}

.loading-logo-container {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px var(--gold-glow));
    animation: logoPulse 2s ease-in-out infinite;
    z-index: 1;
}

.gold-glare {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.2) 20%,
        rgba(212, 175, 55, 0.8) 40%,
        rgba(255, 215, 0, 0.9) 50%,
        rgba(212, 175, 55, 0.8) 60%,
        rgba(212, 175, 55, 0.2) 80%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: glareSweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 2;
    filter: blur(1px);
}

.loading-text-container {
    text-align: center;
    margin-top: 20px;
}

.serv-text {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.serv-letter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-block;
    text-shadow: 
        0 0 20px var(--gold-glow),
        0 0 40px var(--gold-glow),
        0 0 60px var(--gold-glow);
    animation: letterGlow 2s ease-in-out infinite;
    transform: translateY(0);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.serv-letter:nth-child(1) { animation-delay: 0s; }
.serv-letter:nth-child(2) { animation-delay: 0.1s; }
.serv-letter:nth-child(3) { animation-delay: 0.2s; }
.serv-letter:nth-child(4) { animation-delay: 0.3s; }
.serv-letter:nth-child(5) { animation-delay: 0.4s; }

.loading-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    animation: subtitleFade 2s ease-in-out infinite;
}

.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 20%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 60%;
    top: 40%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    left: 80%;
    top: 60%;
    animation-delay: 3s;
}

.particle:nth-child(4) {
    left: 30%;
    top: 80%;
    animation-delay: 4.5s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 10%;
    animation-delay: 6s;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 30px var(--gold-glow));
    }
    50% {
        transform: scale(1.08) rotate(2deg);
        filter: drop-shadow(0 0 50px var(--gold-glow));
    }
}

@keyframes glareSweep {
    0% {
        left: -150%;
        opacity: 0;
    }
    15% {
        opacity: 0.3;
    }
    30% {
        opacity: 1;
    }
    50% {
        left: 120%;
        opacity: 1;
    }
    70% {
        opacity: 0.5;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

@keyframes letterGlow {
    0%, 100% {
        transform: translateY(0) scale(1);
        text-shadow: 
            0 0 20px var(--gold-glow),
            0 0 40px var(--gold-glow),
            0 0 60px var(--gold-glow);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        text-shadow: 
            0 0 30px var(--gold-glow),
            0 0 60px var(--gold-glow),
            0 0 90px var(--gold-glow);
    }
}

@keyframes subtitleFade {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -50px) scale(1.2);
        opacity: 0.6;
    }
    75% {
        transform: translate(20px, -20px) scale(1.3);
        opacity: 0.7;
    }
}

/* ============================================
   TOP BANNER
   ============================================ */

.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: sway 3s ease-in-out infinite;
}

.banner-item {
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-decoration: none;
    transition: var(--transition);
}

.banner-item:hover {
    color: var(--gold-light);
    transform: translateY(-1px);
}

.banner-separator {
    color: rgba(212, 175, 55, 0.5);
    font-size: 10px;
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-8px);
    }
    75% {
        transform: translateX(8px);
    }
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: transparent;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: none;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.5;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(212, 175, 55, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px clamp(20px, 5vw, 50px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 15px;
}

.nav-left {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo {
    height: 60px;
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--gold-glow));
    transition: var(--transition);
}

.nav-logo:hover img {
    filter: drop-shadow(0 0 15px var(--gold-glow));
    transform: scale(1.05);
}

.nav-center {
    flex: 1;
    text-align: center;
    opacity: 1;
    transition: var(--transition);
}

.nav-quote {
    font-size: clamp(10px, 1.5vw, 14px);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    white-space: nowrap;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
}

.nav-mobile-right {
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 1001;
    margin-left: auto;
    padding-right: 10px;
}

.nav-phone-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-phone-mobile:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.nav-phone-mobile svg {
    stroke: currentColor;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-phone:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-phone-text {
    font-size: clamp(12px, 1.2vw, 14px);
}

.nav-cta-desktop {
    background: var(--white);
    border: none;
    color: var(--black);
    padding: 12px clamp(15px, 2.5vw, 24px);
    font-size: clamp(12px, 1.5vw, 14px);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border-radius: 0;
}

.nav-cta-desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: 0.5s;
}

.nav-cta-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.nav-cta-desktop:hover::before {
    left: 100%;
}

.nav-cta-mobile {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--black);
    padding: 12px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.nav-cta-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.nav-cta-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.nav-cta-mobile:hover::before {
    left: 100%;
}

.burger {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    overflow: visible;
    background: none;
    border: none;
    padding: 0;
    margin-left: 0;
    flex-shrink: 0;
}

.burger span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
    transform: translateX(-150%);
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Full Screen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #080808;
    z-index: 900;
    overflow: hidden;
    transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-menu.open {
    height: 100vh;
}

.fullscreen-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, #000 70%);
    opacity: 0.6;
    pointer-events: none;
}

.menu-inner {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
    transition-delay: 0s;
}

.fullscreen-menu.open .menu-inner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.menu-left-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-right-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 40px;
}

.menu-big-link {
    font-size: clamp(40px, 8vw, 75px);
    font-family: var(--font-body);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    line-height: 0.9;
    position: relative;
    width: fit-content;
}

.menu-big-link:hover {
    color: var(--white);
    -webkit-text-stroke: 1px var(--white);
    transform: skewX(-10deg) translateX(20px);
}

.menu-item-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s ease;
}

.fullscreen-menu.open .menu-item-anim {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.open .d-1 {
    transition-delay: 0.4s;
}

.fullscreen-menu.open .d-2 {
    transition-delay: 0.5s;
}

.fullscreen-menu.open .d-3 {
    transition-delay: 0.6s;
}

.fullscreen-menu.open .d-4 {
    transition-delay: 0.7s;
}

.fullscreen-menu.open .d-5 {
    transition-delay: 0.8s;
}

.menu-small-link {
    font-size: 18px;
    color: #888;
    text-decoration: none;
    transition: 0.2s;
    display: block;
    margin-bottom: 8px;
}

.menu-small-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.menu-contact-info {
    margin-top: 20px;
}

.menu-contact-info p {
    color: #888;
    margin-bottom: 8px;
    font-size: 16px;
}

.menu-contact-info a {
    color: #888;
    text-decoration: none;
    transition: 0.2s;
}

.menu-contact-info a:hover {
    color: var(--gold);
}

.menu-socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.menu-social-icon {
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    padding: 0;
}

.menu-social-icon:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: scale(1.1);
}

/* ============================================
   HERO / CAROUSEL SECTION
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-top: 25px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 0.3s ease-out;
}

.carousel-slide.active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.slide-text {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background-color: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 120px 0;
    background-color: var(--black-soft);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.gold-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
    position: relative;
}

.gold-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-glow);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background-color: var(--black-lighter);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), var(--transition);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.service-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.7)
    );
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(212, 175, 55, 0.2)
    );
}

.service-content {
    padding: 30px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   SERVICE DETAILS SECTION
   ============================================ */

.service-details-section {
    padding: 120px 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.details-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 1;
}

.details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 2;
}

.details-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.details-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.detail-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), var(--transition);
}

.detail-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.detail-item:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.detail-item:hover::before {
    opacity: 1;
}

.detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--gold);
    color: var(--gold);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.detail-item:hover .detail-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 30px var(--gold-glow);
}

.detail-item h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.detail-item p {
    color: var(--gray-light);
    line-height: 1.9;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   ABOUT US SECTION
   ============================================ */

.about-section {
    padding: 120px 0;
    background-color: var(--black-soft);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.about-description {
    color: var(--gray-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    pointer-events: none;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio-section {
    padding: 120px 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.portfolio-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('wayimg/spacejoy-THR4LzUUUYA-unsplash.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 2;
}

.portfolio-section .container {
    position: relative;
    z-index: 3;
}

.portfolio-section .section-header {
    position: relative;
    z-index: 3;
}

.portfolio-section .section-title {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 3;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(60px) rotate(2deg);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), var(--transition);
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
    padding: 30px;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.portfolio-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 1;
}

.portfolio-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(212, 175, 55, 0.3);
    opacity: 1;
    transform: translateY(0);
    max-width: 90%;
    position: relative;
    z-index: 3;
}

.portfolio-icon {
    font-size: 4rem;
    color: var(--gold);
    font-weight: 300;
    transform: scale(0.8);
    transition: var(--transition);
    z-index: 2;
    position: relative;
    margin-top: auto;
    padding-bottom: 20px;
}

.portfolio-item:hover .portfolio-icon {
    transform: scale(1);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 60px rgba(212, 175, 55, 0.3);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

/* ============================================
   ESTIMATE MODAL
   ============================================ */

.estimate-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.estimate-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.estimate-modal-card {
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: visible;
}

.estimate-modal-overlay.active .estimate-modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.modal-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 10px;
}

/* ============================================
   ESTIMATE FORM
   ============================================ */

.estimate-form {
    max-width: 100%;
    margin: 0;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--black);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: none;
    min-height: 100px;
    max-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.submit-button:active {
    transform: translateY(-1px);
}

/* ============================================
   SMS MESSAGE DISPLAY
   ============================================ */

.sms-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 10001;
    display: none;
    animation: slideInUp 0.5s ease-out;
}

.sms-container.active {
    display: block;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sms-message {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sms-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sms-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sms-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
    font-size: 1.2rem;
}

.sms-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.sms-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.sms-bubble {
    padding: 20px;
    background-color: #f0f0f0;
    color: #000;
    line-height: 1.6;
    font-size: 0.95rem;
}

.sms-bubble p {
    margin: 0;
    color: #000;
}

.sms-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sms-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ============================================
   FLOATING FAQ CHATBOT
   ============================================ */

.floating-chatbot {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 500px;
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-chatbot.active .chatbot-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.chatbot-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.chatbot-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

.chatbot-content {
    max-height: 420px;
    overflow-y: auto;
    padding: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: var(--black);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question svg {
    stroke: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: var(--gray-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Scrollbar for chatbot content */
.chatbot-content::-webkit-scrollbar {
    width: 6px;
}

.chatbot-content::-webkit-scrollbar-track {
    background: var(--black);
}

.chatbot-content::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.chatbot-content::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--black);
    padding: 80px 0 100px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.footer-tagline {
    color: var(--gray);
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--gray-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(80px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Additional Animation Classes */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-up {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-5deg) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.blur-in {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), filter 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.blur-in.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 1100px) {
    .nav-center {
        display: none;
    }
}

@media (max-width: 900px) {
    .fullscreen-menu {
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .menu-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding-top: 140px;
        padding-bottom: 100px;
        padding-left: 20px;
        padding-right: 20px;
        height: auto;
        max-height: none;
    }
    
    .menu-right-panel {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        align-items: center;
    }
    
    .menu-big-link {
        font-size: 45px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px clamp(15px, 4vw, 25px);
    }
    
    .nav-container {
        padding: 0 5px;
        gap: 15px;
        justify-content: space-between;
    }
    
    .nav-logo {
        height: 65px;
        flex-shrink: 0;
    }
    
    .nav-right {
        display: none;
    }
    
    .nav-mobile-right {
        display: flex;
        gap: 8px;
        margin-left: auto;
        padding-right: 5px;
    }
    
    .nav-phone-mobile {
        width: 40px;
        height: 40px;
    }
    
    .nav-cta-mobile {
        display: block;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .burger {
        display: flex;
        width: 35px;
        height: 28px;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .burger span {
        width: 100%;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .detail-item {
        padding: 35px 25px;
    }
    
    .details-background {
        background-attachment: scroll;
        opacity: 0.2;
    }
    
    .details-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.85) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }
    
    .details-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .detail-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .detail-item h3 {
        font-size: 1.4rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-background {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        opacity: 0.2;
    }
    
    .portfolio-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.85) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }
    
    .estimate-form {
        padding: 30px 20px;
    }
    
    .floating-chatbot {
        bottom: 90px;
        right: 20px;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        max-width: 380px;
        bottom: 160px;
    }
    
    .chatbot-button {
        width: 55px;
        height: 55px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sms-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .sms-message {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }
    
    .nav-logo {
        height: 55px;
    }
    
    .nav-phone-mobile {
        width: 36px;
        height: 36px;
    }
    
    .nav-phone-mobile svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-cta-mobile {
        padding: 8px 12px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .burger {
        width: 30px;
        height: 24px;
        margin-left: 0;
    }
    
    .nav-mobile-right {
        gap: 6px;
        margin-left: auto;
        padding-right: 8px;
    }
    
    .nav-container {
        gap: 10px;
        padding: 0 3px;
    }
    
    .serv-letter {
        font-size: 2.5rem;
    }
    
    .loading-logo-container {
        width: 180px;
        height: 180px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .carousel-controls {
        bottom: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ============================================
   iOS STYLE BOTTOM TAB BAR
   ============================================ */

.ios-tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9998;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 12px;
}

.tab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 0 0 3px 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.tab-item svg {
    stroke: currentColor;
    width: 24px;
    height: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.tab-item span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.tab-item.active {
    color: var(--gold);
    transform: translateY(-2px);
}

.tab-item.active::before {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.tab-item.active svg {
    filter: drop-shadow(0 0 12px var(--gold-glow));
    transform: scale(1.1);
}

.tab-item.active span {
    font-weight: 600;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.tab-item:not(.active):hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.tab-item:not(.active):hover svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.tab-item:not(.active):hover::before {
    transform: translateX(-50%) scaleX(0.5);
    opacity: 0.3;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Add bottom padding to body to account for tab bar */
body {
    padding-bottom: 70px;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}
