/*==================================
Font Variable
==================================*/

:root {
    --uc-primary-font: 'Urbanist', sans-serif;
    --uc-secondary-font: 'Arial', sans-serif;
    --uc-text-font: 'Roboto', sans-serif;
    --uc-accent-font: 'Urbanist', sans-serif;
    --uc-general-font: 'Roboto', sans-serif;
}

/*==================================
Theme Color All Codes Variable - Professional Redesign
Based on Kokovero Palette:
Golden Velvet #e5cb85 | Caramel Luxe #cda84f 
Cocoa Royale #482d5a | Midnight Truffle #151119
==================================*/

:root {
    --uc-primary-color: #cda84f;
    /* Caramel Luxe - Main gold accent */
    --uc-primary-light: #e5cb85;
    /* Golden Velvet - Light gold */
    --uc-primary-dark: #a88a3a;
    /* Darker gold for hover states */

    --uc-secondary-color: #482d5a;
    /* Cocoa Royale - Deep purple */
    --uc-secondary-light: #5d3d73;
    /* Lighter purple */
    --uc-secondary-dark: #351f42;
    /* Darker purple */

    --uc-white-color: #fff;
    --uc-light-color: #f8f6f3;
    /* Warm light background */
    --uc-light-gray-color: #f5f3f0;
    /* Warm gray */
    --uc-gray-color: #c8c4bd;
    /* Warm medium gray */

    --uc-dark-color: #151119;
    /* Midnight Truffle - Deep dark */
    --uc-dark-light: #1e1a24;
    /* Slightly lighter dark */

    --uc-accent-color: #cda84f;
    /* Same as primary */
    --uc-footer-color: #151119;

    --uc-primary-opacity-color: rgba(205, 168, 79, .85);
    --uc-secondary-opacity-color: rgba(72, 45, 90, .85);
    --uc-dark-opacity-color: rgba(21, 17, 25, .85);
    --uc-white-opacity-color: rgba(255, 255, 255, 0.5);

    --uc-default-color: #6b6560;
    /* Warm dark gray for text */
    --uc-text-gray-color: #9a948d;
    /* Warm gray text */
    --uc-text-color2: #8a847d;
    --uc-text-color3: #b5afa8;
    --uc-text-color4: #e8e5e0;

    --uc-primary-color-rgba: 205, 168, 79;
    --uc-secondary-color-rgba: 72, 45, 90;
    --uc-dark-color-rgba: 21, 17, 25;

    /* Additional professional variables */
    --shadow-sm: 0 2px 8px rgba(21, 17, 25, 0.08);
    --shadow-md: 0 8px 30px rgba(21, 17, 25, 0.12);
    --shadow-lg: 0 20px 60px rgba(21, 17, 25, 0.15);
    --shadow-gold: 0 8px 30px rgba(205, 168, 79, 0.25);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 100px;
}

/*==================================
Enhanced Preloader
==================================*/
.preloader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background: var(--uc-dark-color);
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader .loader {
    position: relative;
    width: 60px;
    height: 60px;
}

.preloader .loader::before,
.preloader .loader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--uc-primary-color);
    animation: spin 1.5s linear infinite;
}

.preloader .loader::before {
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
}

