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

:root {
    --gold: #d4af37;
    --dark: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --light-text: #e0e0e0;
    --white: #ffffff;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    color: var(--light-text);
    line-height: 1.7;
    direction: rtl;
}

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

/* Navbar */
.navbar {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--white);
}

.logo a:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}
.nav-links li {
    position:relative;
    
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a:hover,
.nav-links .current_page_item a {
    color: var(--gold);
}




.nav-links a[href*="#contact"]::after {
    display: none;
}

.dropdown {
    position: relative;
}
br~br {
    display: none;
}
.sub-menu {
    display: none;
    position: absolute;
    top: 35%;
    list-style: none;
    right: 0;
    background: var(--dark-secondary);
    min-width: 280px;
    margin-top: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.sub-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.sub-menu a::after {
    display: none;
}

.sub-menu a:last-child {
    border-bottom: none;
}

/* Keep dropdown open when hovering over it */
.menu-item-has-children:hover .sub-menu,
.sub-menu:hover {
    display: block;
}

/* Cover Section - Luxury Style */
.cover-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.cover-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px;
}

.cover-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.cover-badge i {
    color: var(--gold);
    font-size: 1.2rem;
}

.cover-badge span {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.cover-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.3s both;
}

.cover-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.6s both;
}

.cover-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gold);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-luxury::before {
    content: '';
    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.5s;
}

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

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-luxury-outline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s;
}

.btn-luxury-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.cover-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    margin: 0 auto 10px;
}

.cover-scroll span {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

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

/* Hero (Keep old styles for other pages) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

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

.hero-content {
    max-width: 700px;
}

.hero-label {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}

.gold-text {
    color: var(--gold);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--light-text);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 15px 35px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    font-size: 2rem;
    color: var(--gold);
    animation: bounce 2s infinite;
}

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

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.title-line {
    width: 100px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--dark-secondary);
}

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

.service-item {
    background: var(--dark-tertiary);
    padding: 40px 30px;
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.service-item p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 15px;
}

/* Stats */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--dark) 100%);
}

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

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--dark-secondary);
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-text);
}

.stat-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.1);
}

/* Why Us */
.why-us {
    padding: 100px 0;
}

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

.why-item {
    text-align: center;
    padding: 40px 30px;
}

.why-item i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

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

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--dark-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--dark-tertiary);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin: 0 auto 15px;
}

.info-card h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}
.nav-links a[href*="#contact"] {
        background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 25px;
    border-radius: 5px;
}
.info-card p {
    color: var(--light-text);
    direction: ltr;
}
.info-card a[href*="mailto"] {
    color:#fff;
    text-decoration:none
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: var(--dark-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 20px;
    border-radius: 5px;
    color: var(--white);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.contact-form button {
    border: none;
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-brand p {
    margin: 20px 0;
    color: var(--light-text);
    line-height: 1.8;
}

.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 0.95rem;
}

.location-item i {
    color: var(--gold);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--light-text);
    opacity: 0.7;
}

/* About Page - Luxury Styles */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 50%, var(--dark) 100%);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    padding: 12px 35px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.luxury-badge i {
    color: var(--gold);
    font-size: 1.3rem;
}

.luxury-badge span {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.decorative-element {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

.decorative-element-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.decorative-element-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.animate-in {
    animation: fadeInUp 1s ease;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--dark-secondary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
}

.frame-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: shine 3s infinite;
}

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

.floating-number {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: var(--gold);
    color: var(--dark);
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    border: 5px solid var(--dark-secondary);
}

.big-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.plus {
    font-size: 2rem;
    font-weight: 900;
    margin-right: -10px;
}

.small-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 5px;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.stat-item-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--dark-tertiary);
    border-radius: 10px;
    border-right: 4px solid var(--gold);
}

.stat-item-inline i {
    font-size: 1.8rem;
    color: var(--gold);
}

.stat-item-inline strong {
    color: var(--gold);
}

