/* ============================================
   PREMIUM NAVBAR STYLES
   ============================================ */

:root {
    --nav-primary: #0A192F;
    --nav-secondary: #1E3A8A;
    --nav-accent: #2563EB;
    --nav-light: #3B82F6;
    --nav-white: #FFFFFF;
    --nav-gray: #94A3B8;
    --nav-gold: #F59E0B;
    --nav-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --nav-shadow-scroll: 0 5px 30px rgba(0, 0, 0, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Navbar Container */
.royal-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--nav-shadow);
    z-index: 9999;
    transition: var(--transition-smooth);
    padding: 16px 0;
}

/* Scrolled State */
.royal-navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--nav-shadow-scroll);
}

/* Navbar Container */
.royal-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* ========== LOGO STYLES ========== */
.royal-logo-wrapper {
    position: relative;
}

.royal-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.royal-logo-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--nav-accent), var(--nav-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.royal-logo-icon i {
    font-size: 26px;
    color: var(--nav-white);
    position: relative;
    z-index: 2;
}

.royal-logo-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--nav-accent), var(--nav-secondary));
    border-radius: 12px;
    opacity: 0.6;
    animation: royalPulse 2s infinite;
}

@keyframes royalPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.royal-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.royal-logo-main {
    font-size: 22px;
    font-weight: 800;
    color: var(--nav-primary);
    letter-spacing: -0.5px;
}

.royal-logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--nav-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.royal-logo-link:hover .royal-logo-icon {
    transform: scale(1.05) rotate(5deg);
}

/* ========== NAVIGATION MENU ========== */
.royal-nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.royal-nav-item {
    position: relative;
}

.royal-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--nav-primary);
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.royal-nav-link i {
    font-size: 18px;
    color: var(--nav-accent);
    transition: var(--transition-smooth);
}

.royal-nav-link span {
    position: relative;
    z-index: 2;
}

/* Hover Effect */
.royal-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--nav-accent), var(--nav-secondary));
    border-radius: 50px;
    transition: width 0.4s ease;
    z-index: 1;
}

.royal-nav-link:hover::before,
.royal-nav-link.active::before {
    width: 100%;
}

.royal-nav-link:hover,
.royal-nav-link.active {
    color: var(--nav-white);
}

.royal-nav-link:hover i,
.royal-nav-link.active i {
    color: var(--nav-white);
    transform: translateY(-2px);
}

/* Underline Indicator */
.royal-nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--nav-accent), var(--nav-gold));
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.royal-nav-item:hover::after,
.royal-nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ========== RIGHT ACTIONS ========== */
.royal-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.royal-appointment-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--nav-accent), var(--nav-secondary));
    color: var(--nav-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.royal-appointment-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.royal-appointment-btn:hover::before {
    width: 300px;
    height: 300px;
}

.royal-appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.royal-appointment-btn i {
    font-size: 16px;
    transition: transform 0.3s;
}

.royal-appointment-btn:hover i {
    transform: rotate(-10deg);
}

/* ========== MOBILE TOGGLE BUTTON ========== */
.royal-nav-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--nav-accent), var(--nav-secondary));
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
}

.royal-nav-toggle i {
    font-size: 24px;
    color: var(--nav-white);
    transition: var(--transition-smooth);
}

.royal-nav-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

/* ========== MOBILE OVERLAY ========== */
.royal-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.royal-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    .royal-nav-container {
        padding: 0 20px;
    }
    
    .royal-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--nav-white), #F8FAFC);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 30px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }
    
    .royal-nav-menu.active {
        right: 0;
    }
    
    .royal-nav-item {
        width: 100%;
    }
    
    .royal-nav-link {
        justify-content: center;
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .royal-nav-link::before {
        border-radius: 12px;
    }
    
    .royal-nav-toggle {
        display: flex;
    }
    
    .royal-appointment-btn span {
        display: none;
    }
    
    .royal-appointment-btn {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .royal-navbar {
        padding: 12px 0;
    }
    
    .royal-nav-container {
        padding: 0 16px;
    }
    
    .royal-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .royal-logo-icon i {
        font-size: 20px;
    }
    
    .royal-logo-main {
        font-size: 18px;
    }
    
    .royal-logo-sub {
        font-size: 10px;
    }
    
    .royal-nav-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .royal-nav-menu {
        width: 100%;
        right: -100%;
    }
}


/* ============================================
   PREMIUM HERO SECTION STYLES
   ============================================ */

:root {
    --hero-primary: #0A192F;
    --hero-secondary: #1E3A8A;
    --hero-accent: #2563EB;
    --hero-light: #3B82F6;
    --hero-white: #FFFFFF;
    --hero-gold: #F59E0B;
    --hero-text-light: #DBEAFE;
    --hero-text-gray: #94A3B8;
    --navbar-height: 80px; /* Navbar height variable */
}

/* Hero Section Container */
.royal-hero-section {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: var(--navbar-height); /* Important: Gap for navbar */
    padding-bottom: 60px;
}

/* For scrolled state adjustment */
.royal-navbar.scrolled ~ main .royal-hero-section,
body:has(.royal-navbar.scrolled) .royal-hero-section {
    padding-top: 70px; /* Reduced padding when navbar shrinks */
}

/* Background Wrapper */
.royal-hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.royal-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: royalHeroZoom 20s ease-out forwards;
}

@keyframes royalHeroZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Gradient Overlay */
.royal-hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 25, 47, 0.88) 0%,
        rgba(30, 58, 138, 0.8) 50%,
        rgba(37, 99, 235, 0.65) 100%);
    z-index: 2;
}

/* Pattern Overlay */
.royal-hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="none" stroke="white" stroke-width="0.5" d="M10,10 L90,10 M10,20 L90,20 M10,30 L90,30 M10,40 L90,40 M10,50 L90,50 M10,60 L90,60 M10,70 L90,70 M10,80 L90,80 M10,90 L90,90 M10,10 L10,90 M20,10 L20,90 M30,10 L30,90 M40,10 L40,90 M50,10 L50,90 M60,10 L60,90 M70,10 L70,90 M80,10 L80,90 M90,10 L90,90"/></svg>');
    background-size: 30px 30px;
    z-index: 2;
}

/* Particles Container */
.royal-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Floating Elements */
.royal-hero-float-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.royal-float-1,
.royal-float-2,
.royal-float-3,
.royal-float-4 {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.12);
    animation: royalFloat 15s infinite ease-in-out;
}

.royal-float-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    font-size: 32px;
}

.royal-float-2 {
    top: 70%;
    right: 8%;
    animation-delay: 2s;
    font-size: 28px;
}

.royal-float-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 4s;
    font-size: 40px;
}

.royal-float-4 {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
    font-size: 36px;
}

@keyframes royalFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Hero Container */
.royal-hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0;
}

/* Content Wrapper */
.royal-hero-content-wrapper {
    max-width: 800px;
    animation: royalHeroFadeInUp 1s ease-out;
}

@keyframes royalHeroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.royal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    color: var(--hero-text-light);
    letter-spacing: 1px;
}

.royal-hero-badge-icon {
    color: var(--hero-gold);
    font-size: 12px;
    animation: royalBadgePulse 2s infinite;
}

