:root {
    --primary: #f97316;
    /* Vibrant Orange */
    --primary-hover: #ea580c;
    --secondary: #fbbf24;
    /* Warm Gold */
    --accent: #ef4444;
    /* Alert Red/Orange */
    --dark: #ffffff;
    /* Neutral White */
    --dark-light: #f8fafc;
    /* Soft Light Grey */
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-heavy: rgba(255, 255, 255, 0.9);
    --text-main: #0f172a;
    /* Deep Navy/Charcoal */
    --text-muted: #4b5563;
    /* Muted Slate */
    --vibrant-gradient: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
}

/* Base Overrides */
body {
    background-color: var(--dark);
    color: var(--text-main);
}

/* Header & Nav */
.header-area {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.header-area .main-nav .logo img {
    filter: none;
    /* Let logo colors be natural if any */
}

.header-area .main-nav .logo {
    color: var(--text-main) !important;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -1px;
}

.header-area .main-nav .logo span {
    color: var(--secondary) !important;
}

.header-area .main-nav .nav li a {
    color: var(--text-main) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-area .main-nav .nav li a:hover,
.header-area .main-nav .nav li a.active {
    color: var(--primary) !important;
}

/* Hero Section */
#call-to-beat {
    position: relative;
    background-image: url('../images/1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#call-to-beat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
    z-index: 1;
}

#call-to-beat::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    top: -25%;
    left: -25%;
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(10%, 10%);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cta-content h2 {
    font-size: 4rem !important;
    font-weight: 900 !important;
    color: var(--text-main) !important;
    margin-bottom: 1.5rem !important;
}

.cta-content h2 em {
    color: var(--primary) !important;
    font-style: normal;
    -webkit-text-fill-color: initial;
    background: none;
}

.cta-content p {
    font-size: 1.25rem !important;
    color: var(--text-muted) !important;
}

/* Sections */
.section-heading h2 {
    color: var(--text-main) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
}

.section-heading h2 em {
    color: var(--secondary) !important;
}

.section-heading img {
    filter: hue-rotate(280deg);
    /* Adjust decorative line to match pink theme */
}

/* Feature Items */
.feature-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    margin-bottom: 30px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-item .right-content h4 {
    color: var(--text-main) !important;
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
}

.feature-item .right-content p {
    color: var(--text-muted) !important;
    line-height: 1.6 !important;
}

/* Tabs / Services */
#tabs {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

#tabs ul li a {
    background: var(--dark-light) !important;
    color: var(--text-main) !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease !important;
    border: 1px solid var(--glass-border) !important;
}

#tabs ul li a:hover,
#tabs ul li .ui-tabs-active a {
    background: var(--vibrant-gradient) !important;
    color: white !important;
    border-color: transparent !important;
}

.tabs-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--glass-border);
}

.tabs-content h4 {
    color: var(--primary) !important;
    margin-top: 20px !important;
}

/* Gallery */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    transition: all 0.5s ease !important;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(0.7);
}

/* Contact */
#contact-us {
    background: var(--dark) !important;
    padding: 80px 0 !important;
    border-top: 1px solid var(--glass-border);
}

#map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.contact-form {
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Micro-interactions */
.scroll-to-section a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--vibrant-gradient);
    transition: width .3s;
}

.scroll-to-section a:hover::after {
    width: 100%;
}