* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d1a55c;
    --primary-dark: #b8934a;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-black: #000000;
    --bg-gray: #f8f9fa;
    --border-color: #e5e5e5;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* === HOME SECTION - LUXURY DESIGN === */
.home {
    position: relative;
    overflow: hidden;
}

.banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    overflow: hidden;
}

.luxury-banner {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.98) 30%, 
        rgba(255, 255, 255, 0.95) 70%, 
        rgba(240, 242, 245, 0.98) 100%),
        radial-gradient(circle at 20% 50%, rgba(209, 165, 92, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(209, 165, 92, 0.02) 0%, transparent 50%);
    position: relative;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(209, 165, 92, 0.1);
}

.banner-dark {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.98) 0%, 
        rgba(35, 35, 35, 0.95) 30%, 
        rgba(26, 26, 26, 0.98) 70%, 
        rgba(20, 20, 20, 0.98) 100%),
        radial-gradient(circle at 30% 40%, rgba(209, 165, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(209, 165, 92, 0.05) 0%, transparent 50%);
    color: white;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(209, 165, 92, 0.02) 0%, 
        transparent 30%, 
        rgba(209, 165, 92, 0.03) 70%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.banner-overlay.dark {
    background: linear-gradient(45deg, 
        rgba(209, 165, 92, 0.05) 0%, 
        transparent 30%, 
        rgba(209, 165, 92, 0.07) 70%, 
        transparent 100%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #d1a55c, rgba(209, 165, 92, 0.6));
    border-radius: 50%;
    animation: floatAround 15s infinite linear;
    box-shadow: 0 0 10px rgba(209, 165, 92, 0.3);
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    top: 80%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, 20px) rotate(180deg) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, 50px) rotate(270deg) scale(1.1);
        opacity: 0.7;
    }
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.text-content {
    max-width: none;
    position: relative;
    z-index: 3;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(209, 165, 92, 0.1), rgba(209, 165, 92, 0.05));
    border: 1px solid rgba(209, 165, 92, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.banner-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.banner-badge.dark {
    background: linear-gradient(135deg, rgba(209, 165, 92, 0.15), rgba(209, 165, 92, 0.08));
    border-color: rgba(209, 165, 92, 0.3);
}

.luxury-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-highlight {
    color: #d1a55c;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(209, 165, 92, 0.2);
    background: linear-gradient(135deg, #d1a55c, #b8954f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

.title-main {
    color: #1a1a1a;
    font-weight: 700;
}

.banner-dark .title-main {
    color: #ffffff;
}

.title-accent {
    color: #666;
    font-weight: 600;
    font-size: 0.85em;
}

.banner-dark .title-accent {
    color: #cccccc;
}

@keyframes goldShimmer {
    0%, 100% {
        background: linear-gradient(135deg, #d1a55c, #b8954f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #e8c074, #d1a55c, #b8954f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.luxury-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 3rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.banner-dark .luxury-description {
    color: #e0e0e0;
}

.cta-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #d1a55c, #b8954f);
    color: white;
    box-shadow: 0 8px 32px rgba(209, 165, 92, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(209, 165, 92, 0.4);
    background: linear-gradient(135deg, #e8c074, #d1a55c);
}

.cta-button.secondary {
    background: transparent;
    color: #d1a55c;
    border: 2px solid #d1a55c;
    box-shadow: 0 4px 20px rgba(209, 165, 92, 0.1);
}

.cta-button.secondary:hover {
    background: #d1a55c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(209, 165, 92, 0.3);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    border: 1px solid rgba(209, 165, 92, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.banner-dark .trust-item {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(209, 165, 92, 0.2);
    color: white;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 165, 92, 0.15);
}

.trust-item i {
    color: #d1a55c;
    font-size: 1.1rem;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.banner-dark .trust-item span {
    color: #e0e0e0;
}

.animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.animation-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 400px;
}

.animation-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE DESIGN - LUXURY HOME SECTION === */
@media (max-width: 768px) {
    .home {
        margin-top: 80px;
    }
    
    .banner {
        min-height: 90vh;
        padding: 2rem 0;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .luxury-title {
        font-size: 2.5rem;
        gap: 0.3rem;
    }
    
    .luxury-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .animation-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .animation-glow {
        width: 200px;
        height: 200px;
    }
    
    .floating-element {
        display: none;
    }
    
    .banner-badge {
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .luxury-title {
        font-size: 2rem;
    }
    
    .luxury-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .animation-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .animation-glow {
        width: 160px;
        height: 160px;
    }
    
    .trust-item {
        padding: 0.6rem 1rem;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
}

/* === ENHANCED ANIMATIONS === */
.ifrs17-animation, .airplane-animation, .umbrella-animation {
    position: relative;
    z-index: 3;
}

/* Section Styling */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solution-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.main-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.solution-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: inherit;
}

.solution-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 12px;
    background: var(--bg-gray);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    background: var(--bg-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-black);
    color: var(--bg-white);
}

.about .section-title {
    color: var(--bg-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-text p,
.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ccc;
}

.team-section h3,
.trusted-by h3 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

.logos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
}

.logo-placeholder i {
    font-size: 2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-black);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .banner {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .text-content h1 {
        font-size: 2rem;
    }
    
    .animation-container {
        height: 250px;
    }
    
    .solutions-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solution-card,
    .service-card {
        padding: 1.5rem;
    }
}

/* === LUXURY SOLUTIONS SECTION === */
.luxury-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 30%, 
        rgba(248, 249, 250, 0.98) 70%, 
        rgba(245, 246, 248, 0.98) 100%);
    overflow: hidden;
}

.luxury-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.luxury-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(209, 165, 92, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(209, 165, 92, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(209, 165, 92, 0.01) 50%, transparent 100%);
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #d1a55c, rgba(209, 165, 92, 0.4));
    border-radius: 50%;
    animation: particleFloat 20s infinite linear;
    box-shadow: 0 0 6px rgba(209, 165, 92, 0.3);
}

.particle:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 70%;
    left: 85%;
    animation-delay: -8s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: -4s;
}

.particle:nth-child(4) {
    top: 90%;
    left: 20%;
    animation-delay: -12s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: -16s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, 20px) rotate(180deg) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, 50px) rotate(270deg) scale(1.1);
        opacity: 0.7;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(209, 165, 92, 0.1), rgba(209, 165, 92, 0.05));
    border: 1px solid rgba(209, 165, 92, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShimmer 4s infinite;
}

@keyframes badgeShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.luxury-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.luxury-section-title .title-highlight {
    color: #d1a55c;
    font-weight: 800;
    background: linear-gradient(135deg, #d1a55c, #b8954f, #e8c074);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

.luxury-section-title .title-main {
    color: #1a1a1a;
    font-weight: 700;
}

@keyframes titleGlow {
    0%, 100% {
        background: linear-gradient(135deg, #d1a55c, #b8954f, #e8c074);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #e8c074, #d1a55c, #b8954f, #e8c074);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

.solution-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(209, 165, 92, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 12px rgba(209, 165, 92, 0.1);
    transform: translateY(0) rotateX(0) rotateY(0);
    transform-style: preserve-3d;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(209, 165, 92, 0.02) 0%, 
        transparent 50%, 
        rgba(209, 165, 92, 0.01) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.solution-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 8px 30px rgba(209, 165, 92, 0.2),
        0 0 0 1px rgba(209, 165, 92, 0.2);
}

.hero-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, 
        rgba(209, 165, 92, 0.08) 0%, 
        rgba(255, 255, 255, 0.95) 30%, 
        rgba(209, 165, 92, 0.05) 100%);
    border: 2px solid rgba(209, 165, 92, 0.2);
}

.hero-card:hover {
    transform: translateY(-20px) rotateX(3deg) rotateY(1deg) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 12px 40px rgba(209, 165, 92, 0.3),
        0 0 0 2px rgba(209, 165, 92, 0.3);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: cardGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.1;
    }
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
    pointer-events: none;
}

.solution-card:hover .card-shine {
    left: 100%;
}

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.card-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d1a55c, #b8954f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(209, 165, 92, 0.3);
    transition: all 0.4s ease;
}

.card-icon-large:hover {
    transform: translateY(-3px) rotateY(10deg);
    box-shadow: 0 12px 35px rgba(209, 165, 92, 0.4);
}

.card-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d1a55c, #b8954f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(209, 165, 92, 0.25);
    transition: all 0.4s ease;
}

.card-icon:hover {
    transform: translateY(-2px) rotateY(8deg);
    box-shadow: 0 10px 30px rgba(209, 165, 92, 0.35);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-card .card-title {
    font-size: 2rem;
    color: #d1a55c;
    text-align: center;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-features {
    margin-top: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.feature-item i {
    color: #d1a55c;
    font-size: 1rem;
    width: 16px;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
}

.card-stats {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(209, 165, 92, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #d1a55c;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.solutions-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(209, 165, 92, 0.05) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(209, 165, 92, 0.03) 100%);
    border-radius: 25px;
    border: 1px solid rgba(209, 165, 92, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.solutions-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(209, 165, 92, 0.02) 0%, 
        transparent 50%, 
        rgba(209, 165, 92, 0.01) 100%);
    animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.solutions-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.solutions-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.luxury-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #d1a55c, #b8954f);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(209, 165, 92, 0.3);
}

.luxury-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.luxury-button:hover::before {
    left: 100%;
}

.luxury-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 45px rgba(209, 165, 92, 0.4);
    background: linear-gradient(135deg, #e8c074, #d1a55c);
}

/* === RESPONSIVE SOLUTIONS SECTION === */
@media (max-width: 768px) {
    .luxury-section {
        padding: 4rem 0;
    }
    
    .luxury-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .luxury-section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .hero-card .card-title {
        font-size: 1.75rem;
    }
    
    .solutions-cta {
        padding: 2rem;
    }
    
    .solutions-cta h3 {
        font-size: 1.5rem;
    }
    
    .particle {
        display: none;
    }
}

@media (max-width: 480px) {
    .luxury-section-title {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .luxury-button {
        width: 100%;
        justify-content: center;
    }
}

/* === LUXURY SERVICES SECTION === */
.luxury-services-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.98) 0%, 
        rgba(33, 33, 33, 0.95) 30%, 
        rgba(26, 26, 26, 0.98) 70%, 
        rgba(20, 20, 20, 0.98) 100%);
    color: white;
    overflow: hidden;
}

.luxury-services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.15) 0%, rgba(209, 165, 92, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: orbFloat 25s infinite linear;
    filter: blur(2px);
}

.orb:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    width: 120px;
    height: 120px;
}

.orb:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: -10s;
    width: 180px;
    height: 180px;
}