@keyframes royalBadgePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hero Title */
.royal-hero-title {
    margin-bottom: 25px;
    line-height: 1.1;
}

.royal-hero-title-line1 {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--hero-white);
    opacity: 0.9;
    letter-spacing: -1px;
}

.royal-hero-title-line2 {
    display: block;
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--hero-white), var(--hero-light), var(--hero-accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -2px;
    animation: royalTitleGradient 3s ease infinite;
}

@keyframes royalTitleGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hero Description */
.royal-hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--hero-text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Buttons */
.royal-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.royal-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.royal-btn-primary {
    background: linear-gradient(135deg, var(--hero-accent), var(--hero-secondary));
    color: var(--hero-white);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.royal-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--hero-secondary), var(--hero-accent));
    transition: left 0.4s ease;
    z-index: -1;
}

.royal-btn-primary:hover::before {
    left: 0;
}

.royal-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.royal-btn-primary:hover i {
    transform: translateX(5px);
}

.royal-btn-outline {
    background: transparent;
    color: var(--hero-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.royal-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.royal-btn-outline:hover::before {
    width: 100%;
}

.royal-btn-outline:hover {
    border-color: var(--hero-white);
    transform: translateY(-3px);
}

.royal-btn-primary i,
.royal-btn-outline i {
    transition: transform 0.3s;
}

.royal-btn-primary:hover i {
    transform: translateX(5px);
}

.royal-btn-outline:hover i {
    transform: translateX(5px);
}

/* Stats Row */
.royal-hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.royal-stat-item {
    text-align: center;
}

.royal-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--hero-white);
    line-height: 1;
    margin-bottom: 5px;
}

.royal-stat-label {
    font-size: 14px;
    color: var(--hero-text-light);
    font-weight: 500;
}

.royal-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.royal-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: royalScrollBounce 2s infinite;
}

@keyframes royalScrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.royal-scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.royal-scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--hero-white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: royalScrollWheel 1.5s infinite;
}

@keyframes royalScrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.royal-scroll-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    .royal-hero-container {
        padding: 20px 30px 0;
    }
    
    .royal-hero-title-line1 {
        font-size: 48px;
    }
    
    .royal-hero-title-line2 {
        font-size: 60px;
    }
    
    .royal-hero-description {
        font-size: 18px;
    }
    
    .royal-hero-stats {
        padding: 15px 25px;
    }
    
    .royal-stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .royal-hero-section {
        min-height: auto;
        padding-top: 90px; /* Slightly less on mobile */
        padding-bottom: 60px;
    }
    
    .royal-hero-container {
        padding: 10px 20px 0;
    }
    
    .royal-hero-title-line1 {
        font-size: 36px;
    }
    
    .royal-hero-title-line2 {
        font-size: 44px;
    }
    
    .royal-hero-description {
        font-size: 16px;
    }
    
    .royal-hero-buttons {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .royal-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .royal-hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        width: 100%;
        border-radius: 30px;
    }
    
    .royal-stat-divider {
        display: none;
    }
    
    .royal-stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .royal-stat-number {
        font-size: 24px;
    }
    
    .royal-stat-label {
        font-size: 12px;
    }
    
    .royal-hero-scroll-indicator {
        display: none;
    }
    
    .royal-float-1,
    .royal-float-2,
    .royal-float-3,
    .royal-float-4 {
        display: none;
    }
}

@media (max-width: 480px) {
    .royal-hero-section {
        padding-top: 80px;
    }
    
    .royal-hero-title-line1 {
        font-size: 28px;
    }
    
    .royal-hero-title-line2 {
        font-size: 36px;
    }
    
    .royal-hero-badge {
        font-size: 10px;
        padding: 6px 15px;
    }
    
    .royal-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .royal-btn {
        justify-content: center;
        width: 100%;
    }
}

/* Desktop Large Screens */
@media (min-width: 1400px) {
    .royal-hero-container {
        max-width: 1400px;
        padding: 30px 40px 0;
    }
    
    .royal-hero-title-line1 {
        font-size: 72px;
    }
    
    .royal-hero-title-line2 {
        font-size: 90px;
    }
}





/* ============================================
   PREMIUM FEATURES SECTION STYLES
   ============================================ */

:root {
    --features-primary: #0A192F;
    --features-secondary: #1E3A8A;
    --features-accent: #2563EB;
    --features-light: #3B82F6;
    --features-white: #FFFFFF;
    --features-bg-light: #F8FAFC;
    --features-gray: #64748B;
    --features-border: #E2E8F0;
    --features-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
    --features-shadow-hover: 0 25px 40px -12px rgba(37, 99, 235, 0.15);
}

/* Main Section */
.royal-features-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--features-white) 0%, var(--features-bg-light) 100%);
    overflow: hidden;
}

/* Container */
.royal-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ========== SECTION HEADER STYLES ========== */
.royal-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.royal-features-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 58, 138, 0.05));
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.royal-features-badge-icon {
    color: var(--features-accent);
    font-size: 12px;
    animation: royalBadgePulse 2s infinite;
}

.royal-features-badge span:not(.royal-features-badge-icon) {
    font-size: 14px;
    font-weight: 600;
    color: var(--features-accent);
    letter-spacing: 1px;
}

@keyframes royalBadgePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.royal-features-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--features-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.royal-features-title-highlight {
    background: linear-gradient(135deg, var(--features-accent), var(--features-secondary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.royal-features-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--features-accent), var(--features-secondary));
    border-radius: 3px;
}

.royal-features-subtitle {
    font-size: 18px;
    color: var(--features-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== FEATURES GRID ========== */
.royal-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Feature Card */
.royal-feature-card {
    position: relative;
    background: var(--features-white);
    padding: 40px 28px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--features-shadow);
    border: 1px solid var(--features-border);
    overflow: hidden;
    cursor: pointer;
}

.royal-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--features-shadow-hover);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Icon Wrapper */
.royal-feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.royal-feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--features-accent), var(--features-secondary));
    border-radius: 30px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
    opacity: 0.1;
}

.royal-feature-card:hover .royal-feature-icon-bg {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.15;
}

.royal-feature-icon-wrapper i {
    font-size: 40px;
    color: var(--features-accent);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.royal-feature-card:hover .royal-feature-icon-wrapper i {
    transform: scale(1.1);
    color: var(--features-secondary);
}

/* Feature Title */
.royal-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--features-primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.royal-feature-card:hover .royal-feature-title {
    color: var(--features-accent);
}

/* Feature Description */
.royal-feature-description {
    font-size: 15px;
    color: var(--features-gray);
    line-height: 1.6;
    margin: 0;
}

/* Hover Effect Overlay */
.royal-feature-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--features-accent), var(--features-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.royal-feature-card:hover .royal-feature-hover-effect {
    transform: scaleX(1);
}

/* ========== DECORATIVE ELEMENTS ========== */
.royal-features-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.royal-features-dot {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--features-accent), var(--features-secondary));
    opacity: 0.05;
}

.royal-features-dot-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.royal-features-dot-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.royal-features-dot-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
}

