/* ===== ICE GLOBAL RESOURCES - ENHANCED STYLES ===== */
/* Mobile-First Responsive Design with Gold Theme */

/* ===== CSS VARIABLES ===== */
:root {
    /* Gold Color Palette */
    --primary-gold: #d4af37;
    --accent-gold: #ffd700;
    --deep-gold: #b8860b;
    --gold-gradient: linear-gradient(135deg, #ffd700, #d4af37, #b8860b);

    /* Supporting Colors */
    --deep-navy: #1a1a2e;
    --charcoal: #2c2c54;
    --pearl-white: #f8f9fa;
    --soft-gray: #6c757d;
    --light-gray: #e9ecef;
    --dark-overlay: rgba(26, 26, 46, 0.8);

    /* Typography */
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Nunito Sans", sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--pearl-white);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-center {
    text-align: center;
}
.text-gold {
    color: var(--primary-gold);
}
.bg-gold {
    background: var(--gold-gradient);
}
.bg-navy {
    background-color: var(--deep-navy);
}

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: white;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* ===== LOADING ANIMATION ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--charcoal);
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    min-height: 100vh;
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)),
        url("image/luxury-07.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    height: 80px;
    overflow: visible;
}

nav.scrolled {
    background: rgba(26, 26, 46, 0.95);
    box-shadow: var(--shadow-md);
}