.orb:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: -5s;
    width: 100px;
    height: 100px;
}

.orb:nth-child(4) {
    top: 10%;
    left: 70%;
    animation-delay: -15s;
    width: 140px;
    height: 140px;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(150px, -80px) rotate(90deg) scale(1.3);
        opacity: 0.7;
    }
    50% {
        transform: translate(300px, 50px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(100px, 120px) rotate(270deg) scale(1.1);
        opacity: 0.6;
    }
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(209, 165, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(209, 165, 92, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(209, 165, 92, 0.02) 50%, transparent 100%);
    animation: meshPulse 8s ease-in-out infinite;
}

@keyframes meshPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(209, 165, 92, 0.15), rgba(209, 165, 92, 0.08));
    border: 1px solid rgba(209, 165, 92, 0.3);
    border-radius: 50px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    animation: badgeGlow 4s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(209, 165, 92, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(209, 165, 92, 0.4);
    }
}

.services-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeShine 5s infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.services-badge i {
    color: #d1a55c;
    font-size: 1.2rem;
}

.badge-text {
    color: #d1a55c;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-services-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
}

.luxury-services-title .title-accent {
    color: #d1a55c;
    background: linear-gradient(135deg, #d1a55c, #e8c074, #b8954f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
    display: block;
}

.luxury-services-title .title-primary {
    color: white;
    display: block;
    margin-top: 0.5rem;
}

@keyframes titleShimmer {
    0%, 100% {
        background: linear-gradient(135deg, #d1a55c, #e8c074, #b8954f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #e8c074, #d1a55c, #b8954f, #e8c074);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.services-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.luxury-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 6rem;
}

.premium-service-card {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        0 5px 20px rgba(209, 165, 92, 0.1);
    transform: translateY(0) rotateX(0) rotateY(0) scale(1);
    transform-style: preserve-3d;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(209, 165, 92, 0.08) 0%, 
        transparent 50%, 
        rgba(209, 165, 92, 0.04) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.premium-service-card:hover {
    transform: translateY(-20px) rotateX(8deg) rotateY(3deg) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(209, 165, 92, 0.25),
        0 0 0 1px rgba(209, 165, 92, 0.3);
}

.featured-card {
    background: linear-gradient(135deg, 
        rgba(209, 165, 92, 0.15) 0%, 
        rgba(255, 255, 255, 0.12) 30%, 
        rgba(209, 165, 92, 0.08) 100%);
    border: 2px solid rgba(209, 165, 92, 0.3);
    transform: scale(1.05);
}

.featured-card:hover {
    transform: translateY(-25px) rotateX(6deg) rotateY(2deg) scale(1.08);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 20px 50px rgba(209, 165, 92, 0.4),
        0 0 0 2px rgba(209, 165, 92, 0.5);
}

.featured-ribbon {
    position: absolute;
    top: 35px;
    right: -45px;
    background: linear-gradient(135deg, #d1a55c, #b8954f);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(209, 165, 92, 0.4);
    z-index: 3;
}

.card-background-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: cardPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.1;
    }
}

.service-card-content {
    padding: 3rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.luxury-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d1a55c, #b8954f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(209, 165, 92, 0.4);
    transition: all 0.4s ease;
    overflow: hidden;
}

.luxury-icon:hover {
    transform: translateY(-5px) rotateY(15deg);
    box-shadow: 0 15px 40px rgba(209, 165, 92, 0.6);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.luxury-icon i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.icon-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: iconParticle 4s infinite linear;
}

.icon-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.icon-particles .particle:nth-child(2) {
    top: 70%;
    right: 20%;
    animation-delay: -1.5s;
}

.icon-particles .particle:nth-child(3) {
    top: 50%;
    left: 50%;
    animation-delay: -3s;
}

@keyframes iconParticle {
    0%, 100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    25% {
        transform: translate(20px, -20px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(40px, 10px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(10px, 30px) scale(1.2);
        opacity: 0.3;
    }
}

.service-badge {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-badge {
    background: linear-gradient(135deg, rgba(209, 165, 92, 0.2), rgba(209, 165, 92, 0.1));
    border: 1px solid rgba(209, 165, 92, 0.3);
    color: #d1a55c;
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.service-features {
    margin-bottom: 2.5rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(209, 165, 92, 0.1);
    border-color: rgba(209, 165, 92, 0.2);
    transform: translateX(5px);
}

.feature-highlight i {
    color: #d1a55c;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-highlight span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.service-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-group {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #d1a55c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.service-cta {
    margin-top: auto;
}

.premium-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.premium-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.premium-cta-button:hover::before {
    left: 100%;
}

.premium-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.premium-cta-button.featured {
    background: linear-gradient(135deg, #d1a55c, #b8954f);
    border-color: rgba(209, 165, 92, 0.5);
    color: white;
}

.premium-cta-button.featured:hover {
    background: linear-gradient(135deg, #e8c074, #d1a55c);
    box-shadow: 0 10px 30px rgba(209, 165, 92, 0.4);
}

.services-bottom-cta {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, 
        rgba(209, 165, 92, 0.08) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(209, 165, 92, 0.04) 100%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.services-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(209, 165, 92, 0.02) 0%, 
        transparent 50%, 
        rgba(209, 165, 92, 0.01) 100%);
    animation: ctaBackground 8s ease-in-out infinite;
}

@keyframes ctaBackground {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-luxury-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.3rem 2.5rem;
    background: linear-gradient(135deg, #d1a55c, #b8954f);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(209, 165, 92, 0.4);
}

.primary-luxury-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #e8c074, #d1a55c);
    box-shadow: 0 15px 50px rgba(209, 165, 92, 0.6);
}

.secondary-luxury-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.3rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.secondary-luxury-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(209, 165, 92, 0.1);
    border-color: rgba(209, 165, 92, 0.2);
    transform: translateY(-2px);
}

.trust-item i {
    color: #d1a55c;
    font-size: 1.2rem;
}

.trust-item span {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

/* === RESPONSIVE SERVICES SECTION === */
@media (max-width: 768px) {
    .luxury-services-section {
        padding: 4rem 0;
    }
    
    .luxury-services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }
    
    .luxury-services-title {
        font-size: 2.8rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card-content {
        padding: 2.5rem;
    }
    
    .featured-card {
        transform: scale(1);
    }
    
    .service-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .orb {
        display: none;
    }
}

@media (max-width: 480px) {
    .luxury-services-title {
        font-size: 2.2rem;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .services-bottom-cta {
        padding: 2.5rem 2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .primary-luxury-button,
    .secondary-luxury-button {
        width: 100%;
        justify-content: center;
    }
}

/* === LUXURY ABOUT SECTION === */
.luxury-about {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: hidden;
    min-height: 100vh;
}

.luxury-about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.luxury-about-background .floating-orbs .orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.1) 0%, rgba(209, 165, 92, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    animation: floatOrb 20s infinite ease-in-out;
    filter: blur(40px);
}

.luxury-about-background .floating-orbs .orb:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.luxury-about-background .floating-orbs .orb:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.luxury-about-background .floating-orbs .orb:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.luxury-about-background .floating-orbs .orb:nth-child(4) {
    top: 30%;
    right: 40%;
    animation-delay: -15s;
}

.luxury-about-background .floating-orbs .orb:nth-child(5) {
    bottom: 40%;
    right: 60%;
    animation-delay: -20s;
}

.luxury-about-background .gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 20%, rgba(209, 165, 92, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(209, 165, 92, 0.08) 0%, transparent 50%);
    animation: meshPulse 8s ease-in-out infinite;
}

.luxury-about-background .particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.luxury-about-background .particle-field .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(209, 165, 92, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.luxury-about-background .particle-field .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.luxury-about-background .particle-field .particle:nth-child(2) {
    top: 50%;
    left: 80%;
    animation-delay: -3s;
}

.luxury-about-background .particle-field .particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: -6s;
}

.luxury-about-background .particle-field .particle:nth-child(4) {
    top: 30%;
    left: 60%;
    animation-delay: -9s;
}

.luxury-about-background .particle-field .particle:nth-child(5) {
    top: 70%;
    left: 90%;
    animation-delay: -12s;
}

.luxury-about .container {
    position: relative;
    z-index: 2;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 6rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(209, 165, 92, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.about-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(209, 165, 92, 0.4), transparent);
    animation: shimmerSlide 2s infinite;
}

.about-badge i {
    color: var(--primary-color);
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.luxury-about-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-accent {
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 2s ease-in-out infinite;
}

.title-primary {
    color: white;
    display: block;
    text-shadow: 0 0 30px rgba(209, 165, 92, 0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.premium-content-card,
.premium-stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(209, 165, 92, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.premium-content-card:hover,
.premium-stats-card:hover {
    transform: translateY(-10px);
    border-color: rgba(209, 165, 92, 0.4);
    box-shadow: 0 20px 40px rgba(209, 165, 92, 0.1);
}

.card-glow-effect,
.card-shimmer-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(209, 165, 92, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-content-card:hover .card-glow-effect,
.premium-stats-card:hover .card-shimmer-effect {
    opacity: 1;
    animation: cardGlow 2s ease-in-out infinite;
}

.content-header,
.stats-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.content-icon,
.stats-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.content-icon i,
.stats-icon i {
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: iconParticle 3s infinite ease-in-out;
}

.icon-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.icon-particles .particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: -1s;
}

.icon-particles .particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: -2s;
}

.icon-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.3) 0%, transparent 70%);
    animation: iconGlow 2s ease-in-out infinite;
}

.content-header h3,
.stats-header h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.content-text {
    margin-bottom: 2.5rem;
}

.content-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.achievement-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(209, 165, 92, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(209, 165, 92, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(209, 165, 92, 0.15);
    transform: translateX(10px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: white;
    font-size: 1rem;
}

.highlight-content {
    display: flex;
    flex-direction: column;
}

.highlight-label {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.highlight-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-grid {
    margin-bottom: 2.5rem;
}

.stat-item {
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #f4d03f);
    width: 0%;
    transition: width 2s ease-out;
    border-radius: 2px;
}

.expertise-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(209, 165, 92, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.expertise-item:hover {
    background: rgba(209, 165, 92, 0.1);
    transform: translateY(-5px);
    border-color: rgba(209, 165, 92, 0.4);
}

.expertise-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.expertise-item span {
    color: white;
    font-weight: 500;
}

/* Trusted Partners Section */
.trusted-partners-section {
    margin-top: 6rem;
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(209, 165, 92, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.partners-badge i {
    color: var(--primary-color);
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.partners-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(209, 165, 92, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(209, 165, 92, 0.4);
    box-shadow: 0 20px 40px rgba(209, 165, 92, 0.15);
}

.partner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(209, 165, 92, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-card:hover .partner-glow {
    opacity: 1;
    animation: partnerGlow 2s ease-in-out infinite;
}

.partner-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-icon {
    transform: rotateY(360deg) scale(1.1);
}

.partner-icon i {
    color: white;
    font-size: 1.5rem;
}

.partner-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.partner-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.partner-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #f4d03f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-effect {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .luxury-about {
        padding: 80px 0;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .premium-content-card,
    .premium-stats-card {
        padding: 2rem;
    }
    
    .luxury-about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .expertise-areas {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .luxury-about {
        padding: 60px 0;
    }
    
    .about-header {
        margin-bottom: 3rem;
    }
    
    .content-header,
    .stats-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .achievement-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
    }
}

/* ===== LUXURY CONTACT SECTION ===== */
.luxury-contact {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: hidden;
    min-height: 100vh;
}

/* Contact Floating Orbs */
.contact-floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-floating-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: floatOrb 15s ease-in-out infinite;
}

.contact-floating-orbs .orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.08) 0%, rgba(209, 165, 92, 0.04) 50%, transparent 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.contact-floating-orbs .orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.06) 0%, rgba(209, 165, 92, 0.03) 50%, transparent 100%);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.contact-floating-orbs .orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.05) 0%, rgba(209, 165, 92, 0.02) 50%, transparent 100%);
    top: 30%;
    right: 20%;
    animation-delay: 10s;
}

/* Contact Gradient Mesh */
.contact-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(209, 165, 92, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(209, 165, 92, 0.03) 0%, transparent 50%);
    animation: meshPulse 8s ease-in-out infinite;
    z-index: 1;
}

/* Contact Particle Field */
.contact-particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.contact-particle-field .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(209, 165, 92, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.contact-particle-field .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.contact-particle-field .particle:nth-child(2) { left: 30%; animation-delay: 4s; }
.contact-particle-field .particle:nth-child(3) { left: 50%; animation-delay: 8s; }
.contact-particle-field .particle:nth-child(4) { left: 70%; animation-delay: 12s; }
.contact-particle-field .particle:nth-child(5) { left: 90%; animation-delay: 16s; }

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(209, 165, 92, 0.1);
    border: 1px solid rgba(209, 165, 92, 0.3);
    border-radius: 50px;
    color: #d1a55c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(209, 165, 92, 0.2), transparent);
    transition: left 0.8s;
}

.contact-badge:hover::before {
    left: 100%;
}

.luxury-contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #d1a55c 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: titleShimmer 3s ease-in-out infinite;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Content */
.luxury-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 3;
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(209, 165, 92, 0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 165, 92, 0.4);
    box-shadow: 0 20px 60px rgba(209, 165, 92, 0.1);
}

.card-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent, rgba(209, 165, 92, 0.1), transparent);
    animation: cardGlow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-info-card:hover .card-glow-effect {
    opacity: 1;
}

.contact-info-header {
    margin-bottom: 40px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(209, 165, 92, 0.15);
    border: 1px solid rgba(209, 165, 92, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Contact Items */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item:hover {
    background: rgba(209, 165, 92, 0.05);
    border-color: rgba(209, 165, 92, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(209, 165, 92, 0.2), rgba(209, 165, 92, 0.1));
    border: 1px solid rgba(209, 165, 92, 0.3);
    border-radius: 12px;
    color: #d1a55c;
    font-size: 18px;
    flex-shrink: 0;
}

.icon-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.icon-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(209, 165, 92, 0.8);
    border-radius: 50%;
    animation: iconParticle 3s ease-in-out infinite;
}

.contact-details-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-details-text a {
    color: #d1a55c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-details-text a:hover {
    color: #ffffff;
}

.response-time, .consultation-text, .location-text {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Contact Form */
.luxury-contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(209, 165, 92, 0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.form-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 180deg, transparent, rgba(209, 165, 92, 0.08), transparent);
    animation: cardGlow 10s linear infinite;
    opacity: 0.5;
}

.form-header {
    margin-bottom: 40px;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(209, 165, 92, 0.15);
    border: 1px solid rgba(209, 165, 92, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Form Fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.luxury-form-group {
    position: relative;
    margin-bottom: 24px;
}

.luxury-input, .luxury-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.luxury-input::placeholder, .luxury-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.luxury-input:focus, .luxury-textarea:focus {
    outline: none;
    border-color: rgba(209, 165, 92, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(209, 165, 92, 0.1);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(209, 165, 92, 0.1), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.luxury-form-group:hover .input-glow,
.luxury-input:focus + .input-glow,
.luxury-textarea:focus + .input-glow {
    opacity: 1;
}

.input-particles {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
    pointer-events: none;
}

.input-particles .particle {
    width: 4px;
    height: 4px;
    background: rgba(209, 165, 92, 0.6);
    border-radius: 50%;
    animation: iconParticle 2s ease-in-out infinite;
}

/* Submit Button */
.form-submit-wrapper {
    text-align: center;
    margin-top: 40px;
}

.luxury-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d1a55c 0%, #b8941f 100%);
    border: none;
    border-radius: 50px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 2;
}

.luxury-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(209, 165, 92, 0.3);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerSlide 3s ease-in-out infinite;
}

.btn-particles {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    gap: 3px;
}

.btn-particles .particle {
    width: 3px;
    height: 3px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    animation: iconParticle 1.5s ease-in-out infinite;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.luxury-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .luxury-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .luxury-contact-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .luxury-contact {
        padding: 80px 0;
    }
    
    .contact-header {
        margin-bottom: 60px;
    }
    
    .luxury-contact-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-card, .luxury-contact-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .luxury-contact-title {
        font-size: 1.8rem;
    }
    
    .contact-info-card, .luxury-contact-form {
        padding: 24px;
    }
}

/* ===== LUXURY FOOTER SECTION ===== */
.luxury-footer {
    position: relative;
    padding: 100px 0 0 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: hidden;
    border-top: 1px solid rgba(209, 165, 92, 0.2);
}

/* Footer Floating Orbs */
.footer-floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-floating-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    animation: floatOrb 20s ease-in-out infinite;
}

.footer-floating-orbs .orb-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.06) 0%, rgba(209, 165, 92, 0.03) 50%, transparent 100%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.footer-floating-orbs .orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.08) 0%, rgba(209, 165, 92, 0.04) 50%, transparent 100%);
    top: 50%;
    right: 10%;
    animation-delay: 7s;
}

.footer-floating-orbs .orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.05) 0%, rgba(209, 165, 92, 0.02) 50%, transparent 100%);
    top: 70%;
    left: 40%;
    animation-delay: 14s;
}