/* ========== RESPONSIVE STYLES (MOBILE OPTIMIZED) ========== */

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .royal-features-grid {
        gap: 25px;
    }
    
    .royal-feature-card {
        padding: 30px 20px;
    }
    
    .royal-feature-title {
        font-size: 20px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .royal-features-section {
        padding: 80px 0;
    }
    
    .royal-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .royal-features-title {
        font-size: 36px;
    }
    
    .royal-features-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .royal-feature-card {
        padding: 35px 25px;
    }
    
    .royal-feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .royal-feature-icon-wrapper i {
        font-size: 35px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .royal-features-section {
        padding: 60px 0;
    }
    
    .royal-features-header {
        margin-bottom: 40px;
    }
    
    .royal-features-badge {
        padding: 6px 18px;
        margin-bottom: 15px;
    }
    
    .royal-features-badge span:not(.royal-features-badge-icon) {
        font-size: 12px;
    }
    
    .royal-features-title {
        font-size: 28px;
    }
    
    .royal-features-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .royal-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .royal-feature-card {
        padding: 25px 18px;
    }
    
    .royal-feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    
    .royal-feature-icon-wrapper i {
        font-size: 30px;
    }
    
    .royal-feature-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .royal-feature-description {
        font-size: 13px;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .royal-features-section {
        padding: 50px 0;
    }
    
    .royal-features-container {
        padding: 0 16px;
    }
    
    .royal-features-header {
        margin-bottom: 35px;
    }
    
    .royal-features-badge {
        padding: 5px 14px;
        gap: 8px;
    }
    
    .royal-features-badge span:not(.royal-features-badge-icon) {
        font-size: 10px;
    }
    
    .royal-features-badge-icon {
        font-size: 8px;
    }
    
    .royal-features-title {
        font-size: 24px;
    }
    
    .royal-features-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .royal-features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .royal-feature-card {
        padding: 28px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .royal-feature-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }
    
    .royal-feature-icon-wrapper i {
        font-size: 32px;
    }
    
    .royal-feature-title {
        font-size: 18px;
    }
    
    .royal-feature-description {
        font-size: 14px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Hide decorative dots on mobile */
    .royal-features-decoration {
        display: none;
    }
}

/* Small Mobile (up to 380px) */
@media (max-width: 380px) {
    .royal-features-section {
        padding: 40px 0;
    }
    
    .royal-features-title {
        font-size: 22px;
    }
    
    .royal-feature-card {
        padding: 22px 16px;
    }
    
    .royal-feature-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .royal-feature-icon-wrapper i {
        font-size: 28px;
    }
    
    .royal-feature-title {
        font-size: 17px;
    }
    
    .royal-feature-description {
        font-size: 13px;
    }
}

/* ========== ANIMATION CLASSES FOR AOS ========== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Touch Device Optimization */
@media (hover: hover) {
    .royal-feature-card:hover {
        transform: translateY(-10px);
    }
}

@media (hover: none) {
    .royal-feature-card {
        transform: none !important;
    }
    
    .royal-feature-card:active {
        background: var(--features-bg-light);
    }
}

/* High Resolution Screens */
@media (min-width: 1920px) {
    .royal-features-container {
        max-width: 1400px;
    }
    
    .royal-features-grid {
        gap: 35px;
    }
    
    .royal-feature-card {
        padding: 45px 32px;
    }
}



/* ============================================
   PREMIUM BANNER SECTION STYLES
   ============================================ */

:root {
    --banner-primary: #0A192F;
    --banner-secondary: #1E3A8A;
    --banner-accent: #2563EB;
    --banner-light: #3B82F6;
    --banner-white: #FFFFFF;
    --banner-gold: #F59E0B;
    --banner-text-light: #DBEAFE;
    --banner-text-gray: #94A3B8;
    --banner-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Main Banner Section */
.royal-banner-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    margin: 40px 0;
}

/* Background Wrapper */
.royal-banner-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.royal-banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: royalBannerZoom 20s ease-out forwards;
}

@keyframes royalBannerZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Overlay */
.royal-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 25, 47, 0.92) 0%,
        rgba(30, 58, 138, 0.88) 50%,
        rgba(37, 99, 235, 0.85) 100%);
    z-index: 2;
}

/* Pattern Overlay */
.royal-banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="none" stroke="white" stroke-width="0.5" d="M10,10 L90,10 M10,20 L90,20 M10,30 L90,30 M10,40 L90,40 M10,50 L90,50 M10,60 L90,60 M10,70 L90,70 M10,80 L90,80 M10,90 L90,90 M10,10 L10,90 M20,10 L20,90 M30,10 L30,90 M40,10 L40,90 M50,10 L50,90 M60,10 L60,90 M70,10 L70,90 M80,10 L80,90 M90,10 L90,90"/></svg>');
    background-size: 40px 40px;
    z-index: 2;
}

/* Floating Elements */
.royal-banner-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.royal-banner-float-icon {
    position: absolute;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.08);
    animation: royalBannerFloat 12s infinite ease-in-out;
}

.royal-banner-float-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    font-size: 50px;
}

.royal-banner-float-2 {
    top: 60%;
    right: 8%;
    animation-delay: 3s;
    font-size: 40px;
}

.royal-banner-float-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 6s;
    font-size: 35px;
}

.royal-banner-float-4 {
    top: 30%;
    right: 15%;
    animation-delay: 9s;
    font-size: 45px;
}

@keyframes royalBannerFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Container */
.royal-banner-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Content Wrapper */
.royal-banner-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--banner-shadow);
}

/* Badge */
.royal-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.royal-banner-badge-icon {
    color: var(--banner-gold);
    font-size: 14px;
    animation: royalBadgePulse 1.5s infinite;
}

.royal-banner-badge span:not(.royal-banner-badge-icon) {
    font-size: 13px;
    font-weight: 600;
    color: var(--banner-white);
    letter-spacing: 1px;
}

/* Title */
.royal-banner-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--banner-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.royal-banner-title-highlight {
    background: linear-gradient(135deg, var(--banner-gold), #FCD34D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

/* Offer Section */
.royal-banner-offer {
    margin-bottom: 25px;
}

.royal-banner-offer-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--banner-gold), #FCD34D);
    color: var(--banner-primary);
    font-size: 14px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.royal-banner-description {
    font-size: 18px;
    color: var(--banner-text-light);
    line-height: 1.6;
}

.royal-banner-description strong {
    color: var(--banner-gold);
    font-weight: 700;
}

/* Features List */
.royal-banner-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.royal-banner-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--banner-white);
}

.royal-banner-feature-item i {
    color: var(--banner-gold);
    font-size: 14px;
}

/* Buttons */
.royal-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.royal-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.royal-banner-btn-primary {
    background: linear-gradient(135deg, var(--banner-gold), #FCD34D);
    color: var(--banner-primary);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
}

.royal-banner-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FCD34D, var(--banner-gold));
    transition: left 0.4s ease;
    z-index: -1;
}

.royal-banner-btn-primary:hover::before {
    left: 0;
}

.royal-banner-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.royal-banner-btn-primary i {
    transition: transform 0.3s;
}

