/* Massage Spa Brand Colors */
:root {
    --primary-color: #fb8805;
    --secondary-color: #014e81;
    --white: #ffffff;
    --black: #000000;
}

/* Apply brand colors */
.colorPrimary {
    color: #fb8805 !important;
}

.bgPrimary {
    background-color: #fb8805 !important;
}

/* Buttons */
.btn-primary,
.mo_btn,
button[type="submit"] {
    background-color: #fb8805 !important;
    border-color: #fb8805 !important;
}

.btn-primary:hover,
.mo_btn:hover {
    background-color: #014e81 !important;
    border-color: #014e81 !important;
}

/* Section Titles */
.sectionTitle h5.primaryFont {
    color: #fb8805;
}

/* Icons */
.icon_box_01 h4 i,
.icon_box_04 i {
    color: #fb8805;
}

/* Package Items */
.package_item h5 span:first-of-type {
    color: #fb8805;
}

/* Service Items */
.serviceItem_01:hover .ib_box i {
    color: #fb8805;
}

/* Testimonials */
.test_author span {
    color: #014e81;
}

/* Widgets */
.widget_title {
    color: #fb8805;
}

/* Info Boxes */
.info_box i {
    color: #fb8805;
}

/* Social Icons Hover */
.copy_social a:hover {
    background-color: #fb8805;
}

/* Back to Top Button */
#backtotop {
    background-color: #fb8805;
}

#backtotop:hover {
    background-color: #014e81;
}

/* Links */
a {
    color: #014e81;
}

a:hover {
    color: #fb8805;
}

/* Navigation Active/Current */
.mainMenu ul li.current-menu-item a,
.mainMenu ul li:hover > a {
    color: #fb8805 !important;
}

/* Appointment Form */
.appointment_form .mo_btn {
    background-color: #fb8805;
}

.appointment_form .mo_btn:hover {
    background-color: #014e81;
}

/* Welcome Section Action Boxes */
.actionBox .mo_btn {
    background-color: #fb8805;
}

.actionBox .mo_btn:hover {
    background-color: #014e81;
}

/* Footer Newsletter Button */
.mc4wp-form-fields button {
    background-color: #fb8805;
}

.mc4wp-form-fields button:hover {
    background-color: #014e81;
}

/* =============================================
   MASSAGE SPA - CUSTOM STYLES
   Colors: #fb8805 (Primary), #014e81 (Secondary)
   ============================================= */

/* Hero Section Styles */
.hero_section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero_bg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.7) 100%);
}

.container {
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero_content {
    padding: 60px 0;
    animation: fadeInUp 1s ease-out;
}

.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 136, 5, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #fb8805;
    margin-bottom: 25px;
    border: 1px solid rgba(251, 136, 5, 0.2);
}

.badge_icon {
    font-size: 12px;
    animation: pulse 2s infinite;
}

.hero_title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #014e81;
}

.title_light {
    font-weight: 300;
    color: #fb8805;
}

.hero_tagline {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 500;
    color: #333;
}

.tagline_word {
    position: relative;
}

.tagline_word:nth-child(1) { color: #fb8805; }
.tagline_word:nth-child(3) { color: #fb8805; }
.tagline_word:nth-child(5) { color: #fb8805; }

.tagline_dot {
    color: #014e81;
    font-weight: bold;
}

.hero_description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 35px;
    max-width: 550px;
}

/* Hero Buttons */
.hero_buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fb8805;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(251, 136, 5, 0.3);
}

.btn_primary:hover {
    background: #014e81;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(1, 78, 129, 0.3);
    color: #fff;
}

.btn_primary i {
    transition: transform 0.3s ease;
}

.btn_primary:hover i {
    transform: translateX(5px);
}

.btn_outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #014e81;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #014e81;
    transition: all 0.3s ease;
}

.btn_outline:hover {
    background: #014e81;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(1, 78, 129, 0.2);
}

.btn_outline:hover i {
    transform: translateX(5px);
}

/* Hero Features */
.hero_features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.feature_item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature_icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(251,136,5,0.1) 0%, rgba(1,78,129,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fb8805;
}

.feature_text h6 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: #014e81;
}

.feature_text p {
    font-size: 12px;
    margin: 0;
    color: #888;
}

/* Hero Image */
.hero_image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.image_wrapper {
    position: relative;
    text-align: center;
}

.hero_model_img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(20px 30px 40px rgba(0,0,0,0.15));
    animation: floatImage 4s ease-in-out infinite;
}

/* Floating Elements */
.floating_element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(251, 136, 5, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fb8805;
    animation: float 3s ease-in-out infinite;
}