/* Vision & Mission Luxury */
.vm-luxury-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
}

.section-label.center {
    justify-content: center;
    margin-bottom: 30px;
}

.vm-luxury-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.vm-luxury-card {
    background: var(--dark-secondary);
    padding: 60px 50px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s;
}

.vm-luxury-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
}

.vm-icon-luxury {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 3px solid var(--gold);
    transition: all 0.4s;
}

.vm-luxury-card:hover .icon-bg {
    transform: scale(1.1) rotate(180deg);
}

.vm-icon-luxury i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--gold);
}

.vm-luxury-card h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 25px;
}

.vm-luxury-card p {
    color: var(--light-text);
    line-height: 1.9;
    font-size: 1.1rem;
}

.decorative-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
}

.corner-1 {
    top: 20px;
    right: 20px;
    border-bottom: none;
    border-left: none;
}

.corner-2 {
    top: 20px;
    left: 20px;
    border-bottom: none;
    border-right: none;
}

.corner-3 {
    bottom: 20px;
    right: 20px;
    border-top: none;
    border-left: none;
}

.corner-4 {
    bottom: 20px;
    left: 20px;
    border-top: none;
    border-right: none;
}

/* Values Luxury */
.values-luxury-section {
    padding: 120px 0;
    background: var(--dark-secondary);
}

.values-luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-luxury-card {
    background: var(--dark-tertiary);
    padding: 50px 35px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s;
    overflow: hidden;
}

.value-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.value-luxury-card:hover::before {
    transform: translateX(0);
}

.value-luxury-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
}

.value-icon-luxury {
    width: 90px;
    height: 90px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--gold);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s;
}

.value-luxury-card:hover .value-icon-luxury {
    background: var(--gold);
    color: var(--dark);
    transform: rotateY(360deg);
}

.value-luxury-card h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* Team Luxury */
.team-luxury-section {
    padding: 120px 0;
    background: var(--dark);
}

.team-luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-luxury-card {
    background: var(--dark-secondary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s;
}

.team-luxury-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.team-image-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.team-image {
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: var(--gold);
    border: 3px solid var(--gold);
    transition: all 0.4s;
}

.team-luxury-card:hover .team-image {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.team-badge {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    background: var(--gold);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.team-luxury-card h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 5px;
}

.team-role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-desc {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

/* CTA Luxury */
.cta-luxury-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.cta-luxury-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-luxury-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-luxury-content p {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Styles (Old - Keep for compatibility) */
.page-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--dark-secondary) 100%);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--light-text);
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-text);
}

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

.vm-card {
    background: var(--dark-secondary);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.vm-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--gold);
}

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
}

.values {
    margin-bottom: 4rem;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-secondary);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.value-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--light-text);
}

.team-section {
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.team-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

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

.team-member {
    background: var(--dark-secondary);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.team-member:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--gold);
}

.team-member h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.member-role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--dark-secondary) 100%);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Service Detail Pages */
.service-hero {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--dark-secondary) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-hero .lead {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.service-image-container {
    margin: 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
}

.service-section {
    padding: 80px 0;
}

.service-section.alt {
    background: var(--dark-secondary);
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin: 2.5rem 0 1.5rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    margin: 2rem 0;
}

.service-features-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list i {
    color: var(--gold);
    font-size: 1.3rem;
}

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

.benefit-card {
    background: var(--dark-tertiary);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--gold);
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: var(--light-text);
    font-size: 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1rem;
}

.step-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--light-text);
    opacity: 0.7;
}

/* Cover Section */
.cover-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 46, 0.75) 100%);
    z-index: 2;
}

.cover-section .container {
    position: relative;
    z-index: 3;
}

.cover-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cover-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.cover-badge i {
    color: var(--gold);
    font-size: 1.2rem;
}

.cover-badge span {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
}

.cover-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cover-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.gold-text {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold), #f4d186);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cover-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-luxury-outline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: var(--gold);
    padding: 18px 40px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.btn-luxury-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.cover-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: fadeIn 1s ease 1s backwards;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    margin: 0 auto 10px;
    animation: scrollDown 2s infinite;
}