.footer-floating-orbs .orb-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(209, 165, 92, 0.04) 0%, rgba(209, 165, 92, 0.02) 50%, transparent 100%);
    top: 20%;
    right: 30%;
    animation-delay: 3s;
}

/* Footer Gradient Mesh */
.footer-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 20%, rgba(209, 165, 92, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 85% 80%, rgba(209, 165, 92, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(209, 165, 92, 0.02) 0%, transparent 60%);
    animation: meshPulse 12s ease-in-out infinite;
    z-index: 1;
}

/* Footer Particle Field */
.footer-particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.footer-particle-field .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(209, 165, 92, 0.4);
    border-radius: 50%;
    animation: particleFloat 25s linear infinite;
}

.footer-particle-field .particle:nth-child(1) { left: 15%; animation-delay: 0s; }
.footer-particle-field .particle:nth-child(2) { left: 35%; animation-delay: 5s; }
.footer-particle-field .particle:nth-child(3) { left: 55%; animation-delay: 10s; }
.footer-particle-field .particle:nth-child(4) { left: 75%; animation-delay: 15s; }
.footer-particle-field .particle:nth-child(5) { left: 85%; animation-delay: 20s; }
.footer-particle-field .particle:nth-child(6) { left: 25%; animation-delay: 12s; }

