/* 
 * DAMAC Properties Inspired Styles
 * Extracted and adapted for SHFAF Real Estate Platform
 * Based on www.damacproperties.com design system
 */

/* ============================================
   COLOR VARIABLES (DAMAC Palette)
   ============================================ */
:root {
    --damac-black: #222222;
    --damac-white: #ffffff;
    --damac-gold: #d9c496;
    --damac-gold-light: #e4d5b4;
    --damac-gold-dark: #b8954d;
    --damac-gray-light: #e7e6e5;
    --damac-gray-medium: #b5b4b1;
    --damac-gray-dark: #4e4d4b;
    --damac-blue: #0059c8;
    --damac-blue-light: #0592e9;
}

/* ============================================
   GLASS MORPHISM EFFECTS
   ============================================ */
.glass-background {
    align-items: center;
    border-width: 1px;
    display: flex;
    height: 48px;
    justify-content: center;
    width: 48px;
    background: hsla(0, 0%, 50%, 0.3);
    background-blend-mode: luminosity;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 9999px;
}

.glass-effect {
    background: hsla(0, 0%, 50%, 0.3);
    background-blend-mode: luminosity;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-overlay {
    background: hsla(0, 0%, 50%, 0.3);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

/* ============================================
   SWIPER CAROUSEL STYLES
   ============================================ */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-radius: 5rem;
    height: 8px;
    width: 16px;
    background-color: #ffffff;
    opacity: 1;
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
}

.hero-carousel .swiper-slide {
    position: relative;
}

.hero-carousel .swiper-pagination {
    bottom: 40px !important;
    z-index: 20;
}

.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-carousel .swiper-button-next:hover,
.hero-carousel .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-carousel .swiper-button-next:after,
.hero-carousel .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Video Hero */
.videoHero {
    height: 100svh;
    object-fit: cover;
    width: 100%;
}

/* ============================================
   KPI / STATS SECTION
   ============================================ */
.kpiClass {
    bottom: 0;
    padding-left: 16px;
    position: absolute;
}

.kpiClass > div:first-child {
    padding-bottom: 12px;
}

.kpiClass > div:first-child:after {
    border-bottom: 1px solid #fff;
    content: "";
    padding-bottom: 12px;
    width: 64px;
}

.kpiClass > div:last-child {
    padding-bottom: 16px;
    padding-top: 12px;
}

.kpiClass > div:last-child:before {
    border-top: 1px solid #fff;
    content: "";
    padding-top: 12px;
    width: 64px;
}

.kpiCustom > div:not(:last-child) {
    border-bottom: 1px solid var(--damac-black);
}

.kpiCustom > div {
    padding: 24px 0;
}

@media (min-width: 1024px) {
    .kpiCustom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
    
    .kpiCustom > div {
        border-bottom: none;
        padding: 0;
    }
}

/* ============================================
   CARD STYLES
   ============================================ */
.carousel-projects-card {
    position: relative;
}

.carousel-projects-card:after {
    border-radius: 0.5rem;
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
    box-shadow: 0px 2px 24px 0px rgba(78, 77, 75, 0.1);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    -webkit-mask: linear-gradient(180deg, transparent 30%, #000 80%, #000);
    mask: linear-gradient(180deg, transparent 30%, #000 80%, #000);
}

@media (min-width: 1024px) {
    .carousel-projects-card:after {
        content: "";
    }
}

/* Property Card Hover Effects */
.carousel-projects-card .card-inner {
    transition: all 0.3s ease;
}

.carousel-projects-card:hover .card-inner {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(78, 77, 75, 0.15);
}

.carousel-projects-card:hover .hover-scale {
    transform: scale(1.05);
}

.carousel-projects-card .hover-scale {
    transition: transform 0.5s ease-in-out;
}

/* ============================================
   RICH TEXT STYLES
   ============================================ */
.rich-text-blog {
    white-space: pre-wrap;
}

.rich-text-blog h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 24px;
}

.rich-text-blog h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 24px;
}

.rich-text-blog h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 24px;
}

.rich-text-blog h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 24px;
}

.rich-text-blog p {
    font-size: 16px;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 24px;
}

.rich-text-blog p:last-child {
    margin-bottom: 0;
}

.rich-text-blog a {
    color: var(--damac-blue-light);
    font-weight: 500;
}

.rich-text-blog img {
    margin-bottom: 10px;
}

/* ============================================
   BUTTON STYLES (DAMAC Inspired)
   ============================================ */