.royal-banner-btn-primary:hover i {
    transform: translateX(5px);
}

.royal-banner-btn-outline {
    background: transparent;
    color: var(--banner-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.royal-banner-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--banner-white);
    transform: translateY(-3px);
}

/* Timer */
.royal-banner-timer {
    text-align: center;
}

.royal-timer-label {
    font-size: 13px;
    color: var(--banner-text-light);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.royal-timer-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.royal-timer-box {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 15px;
    min-width: 65px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.royal-timer-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--banner-gold);
    line-height: 1;
    font-family: monospace;
}

.royal-timer-text {
    font-size: 11px;
    color: var(--banner-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.royal-timer-sep {
    font-size: 32px;
    font-weight: 700;
    color: var(--banner-white);
    align-self: center;
}

/* Reveal Indicator */
.royal-banner-reveal {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 10;
}

.royal-banner-reveal-line {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--banner-gold), #FCD34D);
    animation: royalRevealLine 1.5s ease-out forwards;
}

@keyframes royalRevealLine {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .royal-banner-content {
        padding: 45px 35px;
        max-width: 650px;
    }
    
    .royal-banner-title {
        font-size: 42px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .royal-banner-section {
        padding: 80px 0;
        margin: 30px 0;
    }
    
    .royal-banner-content {
        padding: 40px 30px;
        max-width: 550px;
    }
    
    .royal-banner-title {
        font-size: 36px;
    }
    
    .royal-banner-description {
        font-size: 16px;
    }
    
    .royal-banner-features {
        gap: 15px;
    }
    
    .royal-banner-feature-item {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .royal-banner-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .royal-timer-number {
        font-size: 28px;
    }
    
    .royal-timer-box {
        padding: 8px 12px;
        min-width: 60px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .royal-banner-section {
        padding: 60px 0;
        margin: 20px 0;
    }
    
    .royal-banner-container {
        padding: 0 20px;
    }
    
    .royal-banner-content {
        padding: 35px 25px;
        border-radius: 30px;
    }
    
    .royal-banner-badge {
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .royal-banner-title {
        font-size: 30px;
    }
    
    .royal-banner-description {
        font-size: 15px;
    }
    
    .royal-banner-features {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .royal-banner-feature-item {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .royal-banner-buttons {
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .royal-banner-btn {
        padding: 11px 24px;
        font-size: 14px;
    }
    
    .royal-timer-wrapper {
        gap: 10px;
    }
    
    .royal-timer-number {
        font-size: 24px;
    }
    
    .royal-timer-box {
        padding: 6px 10px;
        min-width: 55px;
    }
    
    .royal-timer-text {
        font-size: 10px;
    }
    
    .royal-timer-sep {
        font-size: 24px;
    }
    
    .royal-banner-float-icon {
        display: none;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .royal-banner-section {
        padding: 50px 0;
        margin: 15px 0;
    }
    
    .royal-banner-container {
        padding: 0 16px;
    }
    
    .royal-banner-content {
        padding: 28px 20px;
        border-radius: 25px;
    }
    
    .royal-banner-badge {
        padding: 5px 12px;
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .royal-banner-badge span:not(.royal-banner-badge-icon) {
        font-size: 10px;
    }
    
    .royal-banner-badge-icon {
        font-size: 10px;
    }
    
    .royal-banner-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .royal-banner-offer-tag {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .royal-banner-description {
        font-size: 13px;
    }
    
    .royal-banner-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .royal-banner-feature-item {
        width: fit-content;
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .royal-banner-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .royal-banner-btn {
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
    }
    
    .royal-timer-wrapper {
        gap: 8px;
    }
    
    .royal-timer-number {
        font-size: 20px;
    }
    
    .royal-timer-box {
        padding: 5px 8px;
        min-width: 50px;
    }
    
    .royal-timer-text {
        font-size: 9px;
    }
    
    .royal-timer-sep {
        font-size: 20px;
    }
    
    .royal-timer-label {
        font-size: 11px;
    }
}

/* Small Mobile (up to 380px) */
@media (max-width: 380px) {
    .royal-banner-section {
        padding: 40px 0;
    }
    
    .royal-banner-content {
        padding: 22px 16px;
    }
    
    .royal-banner-title {
        font-size: 22px;
    }
    
    .royal-banner-description {
        font-size: 12px;
    }
    
    .royal-timer-number {
        font-size: 18px;
    }
    
    .royal-timer-box {
        padding: 4px 6px;
        min-width: 45px;
    }
    
    .royal-timer-text {
        font-size: 8px;
    }
}

/* Animation Classes for AOS */
[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}



/* ============================================
   PREMIUM SERVICES SECTION STYLES
   ============================================ */

:root {
    --services-primary: #0A192F;
    --services-secondary: #1E3A8A;
    --services-accent: #2563EB;
    --services-light: #3B82F6;
    --services-white: #FFFFFF;
    --services-bg-light: #F8FAFC;
    --services-gray: #64748B;
    --services-border: #E2E8F0;
    --services-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
    --services-shadow-hover: 0 25px 40px -12px rgba(37, 99, 235, 0.15);
}

/* Main Section */
.royal-services-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--services-white) 0%, var(--services-bg-light) 100%);
    overflow: hidden;
}

/* Container */
.royal-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ========== SECTION HEADER STYLES ========== */
.royal-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.royal-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 58, 138, 0.05));
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.royal-services-badge-icon {
    color: var(--services-accent);
    font-size: 12px;
    animation: royalServicesBadgePulse 2s infinite;
}

.royal-services-badge span:not(.royal-services-badge-icon) {
    font-size: 14px;
    font-weight: 600;
    color: var(--services-accent);
    letter-spacing: 1px;
}

@keyframes royalServicesBadgePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.royal-services-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--services-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.royal-services-title-highlight {
    background: linear-gradient(135deg, var(--services-accent), var(--services-secondary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.royal-services-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--services-accent), var(--services-secondary));
    border-radius: 3px;
}

.royal-services-subtitle {
    font-size: 18px;
    color: var(--services-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== SERVICES GRID ========== */
.royal-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Service Card */
.royal-service-card {
    position: relative;
    background: var(--services-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--services-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--services-border);
}

.royal-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--services-shadow-hover);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Image Wrapper */
.royal-service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.royal-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.royal-service-card:hover .royal-service-image {
    transform: scale(1.1);
}

/* Image Overlay */
.royal-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.royal-service-card:hover .royal-service-overlay {
    opacity: 1;
}

.royal-service-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--services-accent), var(--services-secondary));
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--services-white);
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.royal-service-card:hover .royal-service-link {
    transform: translateY(0);
}

.royal-service-link i {
    font-size: 14px;
    transition: transform 0.3s;
}

.royal-service-link:hover i {
    transform: translateX(5px);
}

/* Service Content */
.royal-service-content {
    padding: 25px;
    position: relative;
}

.royal-service-icon {
    position: absolute;
    top: -25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--services-accent), var(--services-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.royal-service-icon i {
    font-size: 24px;
    color: var(--services-white);
}

.royal-service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--services-primary);
    margin-bottom: 12px;
    padding-right: 40px;
    transition: color 0.3s ease;
}

.royal-service-card:hover .royal-service-title {
    color: var(--services-accent);
}

/* Longer Description Styles */
.royal-service-description {
    font-size: 14px;
    color: var(--services-gray);
    line-height: 1.7;
    margin-bottom: 18px;
    min-height: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Service Footer */
.royal-service-footer {
    border-top: 1px solid var(--services-border);
    padding-top: 15px;
    margin-top: 5px;
}

.royal-service-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--services-accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.royal-service-readmore i {
    font-size: 12px;
    transition: transform 0.3s;
}

.royal-service-readmore:hover {
    color: var(--services-secondary);
}

.royal-service-readmore:hover i {
    transform: translateX(5px);
}

/* ========== VIEW ALL BUTTON ========== */
.royal-services-footer {
    text-align: center;
}

.royal-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--services-accent), var(--services-secondary));
    color: var(--services-white);
    padding: 14px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.royal-services-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--services-secondary), var(--services-accent));
    transition: left 0.4s ease;
    z-index: -1;
}