/* Footer Content */
.luxury-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
}

/* Footer Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.luxury-footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.logo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: radial-gradient(circle, rgba(209, 165, 92, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: logoGlow 4s ease-in-out infinite;
    z-index: -1;
}

.footer-logo-wrapper:hover .logo-glow {
    opacity: 1;
}

.footer-brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #d1a55c 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: titleShimmer 4s ease-in-out infinite;
}

.footer-brand-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 400px;
}

/* Footer Credentials */
.footer-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(209, 165, 92, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.credential-item:hover {
    background: rgba(209, 165, 92, 0.05);
    border-color: rgba(209, 165, 92, 0.4);
    color: #ffffff;
    transform: translateX(5px);
}

.credential-item i {
    color: #d1a55c;
    font-size: 16px;
}

.credential-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(209, 165, 92, 0.2);
}

.section-icon {
    color: #d1a55c;
    font-size: 18px;
    padding: 8px;
    background: rgba(209, 165, 92, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(209, 165, 92, 0.3);
}

.section-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Footer Links */
.luxury-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.luxury-links li {
    position: relative;
}

.luxury-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.luxury-links a:hover {
    color: #ffffff;
    background: rgba(209, 165, 92, 0.05);
    transform: translateX(8px);
}

.luxury-links a i {
    color: #d1a55c;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.link-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(209, 165, 92, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.luxury-links a:hover .link-glow {
    transform: translateX(100%);
}

/* Contact Info Footer */
.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(209, 165, 92, 0.05);
    border-color: rgba(209, 165, 92, 0.2);
    transform: translateY(-2px);
}