.cover-scroll span {
    font-size: 0.9rem;
    color: var(--light-text);
    opacity: 0.7;
}

/* About Preview Section */
.about-preview-section {
    padding: 120px 0;
    position: relative;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.luxury-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.luxury-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.luxury-frame:hover img {
    transform: scale(1.05);
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--gold);
    z-index: 2;
}

.frame-corner-1 {
    top: -10px;
    right: -10px;
    border-bottom: none;
    border-left: none;
    border-top-right-radius: 20px;
}

.frame-corner-2 {
    top: -10px;
    left: -10px;
    border-bottom: none;
    border-right: none;
    border-top-left-radius: 20px;
}

.frame-corner-3 {
    bottom: -10px;
    right: -10px;
    border-top: none;
    border-left: none;
    border-bottom-right-radius: 20px;
}

.frame-corner-4 {
    bottom: -10px;
    left: -10px;
    border-top: none;
    border-right: none;
    border-bottom-left-radius: 20px;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    animation: float 3s ease-in-out infinite;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
}

.about-preview-content {
    padding: 0 20px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.label-text {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.luxury-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 25px;
}

.luxury-heading.center {
    text-align: center;
}

.luxury-text {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.9;
    margin-bottom: 35px;
}

.luxury-text.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.luxury-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.luxury-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.feature-content h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-content p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
}

.btn-luxury-simple {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.btn-luxury-simple:hover {
    gap: 20px;
}

.btn-luxury-simple i {
    transition: transform 0.3s ease;
}

.btn-luxury-simple:hover i {
    transform: translateX(-5px);
}

/* Vision Section */
.vision-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(22, 33, 62, 0.5) 100%);
    overflow: hidden;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.vision-section .container {
    position: relative;
    z-index: 2;
}

.vision-content {
    text-align: center;
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.vision-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    background: rgba(26, 26, 46, 0.8);
}

.vision-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.vision-card:hover .vision-icon {
    transform: rotateY(360deg);
}

.vision-icon i {
    font-size: 2.5rem;
    color: var(--dark);
}

.vision-card h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.vision-card p {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.vision-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(212, 175, 55, 0.05) 50px, rgba(212, 175, 55, 0.05) 51px);
    z-index: 1;
}

/* Footer Locations */
.footer-locations {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 1rem;
}