nav img {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

/* Clean Logo Styling - Extra Large Size */
.logo-link img {
    height: 300px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.logo-link:hover img {
    filter: brightness(1.2) contrast(1.2);
}

/* About Page Sub-Header Logo Styling */
.sub-header nav {
    height: 80px;
    overflow: visible;
}

.sub-header nav img {
    height: 300px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.sub-header nav a:hover img {
    filter: brightness(1.2) contrast(1.2);
}

/* Contact Page Header Logo Styling */
.header .nav {
    height: 80px !important;
    overflow: visible !important;
}

.header .nav .logo img {
    height: 300px !important;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.header .nav .logo:hover img {
    filter: brightness(1.2) contrast(1.2);
}

/* Enhanced Shop With Us Button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8860b) !important;
    color: #1a1a2e !important;
    text-decoration: none !important;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    border: none !important;
    cursor: pointer;
    transform: translateY(0);
}

.hero-btn::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.6s ease;
}

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

.hero-btn:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.6) !important;
    background: linear-gradient(135deg, #ffed4e, #e6c547, #c9a96e) !important;
}

.hero-btn:active {
    transform: translateY(-2px) scale(1.02) !important;
}



.nav-links {
    display: flex;
    align-items: center;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-links ul li a {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-links ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== HERO SECTION ===== */
.text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-top: 80px;
}

.text-box h1 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.text-box p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-btn {
    animation: fadeInUp 1s ease 0.6s both;
}

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

/* ===== SECTIONS ===== */
section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* ===== VISION SECTION ===== */
.vision {
    background: linear-gradient(135deg, var(--pearl-white), #ffffff);
    text-align: center;
}

.vision h1 {
    color: var(--deep-navy);
    margin-bottom: var(--spacing-lg);
}

.vision p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--soft-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== BUSINESS CARDS ===== */
.Business {
    background: var(--deep-navy);
    color: white;
    padding: var(--spacing-xxl) 0;
}

.Business h1 {
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.Business > p {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    opacity: 0.8;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.Business-col {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.Business-col:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.Business-col h3 {
    color: var(--primary-gold);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.Business-col p {
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== COMPANY SECTION ===== */
.Company {
    background: linear-gradient(135deg, var(--pearl-white), #ffffff);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.Company h1 {
    color: var(--deep-navy);
    margin-bottom: var(--spacing-lg);
}

.Company > p {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
    color: var(--soft-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.Company-col {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.Company-col:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.Company-col img {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    display: block;
    transition: var(--transition-smooth);
}

.Company-col img:hover {
    transform: scale(1.05);
}

.Company-col h3 {
    color: var(--deep-navy);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
    font-weight: 600;
}

.Company-col p {
    color: var(--soft-gray);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* ===== TESTIMONIALS SECTION ===== */
.Testimonials {
    background: var(--deep-navy);
    color: white;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.Testimonials h1 {
    color: var(--primary-gold);
    margin-bottom: var(--spacing-sm);
}

.Testimonials > p {
    margin-bottom: var(--spacing-xl);
    opacity: 0.8;
}

.testimonial-col {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-col:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.testimonial-col img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    object-fit: cover;
}

.testimonial-col h3 {
    color: var(--primary-gold);
    margin-bottom: var(--spacing-sm);
}

.testimonial-col p {
    line-height: 1.6;
    opacity: 0.9;
    font-style: italic;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)),
        url("image/Abuja-city-1200x676.jpg") center/cover no-repeat;
    padding: var(--spacing-xxl) 0;
    text-align: center;
    color: white;
}

.cta h1 {
    color: var(--primary-gold);
    margin-bottom: var(--spacing-lg);
}

.cta p {
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== MODERN FOOTER STYLES ===== */
.modern-footer {
    background: linear-gradient(135deg, var(--deep-navy), var(--charcoal));
    color: white;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
}

/* Footer Top Section */
.footer-top {
    padding: var(--spacing-xxl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-section {
    animation: fadeInUp 0.6s ease;
}

.footer-section:nth-child(2) {
    animation-delay: 0.1s;
}
.footer-section:nth-child(3) {
    animation-delay: 0.2s;
}
.footer-section:nth-child(4) {
    animation-delay: 0.3s;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background: var(--gold-gradient);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Titles */
.footer-title {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    padding-left: var(--spacing-sm);
}

.footer-links a::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 0.6rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: var(--spacing-md);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-gold);
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span {
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

.developer-credit {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.developer-credit p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.developer-credit .fa-heart {
    color: #e74c3c;
    animation: heartbeat 2s ease-in-out infinite;
}

.developer-credit .highlight {
    color: var(--primary-gold);
    font-weight: 600;
}

@keyframes heartbeat {
    0%,
    50%,
    100% {
        transform: scale(1);
    }
    25%,
    75% {
        transform: scale(1.1);
    }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: var(--spacing-xl) 0;
    }

    .footer-grid {
        gap: var(--spacing-md);
    }

    .social-links {
        gap: var(--spacing-xs);
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

/* ===== SUB-HEADER STYLES ===== */
.sub-header {
    min-height: 50vh;
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)),
        url("image/luxury-07.jpg") center/cover no-repeat;
}

.sub-header .text-box {
    margin-top: 100px;
}

.sub-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

/* ===== LEGACY COMPATIBILITY STYLES ===== */
/* These styles ensure compatibility with any remaining old class names */

.footer {
    /* Redirect old footer class to modern footer styles */
    background: var(--charcoal);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.footer h4 {
    color: var(--primary-gold);
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 300px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.05);
}

.footer p {
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
}

.icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.icons .fa {
    color: var(--primary-gold);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.icons .fa:hover {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.vision-col {
    /* Legacy vision column styles */
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.vision-col img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.vision-col:hover img {
    transform: scale(1.1);
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.vision-col:hover .layer {
    opacity: 1;
}

.layer h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero button legacy support */
.hero-btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--gold-gradient);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Business icon styling */
.business-icon {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.business-icon i {
    display: block;
    margin: 0 auto var(--spacing-md) auto;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .row {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }

    nav {
        padding: var(--spacing-sm) var(--spacing-md);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        transition: var(--transition-smooth);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: var(--spacing-xl);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: var(--spacing-xl);
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header {
        min-height: 100vh;
    }

    .text-box {
        padding: var(--spacing-lg);
        margin-top: 80px;
    }

    .text-box h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .text-box p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .Business-col,
    .Company-col {
        padding: var(--spacing-lg);
        margin: var(--spacing-sm) 0;
    }

    section {
        padding: var(--spacing-xl) 0;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    :root {
        --spacing-lg: 1rem;
        --spacing-xl: 1.5rem;
        --spacing-xxl: 2rem;
    }

    nav {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    nav img {
        height: 35px;
    }

    .text-box {
        padding: var(--spacing-md);
    }

    .text-box h1 {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: var(--spacing-sm);
    }

    .text-box p {
        font-size: clamp(0.85rem, 4vw, 1rem);
        margin-bottom: var(--spacing-md);
    }

    .Business-col,
    .Company-col {
        padding: var(--spacing-md);
    }

    .Company-col img {
        max-width: 150px;
        height: 120px;
    }

    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.8rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible:hover {
    transform: translateY(-5px);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-slow);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== LIGHTBOX STYLES ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

/* ===== CAR BOX STYLING FOR ICE-CARS.HTML ===== */
.Cars-Container .box {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.Cars-Container .box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.Cars-Container .box a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.Cars-Container .box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.Cars-Container .box:hover img {
    transform: scale(1.05);
}

.Cars-Container .box h2 {
    padding: var(--spacing-lg);
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-navy);
    text-align: center;
    background: linear-gradient(135deg, var(--pearl-white), #f8f9fa);
    border-top: 3px solid var(--primary-gold);
}

.Cars-Container .box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.Cars-Container .box:hover::after {
    opacity: 1;
}

/* Mobile responsiveness for car boxes */
@media (max-width: 768px) {
    .Cars-Container .box img {
        height: 200px;
    }

    .Cars-Container .box h2 {
        font-size: 1.1rem;
        padding: var(--spacing-md);
    }
}

/* ===== BLOG PAGE STYLING ===== */
.blog-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 3rem !important;
    margin-bottom: 3rem !important;
}

.blog-container .box {
    background: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
    transition: 0.3s ease !important;
    border: 2px solid transparent !important;
    position: relative !important;
    display: block !important;
    margin-bottom: 2rem !important;
}

.blog-container .box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    border-color: #d4af37 !important;
}

.blog-container .box .blog-image {
    position: relative !important;
    overflow: hidden !important;
}

.blog-container .box .blog-image img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    transition: 0.3s ease !important;
}

.blog-container .box:hover .blog-image img {
    transform: scale(1.05) !important;
}

.blog-container .box .blog-content {
    padding: 2rem !important;
}

.blog-container .box .blog-date {
    color: #d4af37 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.blog-container .box h3 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #1a1a2e !important;
    margin: 1.5rem 0 !important;
    line-height: 1.4 !important;
}

.blog-container .box p {
    color: #6c757d !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    font-size: 0.95rem !important;
}

.blog-container .box .btn {
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8860b) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.blog-container .box .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

/* Mobile responsiveness for blog boxes */
@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr !important;
    }

    .blog-container .box .blog-image img {
        height: 200px !important;
    }

    .blog-container .box h3 {
        font-size: 1.1rem !important;
    }

    .blog-container .box .blog-content {
        padding: var(--spacing-md) !important;
    }
}

/* ===== ICE CARS HEADER STYLING ===== */
.cars-header {
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.cars-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.cars-header .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.cars-header .logo-accent {
    color: var(--primary-gold);
}

.cars-header .nav-links {
    display: flex;
    align-items: center;
}

.cars-header .nav-links ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-lg);
}

.cars-header .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.cars-header .nav-links a:hover,
.cars-header .nav-links a.active {
    color: var(--primary-gold);
}

.cars-header .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

.cars-header .nav-links a:hover::after,
.cars-header .nav-links a.active::after {
    width: 100%;
}

.cars-header .fa-bars,
.cars-header .fa-times {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cars-header #Search-icon {
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-left: var(--spacing-md);
}

.cars-header #Search-icon:hover {
    color: var(--primary-gold);
}

.cars-header .Search-box {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-sm);
    min-width: 300px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cars-header .Search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cars-header .Search-box input {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    outline: none;
}

.cars-header .Search-box input:focus {
    border-color: var(--primary-gold);
}

/* Hide hamburger menu on desktop */
.cars-header #menu-icon {
    display: none;
}

/* Mobile Navigation for Original Cars Header Structure */
@media (max-width: 768px) {
    .cars-header #menu-icon {
        display: block !important;
        z-index: 1001;
    }

    .cars-header .navbar {
        position: fixed !important;
        background: var(--deep-navy) !important;
        height: 100vh !important;
        width: 250px !important;
        top: 0 !important;
        right: -250px !important;
        flex-direction: column !important;
        gap: 0 !important;
        text-align: left !important;
        z-index: 1000 !important;
        transition: right 0.3s ease !important;
        padding: var(--spacing-xxl) 0 !important;
        box-shadow: var(--shadow-lg) !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .cars-header .navbar.active {
        right: 0 !important;
    }

    .cars-header .navbar li {
        display: block !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .cars-header .navbar a {
        display: block !important;
        padding: var(--spacing-lg) var(--spacing-xl) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        width: 100% !important;
        color: white !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        transition: background-color 0.3s ease !important;
    }

    .cars-header .navbar a:hover {
        background-color: rgba(212, 175, 55, 0.1) !important;
        color: var(--primary-gold) !important;
    }

    .cars-header .navbar a.active {
        color: var(--primary-gold) !important;
        background-color: rgba(212, 175, 55, 0.1) !important;
    }

    .cars-header .Search-box {
        min-width: 250px !important;
        right: var(--spacing-md) !important;
    }

    .cars-header .nav.container {
        padding: var(--spacing-sm) var(--spacing-md) !important;
    }

    .cars-header .Logo {
        font-size: 1.5rem !important;
    }
}

/* ===== ICE LUXURY PAGE STYLES ===== */

/* Enhanced Header Bar */
.luxury-header-bar {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1a1a2e;
    text-align: center;
    padding: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

.luxury-header-bar i {
    margin-right: 0.5rem;
}

/* Simple Navigation with Gold Accents */
.luxury-nav-simple {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.luxury-nav-simple .nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 2px;
    font-family: "Poppins", sans-serif;
}

.luxury-nav-simple .nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.luxury-nav-simple .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    font-family: "Poppins", sans-serif;
}

.luxury-nav-simple .nav-links a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.luxury-nav-simple .nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.luxury-nav-simple .nav-icons a,
.luxury-nav-simple .nav-icons span {
    color: #d4af37;
    font-size: 1.3rem;
    transition: 0.3s ease;
    cursor: pointer;
}

.luxury-nav-simple .nav-icons a:hover,
.luxury-nav-simple .nav-icons span:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

/* Enhanced Hero Section */
.luxury-hero {
    background: linear-gradient(
            135deg,
            rgba(26, 26, 46, 0.9),
            rgba(212, 175, 55, 0.1)
        ),
        url("image/fashion-bg.jpg") center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.luxury-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.luxury-hero .hero-content {
    color: white;
}

.luxury-hero .hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid #d4af37;
    font-family: "Poppins", sans-serif;
}

.luxury-hero .hero-badge i {
    margin-right: 0.5rem;
}

.luxury-hero .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Poppins", sans-serif;
}

.luxury-hero .hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    font-family: "Nunito Sans", sans-serif;
}

.luxury-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.luxury-hero .hero-btn-primary {
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8860b);
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Poppins", sans-serif;
}

.luxury-hero .hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.luxury-hero .hero-btn-secondary {
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Poppins", sans-serif;
}

.luxury-hero .hero-btn-secondary:hover {
    background: #d4af37;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.luxury-hero .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-hero .image-backdrop {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
}

.luxury-hero .hero-image img {
    max-width: 400px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: 0.3s ease;
}

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

/* Floating Elements */
.luxury-hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.luxury-hero .float-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.luxury-hero .float-2 {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
}

.luxury-hero .float-3 {
    position: absolute;
    bottom: 30%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

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

/* Enhanced Collection Section */
.luxury-collection {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, rgba(212, 175, 55, 0.05));
    position: relative;
}

.luxury-collection .collection-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.luxury-collection .collection-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-collection .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 2rem;
}

.luxury-collection .image-frame img {
    max-width: 100%;
    height: auto;
    transition: 0.3s ease;
}

.luxury-collection .collection-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

.luxury-collection .collection-content {
    color: #1a1a2e;
}

.luxury-collection .section-header {
    margin-bottom: 2rem;
}

.luxury-collection .section-header span {
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.luxury-collection .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 1rem 0;
    color: #1a1a2e;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
}

.luxury-collection .divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.luxury-collection .collection-features {
    margin-bottom: 2.5rem;
}

.luxury-collection .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.luxury-collection .feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-collection .feature-icon i {
    color: #d4af37;
    font-size: 1.2rem;
}

.luxury-collection .feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #1a1a2e;
    font-family: "Poppins", sans-serif;
}

.luxury-collection .feature-text p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
}

.luxury-collection .collection-btn {
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8860b);
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Poppins", sans-serif;
}

.luxury-collection .collection-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Enhanced Sale Section */
.luxury-sale {
    padding: 6rem 0;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.luxury-sale .sale-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.luxury-sale .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.luxury-sale .section-header span {
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.luxury-sale .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 1rem 0;
    color: white;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
}

.luxury-sale .section-header .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.luxury-sale .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: "Nunito Sans", sans-serif;
}

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

.luxury-sale .sale-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    position: relative;
}

.luxury-sale .sale-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.luxury-sale .sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    font-family: "Poppins", sans-serif;
}

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

.luxury-sale .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.luxury-sale .sale-card:hover .card-image img {
    transform: scale(1.05);
}

.luxury-sale .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: 0.3s ease;
}

.luxury-sale .sale-card:hover .image-overlay {
    opacity: 1;
}

.luxury-sale .card-content {
    padding: 2rem;
}

.luxury-sale .card-category {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.luxury-sale .card-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0.5rem 0 1rem;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

.luxury-sale .card-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-family: "Nunito Sans", sans-serif;
}

.luxury-sale .sale-btn {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #1a1a2e;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-family: "Poppins", sans-serif;
}

.luxury-sale .sale-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Background Elements */
.luxury-sale .bg-element-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.luxury-sale .bg-element-2 {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(30px);
}

/* Enhanced Products Section */
.luxury-products {
    padding: 6rem 0;
    background: #f8f9fa;
}

.luxury-products .products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.luxury-products .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.luxury-products .section-header span {
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.luxury-products .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 1rem 0;
    color: #1a1a2e;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
}

.luxury-products .section-header .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.luxury-products .section-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: "Nunito Sans", sans-serif;
}

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

.luxury-products .product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.luxury-products .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.luxury-products .product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.luxury-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.luxury-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

.luxury-products .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: 0.3s ease;
}

.luxury-products .product-card:hover .product-overlay {
    opacity: 1;
}

.luxury-products .overlay-btn {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    color: #1a1a2e;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-products .overlay-btn:hover {
    background: #ffd700;
    transform: scale(1.1);
}

.luxury-products .product-content {
    padding: 1.5rem;
}

.luxury-products .product-category {
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: "Poppins", sans-serif;
}

.luxury-products .product-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

.luxury-products .product-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-family: "Nunito Sans", sans-serif;
}

.luxury-products .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.luxury-products .product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4af37;
    font-family: "Poppins", sans-serif;
}

.luxury-products .order-btn {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #1a1a2e;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
    font-family: "Poppins", sans-serif;
}

.luxury-products .order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(212, 175, 55, 0.5);
}

/* Modern Footer for Luxury */
.luxury-footer {
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.luxury-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.luxury-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.luxury-footer .footer-section h3 {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
}

.luxury-footer .footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: "Nunito Sans", sans-serif;
}

.luxury-footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.luxury-footer .footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s ease;
    font-family: "Nunito Sans", sans-serif;
}

.luxury-footer .footer-section ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.luxury-footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.luxury-footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.2rem;
    transition: 0.3s ease;
    text-decoration: none;
}

.luxury-footer .social-links a:hover {
    background: #d4af37;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.luxury-footer .contact-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Nunito Sans", sans-serif;
}

.luxury-footer .contact-info i {
    color: #d4af37;
    font-size: 1.1rem;
    width: 20px;
}

.luxury-footer .footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.luxury-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
}

.luxury-footer .footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.luxury-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s ease;
    font-family: "Nunito Sans", sans-serif;
}