.preloader .loader::after {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
    border-top-color: var(--uc-secondary-color);
    animation-direction: reverse;
    animation-duration: 1s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/*==================================
Enhanced Global Styles
==================================*/
body {
    font-size: 15px;
    font-family: var(--uc-general-font);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: var(--uc-default-color);
    background-color: var(--uc-white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    line-height: 1.8;
}

p {
    line-height: 1.8;
    font-family: var(--uc-general-font);
    color: var(--uc-default-color);
}

p:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--uc-accent-font);
    color: var(--uc-dark-color);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1, .h1 { font-size: 52px; }
h2, .h2 { font-size: 42px; }
h3, .h3 { font-size: 34px; }
h4, .h4 { font-size: 26px; }
h5, .h5 { font-size: 21px; }
h6, .h6 { font-size: 18px; }

a {
    font-family: var(--uc-accent-font);
    color: var(--uc-primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--uc-primary-dark);
}

small {
    font-size: 14px;
}

.full-row {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

/*==================================
Enhanced Header & Navigation
==================================*/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    background: transparent;
    padding: 15px 0;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.main-header.scrolled .navbar-nav .nav-link {
    color: var(--uc-dark-color) !important;
}

.main-header.scrolled .nav-logo {
    filter: brightness(0.8);
}

.navbar-brand {
    padding: 0;
    margin-right: 30px;
}

.nav-logo {
    width: 160px;
    transition: var(--transition-normal);
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    font-family: var(--uc-primary-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--uc-white-color) !important;
    padding: 10px 18px !important;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--uc-primary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: var(--uc-primary-color) !important;
}

/* Login button special styling */
#login {
    background: var(--uc-primary-color);
    color: var(--uc-dark-color) !important;
    font-weight: 700;
    padding: 10px 25px !important;
    box-shadow: var(--shadow-gold);
}

#login:hover {
    background: var(--uc-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(205, 168, 79, 0.35);
}

#login::after {
    display: none !important;
}

/* Mobile toggle */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: rgba(205, 168, 79, 0.15);
    transition: var(--transition-normal);
}

.navbar-toggler:hover {
    background: var(--uc-primary-color);
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: none;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--uc-primary-color);
    transition: var(--transition-normal);
}

.navbar-toggler-icon::before {
    top: 6px;
}

.navbar-toggler-icon::after {
    bottom: 6px;
}