.location-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--light-text);
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

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

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

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

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.5; }
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger { 
        display: flex; 
    }
    
    .nav-links { 
        display: none;
        position: fixed;
        top: 85px;
        right: 0;
        left: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 999;
        max-height: calc(100vh - 85px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding: 15px 0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .sub-menu {
        position: static;
        display: none;
        margin-top: 15px;
        width: 100%;
        border-radius: 10px;
    }
    
    .dropdown.active .sub-menu {
        display: block;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .section-title h2 { font-size: 2rem; }
    .footer-content { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    
    .cover-title { font-size: 2.5rem; }
    .cover-subtitle { font-size: 1.1rem; }
    .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
    .luxury-heading { font-size: 2rem; }
    .vision-cards { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================
   About Page Luxury Styles
   ============================================ */

/* About Hero */
.about-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.luxury-badge-lg {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    animation: float 3s ease-in-out infinite;
}

.luxury-badge-lg i {
    font-size: 3rem;
    color: var(--dark);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.hero-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(212, 175, 55, 0.05) 30px, rgba(212, 175, 55, 0.05) 31px);
}

/* Story Section */
.about-story {
    padding: 120px 0;
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.luxury-frame-double {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.luxury-frame-double img {
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.luxury-frame-double:hover img {
    transform: scale(1.08);
}

.frame-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

.decorative-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.decorative-line .dot {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.decorative-line .line {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.story-stat-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.stat-icon-luxury {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.story-stat-item:hover .stat-icon-luxury {
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-color: var(--gold);
    transform: rotateY(360deg);
}

.stat-icon-luxury i {
    font-size: 2rem;
    color: var(--gold);
    transition: color 0.4s ease;
}

.story-stat-item:hover .stat-icon-luxury i {
    color: var(--dark);
}

.stat-info h3 {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--light-text);
    font-size: 1rem;
}

/* Vision & Mission Luxury */
.vision-mission-luxury {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(22, 33, 62, 0.4) 100%);
    position: relative;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vm-card-luxury {
    position: relative;
    background: rgba(26, 26, 46, 0.7);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.5s ease;
    overflow: hidden;
}

.vm-card-luxury:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.3);
}

.vm-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.vm-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.vm-icon-wrapper i {
    position: relative;
    font-size: 3.5rem;
    color: var(--dark);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.vm-card-luxury h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.vm-card-luxury p {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.9;
}

.vm-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.3);
}

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

/* Values Luxury */
.values-luxury {
    padding: 120px 0;
}

.section-header-luxury {
    text-align: center;
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card-luxury {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.value-card-luxury::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.value-card-luxury:hover::before {
    opacity: 1;
}

.value-card-luxury:hover {
    transform: translateY(-12px);
    background: rgba(26, 26, 46, 0.9);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.value-icon-luxury {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.value-card-luxury:hover .value-icon-luxury {
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-color: var(--gold);
    transform: rotateY(180deg);
}

.value-icon-luxury i {
    font-size: 2.2rem;
    color: var(--gold);
    transition: color 0.4s ease;
}

.value-card-luxury:hover .value-icon-luxury i {
    color: var(--dark);
}

.value-card-luxury h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card-luxury p {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Team Luxury */
.team-luxury {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, rgba(22, 33, 62, 0.3) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-member-luxury {
    text-align: center;
}

.member-image-wrapper {
    position: relative;
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.member-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(244, 209, 134, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.member-image-wrapper:hover .member-overlay {
    opacity: 1;
}

.member-image-wrapper:hover img {
    transform: scale(1.1);
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 45px;
    height: 45px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-5px);
}

.member-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 700;
}

.member-position {
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.member-bio {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Luxury */
.cta-luxury {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.cta-luxury::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content-luxury {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.cta-icon-large i {
    font-size: 3.5rem;
    color: var(--dark);
}

.cta-content-luxury h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-luxury p {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ============================================
   Portfolio Page Styles
   ============================================ */

/* Portfolio Hero */
.portfolio-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    text-align: center;
}

.portfolio-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Portfolio Filter */
.portfolio-filter {
    padding: 50px 0;
    background: rgba(26, 26, 46, 0.3);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Portfolio Category */
.portfolio-category {
    padding: 80px 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--dark);
}

.category-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.category-title p {
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project-card {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(244, 209, 134, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    width: 60px;
    height: 60px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: var(--white);
    transform: scale(1.1);
}

.project-content {
    padding: 30px;
}

.project-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-content h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.project-content p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.project-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
}

.project-stats i {
    font-size: 1rem;
}

/* Portfolio Stats */
.portfolio-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(22, 33, 62, 0.5) 100%);
}

.stats-grid-portfolio {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card-portfolio {
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.stat-card-portfolio:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.stat-icon-lg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon-lg i {
    font-size: 2.5rem;
    color: var(--dark);
}

.stat-card-portfolio h3 {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-card-portfolio p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid-portfolio { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .story-grid { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .cta-content-luxury h2 { font-size: 2rem; }
    .story-stats { flex-direction: column; gap: 25px; }
    .projects-grid { grid-template-columns: 1fr; }
    .stats-grid-portfolio { grid-template-columns: 1fr; }
    .category-header { flex-direction: column; text-align: center; }
    .filter-buttons { flex-direction: column; align-items: center; }
}

/* ============================================
   Blog Page Styles
   ============================================ */

/* Blog Hero */
.blog-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Article */
.featured-article {
    padding: 80px 0;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 40px;
}

.featured-label i {
    font-size: 1.2rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-grid:hover {
    border-color: var(--gold);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.featured-content {
    padding: 50px 50px 50px 0;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    font-size: 0.95rem;
}

.featured-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-content p {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    margin-bottom: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.article-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.author-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

/* Blog Categories */
.blog-categories {
    padding: 50px 0;
    background: rgba(26, 26, 46, 0.4);
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.category-btn i {
    font-size: 1.2rem;
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(244, 209, 134, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.read-article {
    width: 60px;
    height: 60px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-article:hover {
    background: var(--white);
    transform: scale(1.1);
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--light-text);
    font-size: 0.85rem;
}

.blog-card-content h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-author-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author-mini img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.blog-author-mini span {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-stats {
    display: flex;
    gap: 15px;
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.9rem;
}

/* Newsletter Luxury */
.newsletter-luxury {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-luxury::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: float 3s ease-in-out infinite;
}

.newsletter-icon i {
    font-size: 3rem;
    color: var(--dark);
}

.newsletter-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 30px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(26, 26, 46, 1);
}

.newsletter-form input::placeholder {
    color: var(--light-text);
    opacity: 0.6;
}

/* Responsive Blog */
@media (max-width: 1024px) {
    .featured-grid { grid-template-columns: 1fr; }
    .featured-content { padding: 40px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .featured-content h2 { font-size: 1.8rem; }
    .articles-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-content h2 { font-size: 2rem; }
    .categories-grid { flex-direction: column; align-items: center; }
}
/* ==============================================
   Services Page Styles
   ============================================ */

/* Services Hero */
.services-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.95) 0%, rgba(22, 33, 62, 0.9) 100%);
    z-index: 1;
}

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

.hero-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.services-hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.services-hero-content p {
    font-size: 1.3rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 50px;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stats-mini .stat-item {
    text-align: center;
}

.hero-stats-mini .stat-item h3 {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 5px;
}

.hero-stats-mini .stat-item p {
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background: var(--dark-secondary);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-header-center h2 {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 20px;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-premium-card {
    background: rgba(212, 175, 55, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-premium-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.service-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    display: none;
}

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

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

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(244, 209, 134, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.view-service-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--dark);
    color: var(--gold);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.view-service-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: scale(1.05);
}

.service-card-content {
    padding: 40px 30px;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-premium-card:hover .service-icon-box {
    transform: rotateY(360deg);
}

.service-icon-box i {
    font-size: 2.5rem;
    color: var(--dark);
}

.service-card-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-content > p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-features-mini {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features-mini li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 0.95rem;
}

.service-features-mini li i {
    color: var(--gold);
    font-size: 0.9rem;
}

.service-card-footer {
    padding-top: 25px;
    border-top: 2px solid rgba(212, 175, 55, 0.15);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 15px;
}

/* Custom Solution Card */
.custom-solution-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 209, 134, 0.05));
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.custom-solution-content {
    text-align: center;
    padding: 40px;
}

.custom-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.custom-icon i {
    font-size: 3rem;
    color: var(--dark);
}

.custom-solution-content h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.custom-solution-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.custom-solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.custom-solution-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Why Services Section */
.why-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(22, 33, 62, 0.5) 100%);
}

.why-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-service-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.why-service-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(212, 175, 55, 0.15);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-service-item:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-color: var(--gold);
    transform: rotateY(360deg);
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    transition: color 0.4s ease;
}

.why-service-item:hover .why-icon i {
    color: var(--dark);
}

.why-service-item h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-service-item p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1rem;
}

/* Services CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(22, 33, 62, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.services-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.cta-icon-large i {
    font-size: 4rem;
    color: var(--dark);
}

.services-cta-content h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 900;
}

.services-cta-content p {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-cta-gold,
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-cta-gold {
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-cta-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-cta-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .why-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats-mini {
        gap: 30px;
    }
    
    .hero-stats-mini .stat-item h3 {
        font-size: 2rem;
    }
    
    .section-header-center h2 {
        font-size: 2.5rem;
    }
    
    .why-services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-gold,
    .btn-cta-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* ==============================================
   About Page RICH & VIBRANT Styles
   ============================================ */

/* Enhanced Hero Section */
.about-hero-rich {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1e 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: brightness(0.5) contrast(1.2);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.9) 0%, rgba(22, 33, 62, 0.85) 100%);
    z-index: 1;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 209, 134, 0.05));
    border-radius: 50%;
    animation: float-random 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-delay: 9s;
}

@keyframes float-random {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(40px, 10px) rotate(270deg);
    }
}

/* Hero Content */
.hero-content-rich {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Animated Badges - 6 badges */
.animated-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.badge-floating {
    position: absolute;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    animation: float 6s ease-in-out infinite;
}

.badge-floating i {
    font-size: 1.2rem;
}

.badge-1 {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 15%;
    right: 8%;
    animation-delay: 1s;
}

.badge-3 {
    top: 45%;
    left: 3%;
    animation-delay: 2s;
}

.badge-4 {
    top: 45%;
    right: 3%;
    animation-delay: 3s;
}

.badge-5 {
    bottom: 20%;
    left: 12%;
    animation-delay: 4s;
}

.badge-6 {
    bottom: 20%;
    right: 12%;
    animation-delay: 5s;
}

/* Center Pulse Badge */
.hero-badge-center {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-center i {
    font-size: 4rem;
    color: var(--gold);
    z-index: 2;
    position: relative;
    animation: rotate-slow 10s linear infinite;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
    opacity: 0;
}

.pulse-ring.delay-1 {
    animation-delay: 1s;
}

.pulse-ring.delay-2 {
    animation-delay: 2s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hero Stats Mini - Enhanced */
.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

.stat-mini {
    position: relative;
    text-align: center;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    min-width: 150px;
    transition: all 0.4s ease;
}

.stat-mini:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.stat-icon-mini {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.stat-mini:hover .stat-icon-mini {
    transform: rotateY(360deg);
}

.stat-icon-mini i {
    font-size: 1.5rem;
    color: var(--dark);
}

.stat-mini h3 {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-mini p {
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Hero Features List */
.hero-features-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.hero-feature i {
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-feature span {
    color: var(--white);
    font-weight: 600;
}

/* Story Timeline Section */
.story-timeline {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.3);
    position: relative;
}

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--gold) 10%, 
        var(--gold) 90%, 
        transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--dark-secondary);
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-icon {
    transform: translate(-50%, -50%) scale(1.15) rotate(360deg);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--dark);
}

.timeline-content {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    background: var(--gold);
}

.timeline-item .timeline-content::before {
    right: -30px;
    transform: translateY(-50%);
}

.timeline-item-reverse .timeline-content::before {
    left: -30px;
    transform: translateY(-50%);
}

.timeline-content:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.timeline-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.timeline-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.timeline-image:hover {
    transform: scale(1.05);
}

.timeline-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-image:hover::after {
    opacity: 1;
}

.timeline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Timeline Item Reverse - swap positions */
.timeline-item-reverse {
    direction: ltr;
}

.timeline-item-reverse .timeline-content {
    direction: rtl;
}

/* Responsive Timeline */
@media (max-width: 992px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item-reverse {
        grid-template-columns: 1fr;
        direction: rtl;
        padding-left: 80px;
    }
    
    .timeline-icon {
        left: 30px;
        transform: translateY(-50%);
    }
    
    .timeline-item:hover .timeline-icon {
        transform: translateY(-50%) scale(1.15) rotate(360deg);
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-image {
        order: 2;
    }
    
    .timeline-content {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .timeline-item,
    .timeline-item-reverse {
        padding-left: 60px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-icon {
        left: 20px;
        width: 60px;
        height: 60px;
    }
    
    .timeline-icon i {
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 30px 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
    }
    
    .timeline-image img {
        height: 250px;
    }
}

/* Vision & Mission Section Rich */
.vm-section-rich {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(22, 33, 62, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

.vm-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.vm-grid-rich {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.vm-card-rich {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vm-card-rich:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

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

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 10%;
    animation-delay: 4s;
}

.vm-icon-rich {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

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

.vm-icon-rich i {
    font-size: 3rem;
    color: var(--dark);
}

.vm-card-rich h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.vm-card-rich > p {
    color: var(--light-text);
    line-height: 1.9;
    font-size: 1.15rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.vm-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.vm-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 1.05rem;
    font-weight: 600;
}

.vm-features li i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Values Rich Section */
.values-rich {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.4);
}

.values-grid-rich {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card-rich {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card-rich:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.value-bg-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    z-index: 0;
}

.value-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.value-card-rich:hover .value-icon-wrapper {
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-color: var(--gold);
    transform: rotateY(180deg);
}

.value-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--gold);
    transition: color 0.5s ease;
}

.value-card-rich:hover .value-icon-wrapper i {
    color: var(--dark);
}

.value-card-rich h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.value-card-rich p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.value-hover-line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #f4d186);
    margin: 20px auto 0;
    transition: width 0.4s ease;
}

.value-card-rich:hover .value-hover-line {
    width: 80%;
}

/* Team Rich Section */
.team-rich {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(22, 33, 62, 0.5) 100%);
    position: relative;
}

.team-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.team-grid-rich {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.team-member-rich {
    transition: transform 0.3s ease;
}

.member-card {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.member-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

.member-image-rich {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.member-image-rich img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.member-overlay-rich {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(244, 209, 134, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.member-card:hover .member-overlay-rich {
    opacity: 1;
}

.member-social-rich {
    display: flex;
    gap: 15px;
}

.member-social-rich a {
    width: 50px;
    height: 50px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.member-social-rich a:hover {
    background: var(--white);
    color: var(--dark);
    transform: scale(1.15) rotate(360deg);
}

.member-badge-rich {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.member-info-rich {
    padding: 30px;
}

.member-info-rich h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.member-role {
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.member-desc {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.member-skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.member-skills span {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 15px;
    border-radius: 15px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.member-skills span:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

/* Section Header Rich (Global for all sections) */
.section-header-rich {
    text-align: center;
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-title-rich {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* CTA Rich Section */
.cta-rich {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(22, 33, 62, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.cta-content-rich {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon-animated {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.cta-icon-animated i {
    font-size: 4rem;
    color: var(--dark);
}

.cta-content-rich h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-content-rich > p {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-rich {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.btn-cta-secondary {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-cta-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-weight: 600;
}

.trust-badge i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* Responsive for new sections */
@media (max-width: 1200px) {
    .team-grid-rich {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .vm-grid-rich {
        grid-template-columns: 1fr;
    }
    
    .values-grid-rich {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid-rich {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid-rich,
    .team-grid-rich {
        grid-template-columns: 1fr;
    }
    
    .section-title-rich {
        font-size: 2.5rem;
    }
    
    .cta-content-rich h2 {
        font-size: 2.5rem;
    }
    
    .member-image-rich {
        height: 300px;
    }
}

/* Stats Counter Enhanced */
.stats-counter {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.stats-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stats-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: brightness(0.4);
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    z-index: 1;
}

.stats-counter .container {
    position: relative;
    z-index: 2;
}

.stats-grid-counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-counter-item {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-counter-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.stat-icon-counter {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.stat-counter-item:hover .stat-icon-counter {
    transform: scale(1.1) rotate(360deg);
}

.stat-icon-counter i {
    font-size: 2.5rem;
    color: var(--dark);
}

.stat-counter-item h3 {
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-counter-item > p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #f4d186);
    border-radius: 10px;
    transition: width 2s ease;
}

.stat-description {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.3);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.client-card {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
    transition: top 0.5s ease;
}

.client-card:hover::before {
    top: 0;
}

.client-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.client-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.client-card:hover .client-logo {
    transform: scale(1.15) rotate(360deg);
}

.client-logo i {
    font-size: 2.5rem;
    color: var(--dark);
}

.client-card h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.client-card p {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Google Partner Section */
.google-partner-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.google-partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(66, 133, 244, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(234, 67, 53, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.google-partner-card {
    max-width: 1100px;
    margin: 60px auto 0;
    background: rgba(212, 175, 55, 0.03);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    z-index: 2;
}

.partner-badge-large {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 209, 134, 0.05));
    border-radius: 25px;
    position: relative;
    margin-bottom: 50px;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

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

.google-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(66, 133, 244, 0.4);
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.google-icon i {
    font-size: 5rem;
    color: white;
}

.partner-badge-large h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.partner-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.partner-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    color: var(--dark);
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 2;
}

.partner-benefits {
    margin-bottom: 50px;
}

.partner-benefits h4 {
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s ease;
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateX(-5px);
}

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

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--dark);
}

.benefit-text h5 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.benefit-text p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 1rem;
}

.partner-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.partner-stat {
    text-align: center;
    flex: 1;
}

.partner-stat i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.partner-stat h4 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 10px;
}

.partner-stat p {
    color: var(--light-text);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Responsive Google Partner */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .google-partner-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .partner-badge-large {
        padding: 30px 20px;
    }
    
    .google-icon {
        width: 120px;
        height: 120px;
    }
    
    .google-icon i {
        font-size: 4rem;
    }
    
    .partner-badge-large h3 {
        font-size: 2rem;
    }
    
    .benefit-item {
        padding: 20px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid-counter {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .badge-floating {
        display: none;
    }
    
    .stats-grid-counter {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats-mini {
        gap: 20px;
    }
    
    .stat-mini {
        min-width: 120px;
        padding: 20px;
    }
    
    .clients-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features-list {
        flex-direction: column;
        align-items: center;
    }
    
    .shape {
        display: none;
    }
    
    .stats-grid-counter {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-counter-item h3 {
        font-size: 2.5rem;
    }
}

/* Testimonials Section */
.testimonials-rich {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(22, 33, 62, 0.4) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.testimonial-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-info p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-body {
    position: relative;
    margin-bottom: 25px;
    z-index: 2;
}

.testimonial-quote {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.1);
    z-index: -1;
}

.testimonial-body p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1rem;
}

.testimonial-stats {
    display: flex;
    gap: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
}

.t-stat {
    text-align: center;
    flex: 1;
}

.t-stat span {
    display: block;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 5px;
}

.t-stat p {
    color: var(--light-text);
    font-size: 0.85rem;
}

/* Work Process Section */
.process-section {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.6);
}

.process-timeline {
    max-width: 800px;
    margin: 60px auto 0;
}

.process-step {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

.process-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #f4d186);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.4s ease;
}

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

.process-icon i {
    font-size: 2.5rem;
    color: var(--dark);
}

.process-step h3 {
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-step > p {
    color: var(--light-text);
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.process-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-features span {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--light-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.process-features span:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.process-features span i {
    color: var(--gold);
    font-size: 0.8rem;
}

.process-arrow {
    text-align: center;
    padding: 30px 0;
}

.process-arrow i {
    font-size: 2.5rem;
    color: var(--gold);
    animation: bounce 2s infinite;
}

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

/* Responsive for new sections */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 40px 30px;
    }
    
    .process-number {
        font-size: 3.5rem;
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .process-step h3 {
        font-size: 1.5rem;
    }
}
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #d4af37;          /* Official WhatsApp green */
    color: #000000;
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 4px 8px 15px rgba(0,0,0,0.4);
  }

  /* Second button - positioned above the first one */
  .whatsapp-float.second {
    bottom: 120px;   /* Adjust spacing between buttons */
    left: 40px;
  }