.royal-services-btn:hover::before {
    left: 0;
}

.royal-services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.royal-services-btn i {
    transition: transform 0.3s;
}

.royal-services-btn:hover i {
    transform: translateX(5px);
}

/* ========== DECORATIVE BACKGROUND ========== */
.royal-services-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.royal-services-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--services-accent), var(--services-secondary));
    opacity: 0.03;
}

.royal-services-circle-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.royal-services-circle-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
}

.royal-services-circle-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 30%;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .royal-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .royal-service-title {
        font-size: 18px;
    }
    
    .royal-service-description {
        font-size: 13px;
        min-height: 80px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .royal-services-section {
        padding: 80px 0;
    }
    
    .royal-services-title {
        font-size: 36px;
    }
    
    .royal-services-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .royal-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .royal-service-image-wrapper {
        height: 200px;
    }
    
    .royal-service-description {
        min-height: 90px;
        -webkit-line-clamp: 4;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .royal-services-section {
        padding: 60px 0;
    }
    
    .royal-services-container {
        padding: 0 20px;
    }
    
    .royal-services-header {
        margin-bottom: 40px;
    }
    
    .royal-services-badge {
        padding: 6px 18px;
        margin-bottom: 15px;
    }
    
    .royal-services-badge span:not(.royal-services-badge-icon) {
        font-size: 12px;
    }
    
    .royal-services-title {
        font-size: 28px;
    }
    
    .royal-services-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .royal-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .royal-service-image-wrapper {
        height: 160px;
    }
    
    .royal-service-content {
        padding: 20px;
    }
    
    .royal-service-icon {
        width: 40px;
        height: 40px;
        top: -20px;
        right: 20px;
    }
    
    .royal-service-icon i {
        font-size: 18px;
    }
    
    .royal-service-title {
        font-size: 16px;
        padding-right: 35px;
        margin-bottom: 8px;
    }
    
    .royal-service-description {
        font-size: 12px;
        line-height: 1.6;
        min-height: 70px;
        -webkit-line-clamp: 3;
        margin-bottom: 12px;
    }
    
    .royal-services-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .royal-services-section {
        padding: 50px 0;
    }
    
    .royal-services-container {
        padding: 0 16px;
    }
    
    .royal-services-header {
        margin-bottom: 35px;
    }
    
    .royal-services-badge {
        padding: 5px 14px;
        gap: 8px;
    }
    
    .royal-services-badge span:not(.royal-services-badge-icon) {
        font-size: 10px;
    }
    
    .royal-services-badge-icon {
        font-size: 8px;
    }
    
    .royal-services-title {
        font-size: 24px;
    }
    
    .royal-services-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .royal-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .royal-service-image-wrapper {
        height: 200px;
    }
    
    .royal-service-content {
        padding: 22px;
    }
    
    .royal-service-icon {
        width: 45px;
        height: 45px;
        top: -22px;
        right: 22px;
    }
    
    .royal-service-icon i {
        font-size: 20px;
    }
    
    .royal-service-title {
        font-size: 18px;
        padding-right: 40px;
        margin-bottom: 10px;
    }
    
    .royal-service-description {
        font-size: 13px;
        line-height: 1.65;
        min-height: auto;
        -webkit-line-clamp: unset;
        display: block;
        margin-bottom: 15px;
    }
    
    .royal-services-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    /* Hide decorative circles on mobile */
    .royal-services-bg-decoration {
        display: none;
    }
}

/* Small Mobile (up to 380px) */
@media (max-width: 380px) {
    .royal-services-section {
        padding: 40px 0;
    }
    
    .royal-services-title {
        font-size: 22px;
    }
    
    .royal-service-image-wrapper {
        height: 170px;
    }
    
    .royal-service-content {
        padding: 18px;
    }
    
    .royal-service-icon {
        width: 38px;
        height: 38px;
        top: -19px;
        right: 18px;
    }
    
    .royal-service-icon i {
        font-size: 16px;
    }
    
    .royal-service-title {
        font-size: 16px;
    }
    
    .royal-service-description {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* ========== ANIMATION CLASSES FOR AOS ========== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Touch Device Optimization */
@media (hover: hover) {
    .royal-service-card:hover {
        transform: translateY(-10px);
    }
}

@media (hover: none) {
    .royal-service-card {
        transform: none !important;
    }
    
    .royal-service-card:active {
        transform: scale(0.98) !important;
    }
}

/* High Resolution Screens */
@media (min-width: 1920px) {
    .royal-services-container {
        max-width: 1600px;
    }
    
    .royal-services-grid {
        gap: 35px;
    }
    
    .royal-service-image-wrapper {
        height: 250px;
    }
    
    .royal-service-description {
        font-size: 15px;
        line-height: 1.7;
    }
}




/* ============================================
   PREMIUM BEFORE & AFTER SECTION STYLES
   ============================================ */

:root {
    --ba-primary: #0A192F;
    --ba-secondary: #1E3A8A;
    --ba-accent: #2563EB;
    --ba-light: #3B82F6;
    --ba-white: #FFFFFF;
    --ba-bg-light: #F8FAFC;
    --ba-gray: #64748B;
    --ba-border: #E2E8F0;
    --ba-before: #EF4444;
    --ba-after: #10B981;
    --ba-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
    --ba-shadow-hover: 0 25px 40px -12px rgba(37, 99, 235, 0.2);
}

/* Main Section */
.royal-beforeafter-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ba-white) 0%, var(--ba-bg-light) 100%);
    overflow: hidden;
}

/* Container */
.royal-beforeafter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ========== SECTION HEADER STYLES ========== */
.royal-beforeafter-header {
    text-align: center;
    margin-bottom: 60px;
}

.royal-beforeafter-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 58, 138, 0.05));
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.royal-beforeafter-badge-icon {
    color: var(--ba-accent);
    font-size: 12px;
    animation: royalBaBadgePulse 2s infinite;
}

.royal-beforeafter-badge span:not(.royal-beforeafter-badge-icon) {
    font-size: 14px;
    font-weight: 600;
    color: var(--ba-accent);
    letter-spacing: 1px;
}