.luxury-footer .footer-links a:hover {
    color: #d4af37;
}

/* Background Elements */
.luxury-footer .bg-element {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

/* ===== RESPONSIVE STYLES FOR LUXURY PAGE ===== */

/* Mobile Navigation Toggle */
.luxury-nav-simple .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Tablet Styles */
@media (max-width: 768px) {
    /* Navigation */
    .luxury-nav-simple .nav-container {
        padding: 0 1rem;
    }

    .luxury-nav-simple .nav-toggle {
        display: block;
    }

    .luxury-nav-simple .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .luxury-nav-simple .nav-links.active {
        display: flex;
    }

    .luxury-nav-simple .nav-icons {
        gap: 1rem;
    }

    /* Hero Section */
    .luxury-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }

    .luxury-hero .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .luxury-hero .hero-buttons {
        justify-content: center;
    }

    .luxury-hero .hero-btn-primary,
    .luxury-hero .hero-btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .luxury-hero .hero-image img {
        max-width: 300px;
    }

    /* Collection Section */
    .luxury-collection .collection-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .luxury-collection .image-frame {
        padding: 1.5rem;
    }

    .luxury-collection .section-header h2 {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    /* Sale Section */
    .luxury-sale .sale-container {
        padding: 0 1rem;
    }

    .luxury-sale .sale-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .luxury-sale .section-header h2 {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    /* Products Section */
    .luxury-products .products-container {
        padding: 0 1rem;
    }

    .luxury-products .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .luxury-products .section-header h2 {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    /* Footer */
    .luxury-footer .footer-container {
        padding: 0 1rem;
    }

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

    .luxury-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .luxury-footer .footer-links {
        justify-content: center;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    /* Header */
    .luxury-header-bar {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    /* Navigation */
    .luxury-nav-simple .nav-logo {
        font-size: 1.5rem;
    }

    .luxury-nav-simple .nav-icons {
        gap: 0.8rem;
    }

    .luxury-nav-simple .nav-icons a,
    .luxury-nav-simple .nav-icons span {
        font-size: 1.1rem;
    }

    /* Hero Section */
    .luxury-hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .luxury-hero .hero-content h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .luxury-hero .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .luxury-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .luxury-hero .hero-btn-primary,
    .luxury-hero .hero-btn-secondary {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .luxury-hero .hero-image img {
        max-width: 250px;
    }

    /* Sections Padding */
    .luxury-collection,
    .luxury-sale,
    .luxury-products {
        padding: 4rem 0;
    }

    /* Collection Section */
    .luxury-collection .collection-container {
        gap: 2rem;
    }

    .luxury-collection .image-frame {
        padding: 1rem;
    }

    .luxury-collection .collection-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* Sale Section */
    .luxury-sale .section-header {
        margin-bottom: 3rem;
    }

    .luxury-sale .card-content {
        padding: 1.5rem;
    }

    /* Products Section */
    .luxury-products .products-grid {
        grid-template-columns: 1fr;
    }

    .luxury-products .product-content {
        padding: 1.2rem;
    }

    .luxury-products .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .luxury-products .order-btn {
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }

    /* Footer */
    .luxury-footer {
        padding: 3rem 0 1.5rem;
    }

    .luxury-footer .social-links {
        justify-content: center;
    }

    .luxury-footer .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .luxury-hero .hero-content h1 {
        font-size: 1.6rem;
    }

    .luxury-products .products-grid {
        grid-template-columns: 1fr;
    }

    .luxury-products .product-card {
        margin: 0 0.5rem;
    }

    .luxury-collection .collection-btn,
    .luxury-sale .sale-btn,
    .luxury-products .order-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
}

/* ===== ICE PROPERTY PAGE STYLES ===== */

/* Enhanced Header Bar for Properties */
.property-header-bar {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1a1a2e;
    text-align: center;
    padding: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

.property-header-bar i {
    margin-right: 0.5rem;
}

/* Property Header Enhancements */
.property-header {
    position: relative;
    z-index: 1000;
}

.property-header-top {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.property-header-top .header-top-link {
    color: rgba(255, 255, 255, 0.9);
    transition: 0.3s ease;
    font-family: "Nunito Sans", sans-serif;
}

.property-header-top .header-top-link:hover {
    color: #d4af37;
}

.property-header-top .header-top-link i {
    color: #d4af37;
    margin-right: 0.5rem;
}

.property-header-top .header-top-social-link {
    color: #d4af37;
    transition: 0.3s ease;
    font-size: 1.2rem;
}

.property-header-top .header-top-social-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

/* Property Navigation Styling */
.property-nav-section {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.property-logo img {
    transition: 0.3s ease;
}

.property-logo:hover img {
    transform: scale(1.05);
}

.property-navbar {
    position: relative;
}

.property-nav-list {
    display: flex;
    gap: 2rem;
}

.property-nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    font-family: "Poppins", sans-serif;
}

.property-nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.property-nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.property-search-btn,
.property-menu-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    transition: 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.property-search-btn:hover,
.property-menu-btn:hover {
    background: #d4af37;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.property-search-btn i,
.property-menu-btn i {
    margin-right: 0.5rem;
}

/* Enhanced Property Hero Section */
.property-hero {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.9),
        rgba(212, 175, 55, 0.1)
    );
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.property-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.property-hero-content {
    color: white;
}

.property-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid #d4af37;
    font-family: "Poppins", sans-serif;
}

.property-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Poppins", sans-serif;
}

.property-hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    font-family: "Nunito Sans", sans-serif;
}

.property-hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.property-btn-primary {
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8860b);
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Poppins", sans-serif;
}

.property-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.property-btn-secondary {
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Poppins", sans-serif;
}

.property-btn-secondary:hover {
    background: #d4af37;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.property-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.property-hero-image .image-backdrop {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
}

.property-hero-image .hero-img {
    max-width: 450px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: 0.3s ease;
}

.property-hero-image .hero-img:hover {
    transform: scale(1.05);
}

/* Floating Elements for Property Hero */
.property-hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.property-hero .float-1 {
    position: absolute;
    top: 15%;
    left: 8%;
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.property-hero .float-2 {
    position: absolute;
    top: 65%;
    right: 12%;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
}

.property-hero .float-3 {
    position: absolute;
    bottom: 25%;
    left: 15%;
    width: 90px;
    height: 90px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

/* Enhanced Property About Section */
.property-about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, rgba(212, 175, 55, 0.05));
    position: relative;
}

.property-about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.property-about-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.property-about-banner .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 2rem;
}

.property-about-banner .image-frame img {
    max-width: 100%;
    height: auto;
    transition: 0.3s ease;
    border-radius: 15px;
}

.property-about-banner .abs-img {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40%;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.property-about-banner .about-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: "Poppins", sans-serif;
}

.property-about-content {
    color: #1a1a2e;
}

.property-about-content .section-header {
    margin-bottom: 2rem;
}

.property-subtitle {
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.property-about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 1rem 0;
    color: #1a1a2e;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
}

.property-about-content .divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.property-about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 2.5rem;
    font-family: "Nunito Sans", sans-serif;
}

.property-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.property-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.property-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.property-feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.property-feature-item .feature-icon i {
    color: #d4af37;
    font-size: 1.5rem;
}

.property-feature-item .feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #1a1a2e;
    font-family: "Poppins", sans-serif;
}

.property-feature-item .feature-text p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
}