/*==================================
Enhanced Hero Banner Section
==================================*/
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--uc-dark-color) 0%, var(--uc-secondary-color) 50%, var(--uc-dark-color) 100%);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/slider/slider-1.png') center/cover no-repeat;
    opacity: 0.25;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(21, 17, 25, 0.7) 0%,
        rgba(72, 45, 90, 0.4) 40%,
        rgba(21, 17, 25, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(205, 168, 79, 0.15);
    border: 1px solid rgba(205, 168, 79, 0.3);
    border-radius: var(--radius-full);
    color: var(--uc-primary-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--uc-white-color);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title span {
    color: var(--uc-primary-color);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(205, 168, 79, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-services {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    display: inline-block;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-services li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-services li:last-child {
    border-bottom: none;
}

.hero-services li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--uc-primary-color);
    font-size: 14px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--uc-primary-color);
    color: var(--uc-dark-color);
    font-family: var(--uc-primary-font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-cta:hover {
    background: var(--uc-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(205, 168, 79, 0.4);
    color: var(--uc-dark-color);
}

.hero-cta i {
    transition: var(--transition-normal);
}

.hero-cta:hover i {
    transform: translateX(5px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--uc-primary-color);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 18px; }
}

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

/*==================================
Enhanced Section Styles
==================================*/
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(205, 168, 79, 0.1);
    border: 1px solid rgba(205, 168, 79, 0.2);
    border-radius: var(--radius-full);
    color: var(--uc-primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--uc-dark-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title-light {
    color: var(--uc-white-color);
}

.section-subtitle {
    font-size: 17px;
    color: var(--uc-text-gray-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.7);
}

/*==================================
Enhanced Locations Section
==================================*/
.locations-section {
    background: var(--uc-light-color);
    padding: 100px 0;
}

.location-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.location-card .card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.location-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-card:hover .card-image img {
    transform: scale(1.1);
}

.location-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(
        0deg,
        rgba(21, 17, 25, 0.95) 0%,
        rgba(21, 17, 25, 0.5) 60%,
        transparent 100%
    );
    transition: var(--transition-normal);
}

.location-card:hover .card-overlay {
    padding-bottom: 30px;
}

.location-card .city-name {
    font-family: var(--uc-accent-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--uc-white-color);
    margin-bottom: 5px;
}

.location-card .city-properties {
    font-size: 13px;
    color: var(--uc-primary-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.location-card .card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--uc-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uc-dark-color);
    font-weight: 700;
    font-size: 12px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-normal);
}

.location-card:hover .card-badge {
    transform: scale(1.1) rotate(10deg);
}

/*==================================
Enhanced Services Section (What Are You Searching For)
==================================*/
.services-section {
    position: relative;
    padding: 120px 0;
    background: var(--uc-dark-color);
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(205, 168, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(72, 45, 90, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.services-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(205, 168, 79, 0.1) 0%, rgba(72, 45, 90, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.service-card:hover {
    border-color: rgba(205, 168, 79, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(205, 168, 79, 0.15) 0%, rgba(72, 45, 90, 0.15) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--uc-primary-color);
    transition: var(--transition-normal);
    border: 1px solid rgba(205, 168, 79, 0.2);
}

.service-card:hover .service-icon {
    background: var(--uc-primary-color);
    color: var(--uc-dark-color);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-gold);
}

.service-card .service-title {
    font-family: var(--uc-accent-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--uc-white-color);
    margin-bottom: 15px;
}

.service-card .service-title a {
    color: inherit;
}

.service-card .service-title a:hover {
    color: var(--uc-primary-color);
}

.service-card .service-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--uc-primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.service-card .service-link i {
    transition: var(--transition-normal);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/*==================================
Enhanced Clients/Partners Section
==================================*/
.clients-section {
    background: var(--uc-white-color);
    padding: 80px 0;
    border-top: 1px solid var(--uc-text-color4);
    border-bottom: 1px solid var(--uc-text-color4);
}

.partner-slider .item {
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.partner-slider .item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-slider .item img {
    max-height: 60px;
    width: auto;
    margin: 0 auto;
}

/*==================================
Enhanced CTA Section
==================================*/
.cta-section {
    background: linear-gradient(135deg, var(--uc-secondary-color) 0%, var(--uc-dark-color) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(205, 168, 79, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h4 {
    color: var(--uc-white-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--uc-primary-color);
    color: var(--uc-dark-color);
    font-family: var(--uc-primary-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
}

.cta-btn:hover {
    background: var(--uc-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(205, 168, 79, 0.4);
    color: var(--uc-dark-color);
}

/*==================================
Enhanced Footer
==================================*/
.site-footer {
    background: var(--uc-dark-color);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--uc-primary-color) 0%, var(--uc-secondary-color) 50%, var(--uc-primary-color) 100%);
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(205, 168, 79, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-main {
    padding: 80px 0 50px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    margin: 30px 0;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: var(--transition-normal);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.footer-links a:hover {
    color: var(--uc-primary-color);
    background: rgba(205, 168, 79, 0.1);
}

.footer-links .divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
}

/*==================================
Enhanced Animations
==================================*/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

/* Scroll reveal base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/*==================================
Enhanced Scroll to Top
==================================*/
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--uc-primary-color);
    color: var(--uc-dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
    z-index: 999;
    font-size: 18px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--uc-primary-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(205, 168, 79, 0.4);
}

/*==================================
Responsive Design
==================================*/
@media (max-width: 1199px) {
    .hero-title { font-size: 52px; }
    .section-title { font-size: 36px; }
}

@media (max-width: 991px) {
    .hero-title { font-size: 42px; }
    .section-title { font-size: 32px; }
    .hero-banner { min-height: auto; padding: 100px 0 60px; }
    .navbar-collapse {
        background: rgba(21, 17, 25, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: var(--radius-lg);
        margin-top: 15px;
    }
    .main-header.scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
    }
    .main-header.scrolled .navbar-nav .nav-link {
        color: var(--uc-dark-color) !important;
    }
    .cta-content { text-align: center; justify-content: center; }
    .cta-text { width: 100%; }
    .footer-bottom-content { text-align: center; justify-content: center; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .section-title { font-size: 28px; }
    .full-row { padding-top: 60px; padding-bottom: 60px; }
    .services-bg-text { font-size: 80px; }
    .scroll-top { right: 15px; bottom: 15px; width: 44px; height: 44px; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 28px; }
    .hero-badge { font-size: 11px; padding: 6px 16px; }
    .section-title { font-size: 24px; }
    .service-card { padding: 30px 20px; }
}