@keyframes royalBaBadgePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.royal-beforeafter-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--ba-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.royal-beforeafter-title-highlight {
    background: linear-gradient(135deg, var(--ba-accent), var(--ba-secondary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.royal-beforeafter-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ba-accent), var(--ba-secondary));
    border-radius: 3px;
}

.royal-beforeafter-subtitle {
    font-size: 18px;
    color: var(--ba-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== BEFORE AFTER GRID ========== */
.royal-beforeafter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Card */
.royal-beforeafter-card {
    background: var(--ba-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ba-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--ba-border);
}

.royal-beforeafter-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ba-shadow-hover);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Image Wrapper */
.royal-beforeafter-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.royal-beforeafter-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.royal-beforeafter-card:hover .royal-beforeafter-image {
    transform: scale(1.05);
}

/* Labels */
.royal-beforeafter-labels {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 2;
}

.royal-beforeafter-label {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.royal-beforeafter-label-before {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.royal-beforeafter-label-after {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

/* Overlay */
.royal-beforeafter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.royal-beforeafter-wrapper:hover .royal-beforeafter-overlay {
    opacity: 1;
}

.royal-beforeafter-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.royal-beforeafter-wrapper:hover .royal-beforeafter-overlay-content {
    transform: translateY(0);
}

.royal-beforeafter-overlay-content i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.royal-beforeafter-overlay-content span {
    font-size: 14px;
    font-weight: 500;
}

/* Info Section */
.royal-beforeafter-info {
    padding: 20px;
    text-align: center;
}

.royal-beforeafter-info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ba-primary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.royal-beforeafter-card:hover .royal-beforeafter-info-title {
    color: var(--ba-accent);
}

.royal-beforeafter-info-desc {
    font-size: 13px;
    color: var(--ba-gray);
    line-height: 1.5;
}

/* ========== CTA BUTTON ========== */
.royal-beforeafter-footer {
    text-align: center;
}

.royal-beforeafter-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--ba-accent), var(--ba-secondary));
    color: var(--ba-white);
    padding: 14px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.royal-beforeafter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ba-secondary), var(--ba-accent));
    transition: left 0.4s ease;
    z-index: -1;
}

.royal-beforeafter-btn:hover::before {
    left: 0;
}

.royal-beforeafter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.royal-beforeafter-btn i {
    transition: transform 0.3s;
}

.royal-beforeafter-btn:hover i {
    transform: translateX(5px);
}

/* ========== LIGHTBOX MODAL ========== */
.royal-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.royal-lightbox-modal.active {
    display: flex;
    animation: royalLightboxFade 0.3s ease;
}

@keyframes royalLightboxFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.royal-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.royal-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.royal-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.royal-lightbox-close:hover {
    transform: scale(1.1);
}

.royal-lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 16px;
    padding: 10px;
}

/* ========== DECORATIVE ELEMENTS ========== */
.royal-beforeafter-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.royal-beforeafter-dot {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ba-accent), var(--ba-secondary));
    opacity: 0.03;
}

.royal-beforeafter-dot-1 {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -100px;
}

.royal-beforeafter-dot-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
}

.royal-beforeafter-dot-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 20%;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .royal-beforeafter-section {
        padding: 80px 0;
    }
    
    .royal-beforeafter-title {
        font-size: 36px;
    }
    
    .royal-beforeafter-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .royal-beforeafter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .royal-beforeafter-section {
        padding: 60px 0;
    }
    
    .royal-beforeafter-container {
        padding: 0 20px;
    }
    
    .royal-beforeafter-header {
        margin-bottom: 40px;
    }
    
    .royal-beforeafter-badge {
        padding: 6px 18px;
        margin-bottom: 15px;
    }
    
    .royal-beforeafter-badge span:not(.royal-beforeafter-badge-icon) {
        font-size: 12px;
    }
    
    .royal-beforeafter-title {
        font-size: 28px;
    }
    
    .royal-beforeafter-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .royal-beforeafter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .royal-beforeafter-label {
        padding: 4px 12px;
        font-size: 10px;
    }
    
    .royal-beforeafter-info-title {
        font-size: 16px;
    }
    
    .royal-beforeafter-info-desc {
        font-size: 12px;
    }
    
    .royal-beforeafter-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .royal-beforeafter-section {
        padding: 50px 0;
    }
    
    .royal-beforeafter-container {
        padding: 0 16px;
    }
    
    .royal-beforeafter-header {
        margin-bottom: 35px;
    }
    
    .royal-beforeafter-badge {
        padding: 5px 14px;
        gap: 8px;
    }
    
    .royal-beforeafter-badge span:not(.royal-beforeafter-badge-icon) {
        font-size: 10px;
    }
    
    .royal-beforeafter-badge-icon {
        font-size: 8px;
    }
    
    .royal-beforeafter-title {
        font-size: 24px;
    }
    
    .royal-beforeafter-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .royal-beforeafter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .royal-beforeafter-info {
        padding: 16px;
    }
    
    .royal-beforeafter-info-title {
        font-size: 16px;
    }
    
    .royal-beforeafter-info-desc {
        font-size: 12px;
    }
    
    .royal-beforeafter-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .royal-beforeafter-decoration {
        display: none;
    }
}

/* Small Mobile (up to 380px) */
@media (max-width: 380px) {
    .royal-beforeafter-section {
        padding: 40px 0;
    }
    
    .royal-beforeafter-title {
        font-size: 22px;
    }
}

/* ========== ANIMATION CLASSES ========== */
[data-aos="flip-left"] {
    opacity: 0;
    transform: perspective(1000px) rotateY(-30deg);
    transition: all 0.6s ease;
}

[data-aos="flip-left"].aos-animate {
    opacity: 1;
    transform: perspective(1000px) rotateY(0);
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Touch Device Optimization */
@media (hover: hover) {
    .royal-beforeafter-card:hover {
        transform: translateY(-8px);
    }
}

@media (hover: none) {
    .royal-beforeafter-card:active {
        transform: scale(0.98);
    }
}

/* High Resolution Screens */
@media (min-width: 1920px) {
    .royal-beforeafter-container {
        max-width: 1600px;
    }
    
    .royal-beforeafter-grid {
        gap: 35px;
    }
}



/* ============================================
   PREMIUM CTA SECTION STYLES
   ============================================ */

:root {
    --cta-primary: #0A192F;
    --cta-secondary: #1E3A8A;
    --cta-accent: #2563EB;
    --cta-light: #3B82F6;
    --cta-white: #FFFFFF;
    --cta-gold: #F59E0B;
    --cta-text-light: #DBEAFE;
    --cta-text-gray: #94A3B8;
    --cta-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Main Section */
.royal-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cta-primary) 0%, var(--cta-secondary) 100%);
}

/* Background Wrapper */
.royal-cta-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.royal-cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="none" stroke="white" stroke-width="0.5" d="M10,10 L90,10 M10,20 L90,20 M10,30 L90,30 M10,40 L90,40 M10,50 L90,50 M10,60 L90,60 M10,70 L90,70 M10,80 L90,80 M10,90 L90,90 M10,10 L10,90 M20,10 L20,90 M30,10 L30,90 M40,10 L40,90 M50,10 L50,90 M60,10 L60,90 M70,10 L70,90 M80,10 L80,90 M90,10 L90,90"/></svg>');
    background-size: 50px 50px;
    animation: royalCtaPatternMove 60s linear infinite;
}