.footer-contact-item .contact-icon {
    color: #d1a55c;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(209, 165, 92, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(209, 165, 92, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.contact-details a {
    color: #d1a55c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #ffffff;
}

/* Social Links */
.footer-social-links {
    margin-top: 30px;
}

.social-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(209, 165, 92, 0.2);
    border-radius: 12px;
    color: #d1a55c;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-link:hover {
    background: rgba(209, 165, 92, 0.1);
    border-color: rgba(209, 165, 92, 0.4);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(209, 165, 92, 0.2);
}

.social-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent, rgba(209, 165, 92, 0.3), transparent);
    animation: cardGlow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.social-link:hover .social-glow {
    opacity: 1;
}

/* Footer Bottom */
.luxury-footer-bottom {
    position: relative;
    z-index: 3;
    padding: 40px 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(209, 165, 92, 0.3), transparent);
    margin-bottom: 30px;
}

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

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.copyright-text .highlight {
    color: #d1a55c;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #d1a55c;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d1a55c;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .luxury-footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand-section {
        text-align: center;
    }
    
    .footer-credentials {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .luxury-footer {
        padding: 80px 0 0 0;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-brand-title {
        font-size: 1.6rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .luxury-footer-content {
        gap: 40px;
    }
    
    .footer-links-grid {
        gap: 30px;
    }
    
    .footer-brand-section,
    .contact-info-footer {
        padding: 0 10px;
    }
    
    .credential-item {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===== LUXURY PICTURE CARDS ===== */
.luxury-picture-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    margin: 0 auto;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.luxury-picture-card:hover {
    transform: rotateY(5deg) rotateX(5deg) scale(1.02);
}

.card-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(209, 165, 92, 0.3);
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(209, 165, 92, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
}

.card-frame:hover {
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(209, 165, 92, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(209, 165, 92, 0.5);
}

.card-glow-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(209, 165, 92, 0.3), 
        transparent, 
        rgba(209, 165, 92, 0.3), 
        transparent);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    animation: borderGlow 3s ease-in-out infinite;
}

.luxury-picture-card:hover .card-glow-border {
    opacity: 1;
}

.picture-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.picture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(209, 165, 92, 0.1) 100%
    );
    z-index: 2;
    transition: all 0.6s ease;
}

.luxury-picture-card:hover .picture-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(209, 165, 92, 0.2) 100%
    );
}

.overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(209, 165, 92, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    animation: patternFloat 8s ease-in-out infinite;
}

.luxury-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
}

.luxury-picture-card:hover .luxury-image {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2) saturate(1.3);
}

.picture-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(209, 165, 92, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: all 0.4s ease;
}

.picture-badge i {
    font-size: 14px;
    animation: badgeIconFloat 2s ease-in-out infinite;
}

.luxury-picture-card:hover .picture-badge {
    transform: translateY(0);
    background: rgba(209, 165, 92, 1);
    box-shadow: 0 12px 35px rgba(209, 165, 92, 0.3);
}

.picture-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 25px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 70%,
        transparent 100%
    );
    color: white;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.6s ease;
}

.luxury-picture-card:hover .picture-details {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 70%,
        transparent 100%
    );
}

.picture-details h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #d1a55c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleShimmer 3s ease-in-out infinite;
}

.picture-details p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.card-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #d1a55c 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.7;
    animation: cardParticleFloat 4s ease-in-out infinite;
}

.card-particles .particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.card-particles .particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
    animation-duration: 4s;
}

.card-particles .particle:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.card-particles .particle:nth-child(4) {
    top: 40%;
    right: 35%;
    animation-delay: 0.5s;
    animation-duration: 4.5s;
}

/* Aviation Card Specific Styles */
.aviation-card .picture-badge {
    background: rgba(209,165,92, 0.9);
    color: white;
}