.property-callout {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1),
        rgba(255, 215, 0, 0.05)
    );
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
    margin-bottom: 2.5rem;
    position: relative;
}

.property-callout i {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #d4af37;
    font-size: 2rem;
    opacity: 0.3;
}

.property-callout p {
    font-size: 1.1rem;
    font-style: italic;
    color: #1a1a2e;
    margin: 0;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
}

.property-about-btn {
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8860b);
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Poppins", sans-serif;
}

.property-about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* ===== RESPONSIVE STYLES FOR PROPERTY PAGE ===== */

/* Tablet Styles */
@media (max-width: 768px) {
    /* Property Navigation */
    .property-nav-section .container {
        padding: 0 1rem;
    }

    .property-nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .property-nav-list.active {
        display: flex;
    }

    .property-nav-actions {
        gap: 0.8rem;
    }

    /* Property Hero Section */
    .property-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }

    .property-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .property-hero-buttons {
        justify-content: center;
    }

    .property-btn-primary,
    .property-btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .property-hero-image .hero-img {
        max-width: 350px;
    }

    /* Property About Section */
    .property-about .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .property-about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .property-about-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    /* Header */
    .property-header-bar {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    /* Navigation */
    .property-logo img {
        max-height: 40px;
    }

    .property-nav-actions {
        gap: 0.5rem;
    }

    .property-search-btn,
    .property-menu-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    /* Hero Section */
    .property-hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .property-hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .property-hero-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .property-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .property-btn-primary,
    .property-btn-secondary {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .property-hero-image .hero-img {
        max-width: 280px;
    }

    /* About Section */
    .property-about {
        padding: 4rem 0;
    }

    .property-about-banner .image-frame {
        padding: 1.5rem;
    }

    .property-callout {
        padding: 1.5rem;
    }

    .property-about-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .property-hero-title {
        font-size: 1.6rem;
    }

    .property-btn-primary,
    .property-btn-secondary {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
}