@keyframes royalCtaPatternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.royal-cta-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.15), transparent 70%);
}

/* Particles Container */
.royal-cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Floating Elements */
.royal-cta-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.royal-cta-float {
    position: absolute;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.08);
    animation: royalCtaFloat 15s infinite ease-in-out;
}

.royal-cta-float-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    font-size: 45px;
}

.royal-cta-float-2 {
    top: 70%;
    right: 8%;
    animation-delay: 3s;
    font-size: 35px;
}

.royal-cta-float-3 {
    bottom: 15%;
    left: 12%;
    animation-delay: 6s;
    font-size: 40px;
}

.royal-cta-float-4 {
    top: 40%;
    right: 15%;
    animation-delay: 9s;
    font-size: 30px;
}

.royal-cta-float-5 {
    top: 25%;
    right: 25%;
    animation-delay: 12s;
    font-size: 28px;
}

@keyframes royalCtaFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(8deg);
    }
}

/* Container */
.royal-cta-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Content Wrapper */
.royal-cta-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--cta-shadow);
}

/* Badge */
.royal-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.royal-cta-badge-icon {
    color: var(--cta-gold);
    font-size: 14px;
    animation: royalCtaBadgePulse 2s infinite;
}

.royal-cta-badge span:not(.royal-cta-badge-icon) {
    font-size: 13px;
    font-weight: 600;
    color: var(--cta-white);
    letter-spacing: 1px;
}

@keyframes royalCtaBadgePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

/* Title */
.royal-cta-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--cta-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.royal-cta-title-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--cta-gold), #FCD34D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.royal-cta-title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    animation: royalCtaUnderline 2s ease infinite;
}

@keyframes royalCtaUnderline {
    0%, 100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.05);
    }
}

/* Divider */
.royal-cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.royal-cta-divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cta-gold), var(--cta-accent), var(--cta-gold), transparent);
}

.royal-cta-divider i {
    font-size: 24px;
    color: var(--cta-gold);
    animation: royalCtaToothRotate 3s ease infinite;
}

@keyframes royalCtaToothRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

/* Description */
.royal-cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--cta-text-light);
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.royal-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.royal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.royal-cta-btn-primary {
    background: linear-gradient(135deg, var(--cta-gold), #FCD34D);
    color: var(--cta-primary);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
}

.royal-cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FCD34D, var(--cta-gold));
    transition: left 0.4s ease;
    z-index: -1;
}

.royal-cta-btn-primary:hover::before {
    left: 0;
}

.royal-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.royal-cta-btn-primary i {
    transition: transform 0.3s;
}

.royal-cta-btn-primary:hover i {
    transform: translateX(5px);
}

.royal-cta-btn-outline {
    background: transparent;
    color: var(--cta-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.royal-cta-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.royal-cta-btn-outline:hover::before {
    width: 100%;
}

.royal-cta-btn-outline:hover {
    border-color: var(--cta-white);
    transform: translateY(-3px);
}

/* Trust Indicators */
.royal-cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.royal-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--cta-text-light);
}

.royal-cta-trust-item i {
    color: var(--cta-gold);
    font-size: 14px;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .royal-cta-section {
        padding: 80px 0;
    }
    
    .royal-cta-content {
        padding: 45px 35px;
        border-radius: 45px;
    }
    
    .royal-cta-title {
        font-size: 42px;
    }
    
    .royal-cta-description {
        font-size: 16px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .royal-cta-section {
        padding: 60px 0;
    }
    
    .royal-cta-container {
        padding: 0 20px;
    }
    
    .royal-cta-content {
        padding: 35px 25px;
        border-radius: 35px;
    }
    
    .royal-cta-badge {
        padding: 6px 18px;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .royal-cta-badge span:not(.royal-cta-badge-icon) {
        font-size: 11px;
    }
    
    .royal-cta-badge-icon {
        font-size: 11px;
    }
    
    .royal-cta-title {
        font-size: 32px;
    }
    
    .royal-cta-divider-line {
        width: 40px;
    }
    
    .royal-cta-divider i {
        font-size: 18px;
    }
    
    .royal-cta-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .royal-cta-buttons {
        gap: 15px;
        margin-bottom: 35px;
        flex-direction: row;
    }
    
    .royal-cta-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .royal-cta-trust {
        gap: 20px;
    }
    
    .royal-cta-trust-item {
        font-size: 11px;
    }
    
    .royal-cta-float {
        display: none;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .royal-cta-section {
        padding: 50px 0;
    }
    
    .royal-cta-container {
        padding: 0 16px;
    }
    
    .royal-cta-content {
        padding: 30px 20px;
        border-radius: 30px;
    }
    
    .royal-cta-badge {
        padding: 5px 14px;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .royal-cta-badge span:not(.royal-cta-badge-icon) {
        font-size: 10px;
    }
    
    .royal-cta-badge-icon {
        font-size: 10px;
    }
    
    .royal-cta-title {
        font-size: 26px;
    }
    
    .royal-cta-divider-line {
        width: 30px;
    }
    
    .royal-cta-divider i {
        font-size: 16px;
    }
    
    .royal-cta-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .royal-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .royal-cta-btn {
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
    }
    
    .royal-cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .royal-cta-trust-item {
        font-size: 12px;
    }
}

/* Small Mobile (up to 380px) */
@media (max-width: 380px) {
    .royal-cta-section {
        padding: 40px 0;
    }
    
    .royal-cta-content {
        padding: 25px 16px;
        border-radius: 25px;
    }
    
    .royal-cta-title {
        font-size: 24px;
    }
}

/* ========== ANIMATION CLASSES ========== */
[data-aos="zoom-in-up"] {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="zoom-in-up"].aos-animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* High Resolution Screens */
@media (min-width: 1920px) {
    .royal-cta-container {
        max-width: 1100px;
    }
    
    .royal-cta-title {
        font-size: 58px;
    }
}


/* ============================================
   PREMIUM FOOTER STYLES
   ============================================ */

:root {
    --footer-primary: #0A192F;
    --footer-secondary: #1E3A8A;
    --footer-accent: #2563EB;
    --footer-light: #3B82F6;
    --footer-white: #FFFFFF;
    --footer-text-light: #DBEAFE;
    --footer-text-gray: #94A3B8;
    --footer-border: rgba(255, 255, 255, 0.1);
    --footer-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.royal-footer {
    position: relative;
    background: var(--footer-primary);
    overflow: hidden;
    margin-top: 0;
    padding-top: 60px;
}

/* Background Elements */
.royal-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.royal-footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="none" stroke="white" stroke-width="0.5" d="M10,10 L90,10 M10,20 L90,20 M10,30 L90,30 M10,40 L90,40 M10,50 L90,50 M10,60 L90,60 M10,70 L90,70 M10,80 L90,80 M10,90 L90,90 M10,10 L10,90 M20,10 L20,90 M30,10 L30,90 M40,10 L40,90 M50,10 L50,90 M60,10 L60,90 M70,10 L70,90 M80,10 L80,90 M90,10 L90,90"/></svg>');
    background-size: 40px 40px;
}

.royal-footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.1), transparent 70%);
}

/* Floating Elements */
.royal-footer-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.royal-footer-float {
    position: absolute;
    color: rgba(255, 255, 255, 0.03);
    font-size: 60px;
    animation: royalFooterFloat 20s infinite ease-in-out;
}

.royal-footer-float-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    font-size: 80px;
}