.element_1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.element_2 {
    bottom: 25%;
    right: -5%;
    animation-delay: 1s;
    background: rgba(1, 78, 129, 0.1);
    color: #014e81;
}

/* Experience Badge */
.experience_badge {
    position: absolute;
    bottom: 10%;
    right: -5%;
    background: #014e81;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(1,78,129,0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.exp_number {
    font-size: 40px;
    font-weight: 800;
    color: #fb8805;
    line-height: 1;
}

.exp_number span {
    font-size: 24px;
    color: #fff;
}

.exp_text {
    font-size: 12px;
    color: #fff;
    line-height: 1.3;
    font-weight: 500;
}

/* Hero Wave */
.hero_wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero_wave svg {
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet Devices */
@media (max-width: 991px) {
    .hero_title {
        font-size: 55px;
    }

    .hero_tagline {
        font-size: 22px;
        gap: 10px;
    }

    .hero_description {
        font-size: 16px;
    }

    .hero_features {
        gap: 20px;
    }

    .feature_item {
        flex: 1;
        min-width: 120px;
    }

    .hero_image {
        margin-top: 50px;
    }

    .experience_badge {
        right: 10%;
        bottom: 5%;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .hero_section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero_content {
        text-align: center;
        padding: 30px 0;
    }

    .hero_badge {
        margin: 0 auto 25px;
    }

    .hero_title {
        font-size: 40px;
    }

    .hero_tagline {
        font-size: 18px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero_description {
        margin: 0 auto 30px;
    }

    .hero_buttons {
        justify-content: center;
    }

    .hero_features {
        justify-content: center;
    }

    .feature_item {
        flex-direction: column;
        text-align: center;
    }

    .experience_badge {
        right: 5%;
        bottom: 0;
        padding: 10px 18px;
    }

    .exp_number {
        font-size: 30px;
    }

    .exp_number span {
        font-size: 18px;
    }

    .exp_text {
        font-size: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero_title {
        font-size: 32px;
    }

    .hero_tagline {
        font-size: 14px;
    }

    .btn_primary, .btn_outline {
        padding: 10px 25px;
        font-size: 14px;
    }

    .hero_buttons {
        gap: 12px;
    }

    .feature_icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .feature_text h6 {
        font-size: 12px;
    }

    .feature_text p {
        font-size: 10px;
    }

    .experience_badge {
        padding: 8px 15px;
    }

    .exp_number {
        font-size: 24px;
    }

    .exp_text {
        font-size: 9px;
    }
}

/* =============================================
   HERO IMAGE - CIRCULAR STATIC STYLES
   ============================================= */

.hero_image {
    position: relative;
    padding: 20px;
}

.image_wrapper {
    position: relative;
    text-align: center;
}

/* Circular Image Container */
.circle_image_container {
    width: 450px !important;
    height: 450px !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 8px solid #fff;
    background: linear-gradient(135deg, #fb8805, #014e81);
}

/* Circular Image */
.hero_circle_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.hero_circle_img:hover {
    transform: scale(1.05);
}

/* Optional: Decorative ring around circle */
.circle_image_container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 2px dashed #fb8805;
    opacity: 0.3;
    pointer-events: none;
}

.circle_image_container::after {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border-radius: 50%;
    border: 1px solid rgba(251, 136, 5, 0.2);
    pointer-events: none;
}

/* Experience Badge - Static (No Floating) */
.experience_badge {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background: #014e81;
    padding: 18px 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(1, 78, 129, 0.3);
    z-index: 10;
}

/* Remove floating animation - static position */
.static_badge {
    animation: none !important;
}

.exp_number {
    font-size: 42px;
    font-weight: 800;
    color: #fb8805;
    line-height: 1;
}

.exp_number span {
    font-size: 28px;
    color: #fff;
}

.exp_text {
    font-size: 13px;
    color: #fff;
    line-height: 1.3;
    font-weight: 500;
}

/* Responsive Styles for Circular Image */
@media (max-width: 1200px) {
    .circle_image_container {
        width: 380px;
        height: 380px;
    }

    .experience_badge {
        padding: 14px 22px;
        bottom: 20px;
        right: 10px;
    }

    .exp_number {
        font-size: 34px;
    }

    .exp_text {
        font-size: 11px;
    }
}

@media (max-width: 991px) {
    .hero_image {
        margin-top: 50px;
    }

    .circle_image_container {
        width: 350px;
        height: 350px;
    }

    .experience_badge {
        padding: 12px 18px;
        bottom: 15px;
        right: 5px;
    }

    .exp_number {
        font-size: 28px;
    }

    .exp_number span {
        font-size: 20px;
    }

    .exp_text {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .circle_image_container {
        width: 280px;
        height: 280px;
    }

    .experience_badge {
        padding: 10px 15px;
        bottom: 10px;
        right: 0;
    }

    .exp_number {
        font-size: 24px;
    }

    .exp_number span {
        font-size: 16px;
    }

    .exp_text {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .circle_image_container {
        width: 240px;
        height: 240px;
        border-width: 5px;
    }

    .experience_badge {
        padding: 8px 12px;
        gap: 8px;
    }

    .exp_number {
        font-size: 20px;
    }

    .exp_number span {
        font-size: 14px;
    }

    .exp_text {
        font-size: 8px;
    }
}

.actionBox{
    background: url(../images/11.jpeg) no-repeat right bottom #f0f0f1 !important;
}
/* =============================================
   ENHANCED ACTION BOXES V2 - WITH IMAGE BACKGROUND
   ============================================= */

.enhanced_action_box_v2 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Background Image */
.enhanced_action_box_v2 .action_box_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.enhanced_action_box_v2:hover .action_box_bg {
    transform: scale(1.08);
}

/* Dark Overlay */
.enhanced_action_box_v2 .action_box_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.enhanced_action_box_v2:hover .action_box_overlay {
    background: linear-gradient(135deg, rgba(251, 136, 5, 0.85) 0%, rgba(1, 78, 129, 0.85) 100%);
}

/* Content */
.enhanced_action_box_v2 .action_box_content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Action Icon */
.enhanced_action_box_v2 .action_icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.enhanced_action_box_v2 .action_icon i {
    font-size: 30px;
    color: #fb8805;
    transition: all 0.3s ease;
}

.enhanced_action_box_v2:hover .action_icon {
    background: #fff;
}

.enhanced_action_box_v2:hover .action_icon i {
    color: #014e81;
}

/* Action Tag */
.enhanced_action_box_v2 .action_tag {
    display: inline-block;
    background: #fb8805;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content;
}

/* Heading */
.enhanced_action_box_v2 h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

/* Description */
.enhanced_action_box_v2 p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

/* Features */
.enhanced_action_box_v2 .action_features_v2 {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.enhanced_action_box_v2 .action_features_v2 span {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.enhanced_action_box_v2 .action_features_v2 span i {
    color: #fb8805;
    font-size: 12px;
}

/* Button */
.enhanced_action_box_v2 .action_btn_v2 {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    color: #014e81;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
}

.enhanced_action_box_v2 .action_btn_v2 span {
    font-size: 14px;
}

.enhanced_action_box_v2 .action_btn_v2 i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.enhanced_action_box_v2 .action_btn_v2:hover {
    background: #fb8805;
    color: #fff;
    transform: translateX(5px);
}

.enhanced_action_box_v2 .action_btn_v2:hover i {
    transform: translateX(5px);
}

/* Right alignment for second box */
.action_box_2_v2 .action_icon i {
    color: #014e81;
}

.action_box_2_v2:hover .action_icon i {
    color: #fb8805;
}

/* Responsive */
@media (max-width: 991px) {
    .enhanced_action_box_v2 {
        min-height: 350px;
        margin-bottom: 30px;
    }

    .enhanced_action_box_v2 .action_box_content {
        padding: 30px 25px;
    }

    .enhanced_action_box_v2 h3 {
        font-size: 24px;
    }

    .enhanced_action_box_v2 p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .enhanced_action_box_v2 {
        min-height: auto;
    }

    .enhanced_action_box_v2 .action_box_content {
        padding: 25px 20px;
    }

    .enhanced_action_box_v2 .action_icon {
        width: 50px;
        height: 50px;
    }

    .enhanced_action_box_v2 .action_icon i {
        font-size: 24px;
    }

    .enhanced_action_box_v2 h3 {
        font-size: 22px;
    }

    .enhanced_action_box_v2 .action_features_v2 {
        gap: 12px;
    }

    .enhanced_action_box_v2 .action_btn_v2 {
        padding: 10px 20px;
    }
}



/* =============================================
   ENHANCED WELCOME SECTION V4 - CARDS WITH BACKGROUND
   ============================================= */

.enhanced_welcome_v2 {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fef9f2 100%);
    overflow: hidden;
}

/* Welcome Icon Ring */
.welcome_icon_ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fb8805, #014e81);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: ringPulse 2s ease-in-out infinite;
}

.welcome_icon_ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb8805, #014e81);
    opacity: 0.3;
    z-index: -1;
    animation: ringRipple 2s ease-in-out infinite;
}

.welcome_icon_ring i {
    font-size: 36px;
    color: #fff;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ringRipple {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

/* Title Divider */
.title_divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px auto 25px;
}

.title_divider span {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #fb8805, #014e81);
    border-radius: 2px;
}

.title_divider i {
    font-size: 22px;
    color: #fb8805;
    animation: flowerRotate 8s linear infinite;
}

@keyframes flowerRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Cards Grid */
.cards_grid {
    margin-top: 50px;
}

/* Service Card V4 - With Background Colors */
.service_card_v4 {
    position: relative;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

/* Different Background Colors for Each Card */
.card_1 {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d4 100%);
    border-bottom: 4px solid #fb8805;
}

.card_2 {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4eaf0 100%);
    border-bottom: 4px solid #014e81;
}

.card_3 {
    background: linear-gradient(135deg, #f0f9f0 0%, #e0f0e0 100%);
    border-bottom: 4px solid #2ecc71;
}

.card_4 {
    background: linear-gradient(135deg, #fef5e8 0%, #fde8d4 100%);
    border-bottom: 4px solid #e67e22;
}

/* Hover Effect - All Cards */
.service_card_v4:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Individual Card Hover Effects */
.card_1:hover {
    background: linear-gradient(135deg, #fb8805, #ffaa44);
    border-bottom: 4px solid #014e81;
}

.card_2:hover {
    background: linear-gradient(135deg, #014e81, #2a6b9e);
    border-bottom: 4px solid #fb8805;
}

.card_3:hover {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-bottom: 4px solid #fb8805;
}

.card_4:hover {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-bottom: 4px solid #014e81;
}

/* Card Icon */
.service_card_v4 .card_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service_card_v4 .card_icon i {
    font-size: 32px;
    transition: all 0.3s ease;
}

/* Card Icon Colors - Normal State */
.card_1 .card_icon i { color: #fb8805; }
.card_2 .card_icon i { color: #014e81; }
.card_3 .card_icon i { color: #27ae60; }
.card_4 .card_icon i { color: #e67e22; }

/* Card Icon Hover State */
.service_card_v4:hover .card_icon {
    background: #fff;
    transform: scale(1.1) rotate(360deg);
}

.service_card_v4:hover .card_icon i {
    color: #014e81;
}

.card_2:hover .card_icon i,
.card_3:hover .card_icon i,
.card_4:hover .card_icon i {
    color: #fb8805;
}

/* Card Heading */
.service_card_v4 h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.card_1 h3 { color: #fb8805; }
.card_2 h3 { color: #014e81; }
.card_3 h3 { color: #27ae60; }
.card_4 h3 { color: #e67e22; }

.service_card_v4:hover h3 {
    color: #fff;
}

/* Card Description */
.service_card_v4 p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card_1 p,
.card_2 p,
.card_3 p,
.card_4 p {
    color: #555;
}

.service_card_v4:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Card Features */
.service_card_v4 .card_features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.service_card_v4 .card_features span {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.card_1 .card_features span { color: #fb8805; }
.card_2 .card_features span { color: #014e81; }
.card_3 .card_features span { color: #27ae60; }
.card_4 .card_features span { color: #e67e22; }

.service_card_v4:hover .card_features span {
    color: rgba(255, 255, 255, 0.9);
}

.service_card_v4 .card_features span i {
    font-size: 11px;
    color: inherit;
}

/* Card Button */
.service_card_v4 .card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.card_1 .card_btn { color: #fb8805; }
.card_2 .card_btn { color: #014e81; }
.card_3 .card_btn { color: #27ae60; }
.card_4 .card_btn { color: #e67e22; }

.service_card_v4:hover .card_btn {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card_1:hover .card_btn { color: #fb8805; }
.card_2:hover .card_btn { color: #014e81; }
.card_3:hover .card_btn { color: #27ae60; }
.card_4:hover .card_btn { color: #e67e22; }

.service_card_v4 .card_btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service_card_v4 .card_btn:hover i {
    transform: translateX(5px);
}

/* Card Badge */
.service_card_v4 .card_badge {
    position: absolute;
    top: 15px;
    right: -25px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 25px;
    transform: rotate(45deg);
    width: 100px;
    text-align: center;
    letter-spacing: 1px;
}

.card_1 .card_badge { background: #fb8805; }
.card_2 .card_badge { background: #014e81; }
.card_3 .card_badge { background: #27ae60; }
.card_4 .card_badge { background: #e67e22; }

/* Responsive Styles */
@media (max-width: 1199px) {
    .service_card_v4 h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .enhanced_welcome_v2 {
        padding: 60px 0;
    }

    .cards_grid {
        margin-top: 30px;
    }

    .service_card_v4 {
        margin-bottom: 25px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .welcome_icon_ring {
        width: 60px;
        height: 60px;
    }

    .welcome_icon_ring i {
        font-size: 28px;
    }

    .service_card_v4 h3 {
        font-size: 18px;
    }

    .service_card_v4 .card_btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .enhanced_welcome_v2 {
        padding: 40px 0;
    }

    .service_card_v4 {
        padding: 25px 15px;
    }

    .service_card_v4 .card_icon {
        width: 55px;
        height: 55px;
    }

    .service_card_v4 .card_icon i {
        font-size: 25px;
    }

    .card_features {
        flex-direction: column;
        align-items: center;
        gap: 8px !important;
    }
}


/* =============================================
   SIGNATURE SERVICES SECTION
   ============================================= */

.signature_services_section {
    padding: 80px 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fef9f2 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

/* Section Header */
.services_section_header {
    margin-bottom: 20px !important;
    text-align: center !important;
}

.services_icon_ring {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
    background: linear-gradient(135deg, #fb8805, #014e81) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: servicesRingPulse 2s ease-in-out infinite !important;
}

.services_icon_ring i {
    font-size: 36px !important;
    color: #fff !important;
}

@keyframes servicesRingPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.services_subtitle {
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    color: #fb8805 !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
}

.services_main_title {
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    color: #014e81 !important;
}

.services_main_title .colorPrimary {
    color: #fb8805 !important;
}

.services_title_divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    margin: 20px auto 25px !important;
}

.services_title_divider span {
    width: 60px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #fb8805, #014e81) !important;
    border-radius: 2px !important;
}

.services_title_divider i {
    font-size: 22px !important;
    color: #fb8805 !important;
    animation: servicesFlowerRotate 8s linear infinite !important;
}

@keyframes servicesFlowerRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.services_description {
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: #666 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Services Grid */
.services_grid {
    margin-top: 50px !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

/* Service Offer Card */
.service_offer_card {
    background: #fff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.service_offer_card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Service Offer Image */
.service_offer_image {
    position: relative !important;
    overflow: hidden !important;
    height: 250px !important;
    width: 100% !important;
}

.service_offer_image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.service_offer_card:hover .service_offer_image img {
    transform: scale(1.08) !important;
}

/* Service Offer Overlay */
.service_offer_overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(1, 78, 129, 0.85) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.service_offer_card:hover .service_offer_overlay {
    opacity: 1 !important;
}

.service_offer_quick_btn {
    background: #fb8805 !important;
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    transform: translateY(20px) !important;
}

.service_offer_card:hover .service_offer_quick_btn {
    transform: translateY(0) !important;
}

.service_offer_quick_btn:hover {
    background: #fff !important;
    color: #014e81 !important;
    transform: translateY(-3px) !important;
}

/* Service Offer Content */
.service_offer_content {
    padding: 25px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.service_offer_content h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #014e81 !important;
    margin-bottom: 12px !important;
    transition: color 0.3s ease !important;
}

.service_offer_card:hover .service_offer_content h3 {
    color: #fb8805 !important;
}

.service_offer_content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin-bottom: 20px !important;
}

/* Service Offer Meta */
.service_offer_meta {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    flex-wrap: wrap !important;
}

.service_offer_meta span {
    font-size: 12px !important;
    color: #888 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.service_offer_meta span i {
    color: #fb8805 !important;
    font-size: 13px !important;
}

/* Service Offer Button */
.service_offer_btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #fb8805 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    margin-top: auto !important;
}

.service_offer_btn:hover {
    gap: 12px !important;
    color: #014e81 !important;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .services_main_title {
        font-size: 36px !important;
    }
    .service_offer_content h3 {
        font-size: 18px !important;
    }
}

@media (max-width: 991px) {
    .signature_services_section {
        padding: 60px 0 !important;
    }
    .services_main_title {
        font-size: 32px !important;
    }
    .service_offer_image {
        height: 220px !important;
    }
}

@media (max-width: 768px) {
    .services_icon_ring {
        width: 60px !important;
        height: 60px !important;
    }
    .services_icon_ring i {
        font-size: 28px !important;
    }
    .services_main_title {
        font-size: 28px !important;
    }
    .service_offer_image {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .services_main_title {
        font-size: 24px !important;
    }
    .service_offer_image {
        height: 180px !important;
    }
    .service_offer_content {
        padding: 15px !important;
    }
}