.btn-damac {
    align-items: center;
    border-color: transparent;
    border-radius: 5rem;
    border-width: 1px;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 120%;
    padding: 14px 32px;
    text-transform: uppercase;
    color: var(--damac-black);
    background-color: var(--damac-gold);
    transition-duration: 0.2s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.btn-damac:hover {
    background-color: var(--damac-black);
    color: var(--damac-white);
}

.btn-damac:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(34, 34, 34, 0.3);
}

.btn-damac:disabled {
    border-radius: 5rem;
    pointer-events: none;
    border-color: #82807d;
    background-color: #82807d;
    color: var(--damac-white);
    opacity: 0.5;
}

/* ============================================
   TRUNCATE TEXT
   ============================================ */
.truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate-text-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   MEDIA HIGHLIGHT CONTENT
   ============================================ */
.media-highlight-content:after {
    border-radius: 1rem;
    bottom: 0;
    height: calc(100% + 80px);
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    content: "";
    -webkit-mask: linear-gradient(180deg, transparent, transparent 0, #000 30%, #000);
    mask: linear-gradient(180deg, transparent, transparent 0, #000 30%, #000);
}

@media (min-width: 1024px) {
    .media-highlight-content:after {
        content: none;
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
.custom-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.custom-scrollbar::-webkit-scrollbar {
    display: none;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1023px) {
    .mobile-hidden {
        display: none;
    }
}

@media (min-width: 1024px) {
    .desktop-hidden {
        display: none;
    }
}

/* ============================================
   ENHANCED ANIMATIONS & TRANSITIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth transitions */
.transition-damac {
    transition-duration: 0.2s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-damac-primary {
    font-family: var(--font-primary, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
}

.text-damac-secondary {
    font-family: var(--font-secondary, 'Josefin Sans', Arial, sans-serif);
    font-weight: 300;
    line-height: 120%;
}

.text-damac-title {
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
}

/* ============================================
   SPACING & LAYOUT
   ============================================ */
.section-padding {
    padding: 32px 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 64px 0;
    }
}

.container-damac {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .container-damac {
        padding: 0 24px;
    }
}

/* ============================================
   QUICK SEARCH BAR (Overlapping Hero - DAMAC Style)
   ============================================ */
.quick-search-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 30;
    padding: 0 16px;
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .quick-search-bar {
        padding: 0 24px;
    }
}

.quick-search-container {
    background: rgba(34, 34, 34, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .quick-search-container {
        grid-template-columns: 2fr 1.5fr 1.2fr 1.2fr auto;
        gap: 16px;
        padding: 24px 32px;
        align-items: end;
    }
}

.quick-search-field {
    position: relative;
}

.quick-search-field label {
    display: none; /* Hidden labels for cleaner look */
}

.quick-search-field select {
    width: 100%;
    padding: 14px 16px;
    padding-right: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-family: var(--font-secondary, 'Roboto', sans-serif);
    font-weight: 300;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.quick-search-field select:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.quick-search-field select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--damac-gold);
}

.quick-search-field::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.quick-search-field select option {
    background: var(--damac-black);
    color: white;
    padding: 8px;
}

/* Placeholder text styling */
.quick-search-field select:invalid {
    color: rgba(255, 255, 255, 0.6);
}

.quick-search-button {
    padding: 14px 32px;
    background-color: white;
    color: var(--damac-black);
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: var(--font-primary, 'Termina', sans-serif);
    height: fit-content;
}

.quick-search-button:hover {
    background-color: var(--damac-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.quick-search-button:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .quick-search-button {
        width: 100%;
        margin-top: 8px;
    }
}

/* ============================================
   BRAND COLLABORATIONS SECTION
   ============================================ */
.brand-collaborations {
    padding: 64px 0;
    background: white;
}

.brand-collaborations-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--damac-black);
    margin-bottom: 16px;
    font-family: var(--font-primary, 'Termina', sans-serif);
}

.brand-collaborations-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--damac-gray-50);
    margin-bottom: 48px;
    font-family: var(--font-secondary, 'Roboto', sans-serif);
    font-weight: 300;
}

.brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .brand-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .brand-logo-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 32px;
    }
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: white;
    border: 1px solid var(--damac-gray-10);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 120px;
}