.royal-footer-float-2 {
    bottom: 15%;
    right: 8%;
    animation-delay: 5s;
    font-size: 70px;
}

.royal-footer-float-3 {
    top: 40%;
    left: 85%;
    animation-delay: 10s;
    font-size: 60px;
}

@keyframes royalFooterFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Container */
.royal-footer-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== FOOTER GRID ========== */
.royal-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Columns */
.royal-footer-col {
    animation: royalFooterFadeIn 0.6s ease forwards;
}

/* Logo */
.royal-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.royal-footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--footer-accent), var(--footer-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.royal-footer-logo-icon i {
    font-size: 24px;
    color: var(--footer-white);
}

.royal-footer-logo-text {
    display: flex;
    flex-direction: column;
}

.royal-footer-logo-main {
    font-size: 20px;
    font-weight: 800;
    color: var(--footer-white);
    letter-spacing: -0.5px;
}

.royal-footer-logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--footer-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Description */
.royal-footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--footer-text-light);
    margin-bottom: 25px;
}

/* Social Section */
.royal-footer-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--footer-white);
    margin-bottom: 15px;
}

.royal-footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.royal-social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text-light);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.royal-social-link:hover {
    transform: translateY(-3px);
}

.royal-social-facebook:hover {
    background: #1877F2;
    color: white;
}

.royal-social-instagram:hover {
    background: linear-gradient(135deg, #833AB4, #E4405F, #F56040);
    color: white;
}

.royal-social-twitter:hover {
    background: #1DA1F2;
    color: white;
}

.royal-social-linkedin:hover {
    background: #0077B5;
    color: white;
}

.royal-social-youtube:hover {
    background: #FF0000;
    color: white;
}

/* Footer Titles */
.royal-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--footer-white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.royal-footer-title i {
    color: var(--footer-accent);
    font-size: 20px;
}

.royal-footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--footer-accent), transparent);
    border-radius: 3px;
}

/* Footer Menu */
.royal-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.royal-footer-menu li {
    margin-bottom: 12px;
}

.royal-footer-menu a {
    color: var(--footer-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.royal-footer-menu a i {
    font-size: 10px;
    transition: transform 0.3s;
}

.royal-footer-menu a:hover {
    color: var(--footer-accent);
    transform: translateX(5px);
}

.royal-footer-menu a:hover i {
    transform: translateX(3px);
}

/* Contact Info */
.royal-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.royal-footer-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.royal-footer-contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.royal-footer-contact-icon i {
    font-size: 16px;
    color: var(--footer-accent);
}

.royal-footer-contact-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--footer-text-light);
    margin: 0 0 5px 0;
}

.royal-footer-contact-text a {
    color: var(--footer-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.royal-footer-contact-text a:hover {
    color: var(--footer-accent);
}

/* ========== NEWSLETTER SECTION ========== */
.royal-footer-newsletter {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 58, 138, 0.1));
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid var(--footer-border);
}

.royal-footer-newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.royal-footer-newsletter-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--footer-accent), var(--footer-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.royal-footer-newsletter-icon i {
    font-size: 28px;
    color: var(--footer-white);
}

.royal-footer-newsletter-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--footer-white);
    margin-bottom: 5px;
}

.royal-footer-newsletter-text p {
    font-size: 13px;
    color: var(--footer-text-light);
}

.royal-footer-newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 250px;
}

.royal-footer-newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--footer-border);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 14px;
    color: var(--footer-white);
    outline: none;
    transition: all 0.3s;
}

.royal-footer-newsletter-form input:focus {
    border-color: var(--footer-accent);
    background: rgba(255, 255, 255, 0.1);
}

.royal-footer-newsletter-form input::placeholder {
    color: var(--footer-text-gray);
}

.royal-footer-newsletter-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--footer-accent), var(--footer-secondary));
    border: none;
    border-radius: 50px;
    color: var(--footer-white);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.royal-footer-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* ========== PAYMENT BADGES ========== */
.royal-footer-payment {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--footer-border);
}

.royal-footer-payment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--footer-text-gray);
}

.royal-footer-payment-item i {
    font-size: 24px;
    color: var(--footer-text-light);
}

/* ========== BOTTOM BAR ========== */
.royal-footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.royal-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.royal-footer-bottom-content p {
    font-size: 13px;
    color: var(--footer-text-gray);
}

.royal-footer-bottom-content i {
    color: #EF4444;
}

/* ========== BACK TO TOP BUTTON ========== */
.royal-footer-backtop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--footer-accent), var(--footer-secondary));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.royal-footer-backtop.visible {
    opacity: 1;
    visibility: visible;
}

.royal-footer-backtop:hover {
    transform: translateY(-5px);
    scale: 1.1;
}

.royal-footer-backtop span {
    display: none;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .royal-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .royal-footer-newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .royal-footer-newsletter-form {
        width: 100%;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .royal-footer {
        padding-top: 50px;
    }
    
    .royal-footer-container {
        padding: 0 20px;
    }
    
    .royal-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .royal-footer-newsletter {
        padding: 25px;
    }
    
    .royal-footer-newsletter-form {
        flex-direction: column;
    }
    
    .royal-footer-newsletter-form button {
        justify-content: center;
    }
    
    .royal-footer-payment {
        gap: 15px;
    }
    
    .royal-footer-payment-item {
        font-size: 11px;
    }
    
    .royal-footer-payment-item i {
        font-size: 20px;
    }
    
    .royal-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .royal-footer-floating {
        display: none;
    }
    
    .royal-footer-backtop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .royal-footer-container {
        padding: 0 16px;
    }
    
    .royal-footer-newsletter {
        padding: 20px;
        border-radius: 15px;
    }
    
    .royal-footer-newsletter-icon {
        width: 50px;
        height: 50px;
    }
    
    .royal-footer-newsletter-icon i {
        font-size: 24px;
    }
    
    .royal-footer-newsletter-text h4 {
        font-size: 16px;
    }
    
    .royal-footer-newsletter-text p {
        font-size: 12px;
    }
    
    .royal-footer-payment {
        gap: 12px;
    }
    
    .royal-footer-payment-item {
        font-size: 10px;
    }
    
    .royal-footer-payment-item i {
        font-size: 18px;
    }
    
    .royal-footer-title {
        font-size: 16px;
    }
    
    .royal-footer-menu a,
    .royal-footer-contact-text p,
    .royal-footer-description {
        font-size: 13px;
    }
}

/* ========== ANIMATION CLASSES ========== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes royalFooterFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}