.aviation-card:hover .picture-badge {
    background: rgba(209,165,92, 1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
}

.aviation-card .picture-details h4 {
    color: #d1a55c;
}

/* Insurance Card Specific Styles */
.insurance-card .picture-badge {
    background: rgba(209,165,92, 0.9);
    color: white;
}

.insurance-card:hover .picture-badge {
    background: rgba(209,165,92, 1);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.insurance-card .picture-details h4 {
}

/* Keyframe Animations */
@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.3;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.8;
    }
}

@keyframes patternFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(5px, -5px) rotate(1deg);
    }
    66% {
        transform: translate(-5px, 5px) rotate(-1deg);
    }
}

@keyframes badgeIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes cardParticleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

@keyframes titleShimmer {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(209, 165, 92, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .luxury-picture-card {
        max-width: 100%;
        height: 280px;
        margin: 0 auto 20px;
    }
    
    .picture-badge {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .picture-badge i {
        font-size: 12px;
    }
    
    .picture-details {
        padding: 20px;
    }
    
    .picture-details h4 {
        font-size: 18px;
    }
    
    .picture-details p {
        font-size: 13px;
    }
    
    .luxury-picture-card:hover {
        transform: scale(1.01);
    }
}

@media (max-width: 480px) {
    .luxury-picture-card {
        height: 250px;
    }
    
    .picture-details h4 {
        font-size: 16px;
    }
    
    .picture-details p {
        font-size: 12px;
    }
}

/* ===== IFRS LOGO SECTION ===== */
.card-features-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 25px;
}

.ifrs-logo-section {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 120px;
}

.logo-frame {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(209, 165, 92, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(209, 165, 92, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.logo-frame:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(209, 165, 92, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(209, 165, 92, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    animation: logoGlow 2s ease-in-out infinite;
}

.logo-frame:hover .logo-glow {
    opacity: 1;
}

.ifrs-logo {
    max-width: 70px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.5s ease;
    z-index: 1;
}

.logo-frame:hover .ifrs-logo {
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.1);
}

.compliance-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.2),
        0 0 20px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.compliance-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.ifrs-logo-section:hover .compliance-badge:before {
    left: 100%;
}

.compliance-badge span {
    position: relative;
    z-index: 1;
}

.card-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Keyframe for logo glow */
@keyframes logoGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.3;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.7;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-features-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .ifrs-logo-section {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .logo-frame {
        width: 80px;
        height: 80px;
    }
    
    .ifrs-logo {
        max-width: 60px;
        max-height: 60px;
    }
    
    .card-features {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-frame {
        width: 70px;
        height: 70px;
    }
    
    .ifrs-logo {
        max-width: 50px;
        max-height: 50px;
    }
    
    .compliance-badge {
        padding: 5px 12px;
        font-size: 10px;
    }
}