.brand-logo-item:hover {
    border-color: var(--damac-gold);
    box-shadow: 0 2px 24px 0 rgba(78, 77, 75, 0.1);
    transform: translateY(-4px);
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonials-section {
    padding: 64px 0;
    background: var(--damac-gray-10);
}

.testimonials-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--damac-black);
    margin-bottom: 16px;
    font-family: var(--font-primary, 'Termina', sans-serif);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--damac-gray-50);
    margin-bottom: 48px;
    font-family: var(--font-secondary, 'Roboto', sans-serif);
    font-weight: 300;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 24px 0 rgba(78, 77, 75, 0.1);
    height: auto;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    fill: var(--damac-gold);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 140%;
    color: var(--damac-black);
    margin-bottom: 24px;
    font-family: var(--font-secondary, 'Roboto', sans-serif);
    font-weight: 300;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--damac-black);
    margin-bottom: 4px;
    font-family: var(--font-primary, 'Termina', sans-serif);
}

.testimonial-author-role {
    font-size: 14px;
    color: var(--damac-gray-50);
    font-family: var(--font-secondary, 'Roboto', sans-serif);
    font-weight: 300;
}

/* Testimonials Swiper Customization */
.testimonials-swiper .swiper-pagination {
    position: relative;
    margin-top: 32px;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--damac-black);
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 2px 24px 0 rgba(78, 77, 75, 0.1);
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: var(--damac-gold);
    color: white;
}

/* ============================================
   NEWS & UPDATES SECTION
   ============================================ */
.news-article-card {
    transition: all 0.3s ease;
}

.news-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(78, 77, 75, 0.15);
}

.news-article-card .hover-scale {
    transition: transform 0.5s ease-in-out;
}

.news-article-card:hover .hover-scale {
    transform: scale(1.1);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: var(--damac-black);
    padding: 64px 0;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--damac-gold);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   WHY PAKISTAN / WHY DUBAI SECTION
   ============================================ */
.why-section-card {
    transition: all 0.3s ease;
    height: 100%;
}

.why-section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================
   OUR EXPERTISE SECTION
   ============================================ */
.expertise-image-overlay {
    background: linear-gradient(180deg, transparent, rgba(34, 34, 34, 0.8));
}

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   ENHANCED HOMEPAGE STYLING
   ============================================ */

/* Section Spacing & Backgrounds */
section {
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--damac-gold), transparent);
    margin: 4rem 0;
    opacity: 0.3;
}

/* Enhanced Section Headers */
.section-header {
    position: relative;
    margin-bottom: 3rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--damac-gold), transparent);
}

.section-header.text-left::after {
    left: 0;
    transform: none;
}

/* Gradient Backgrounds */
.gradient-bg-gold {
    background: linear-gradient(135deg, #d9c496 0%, #b8954d 100%);
}

.gradient-bg-dark {
    background: linear-gradient(135deg, #222222 0%, #4e4d4b 100%);
}

.gradient-bg-light {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

/* Pattern Overlays */
.pattern-overlay {
    position: relative;
}

.pattern-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(217, 196, 150, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.pattern-overlay > * {
    position: relative;
    z-index: 1;
}

/* Enhanced Cards */
.enhanced-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.enhanced-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Number Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-animate {
    animation: countUp 0.8s ease-out;
}

/* Floating Elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.float-animation-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Enhanced Buttons */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

/* Image Zoom Effect */
.image-zoom-container {
    overflow: hidden;
    border-radius: 0.5rem;
}

.image-zoom-container img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom-container:hover img {
    transform: scale(1.1);
}

/* Text Reveal Animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-reveal {
    animation: textReveal 0.8s ease-out;
}

/* Staggered Reveal */
.reveal-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal-stagger.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Section Background Patterns */
.bg-pattern-dots {
    background-image: radial-gradient(circle, rgba(217, 196, 150, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-pattern-grid {
    background-image: 
        linear-gradient(rgba(217, 196, 150, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 196, 150, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Gold Accent Lines */
.gold-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--damac-gold), transparent);
    margin: 1.5rem 0;
}

.gold-line-center {
    width: 80px;
    height: 3px;
    background: var(--damac-gold);
    margin: 1.5rem auto;
}

/* Enhanced Typography */
.text-gradient-gold {
    background: linear-gradient(135deg, #d9c496 0%, #b8954d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow-gold {
    text-shadow: 0 2px 10px rgba(217, 196, 150, 0.3);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .section-header::after {
        width: 60px;
    }
    
    .enhanced-card:hover {
        transform: translateY(-4px);
    }
}

