/* ==========================================================================
   Azaghar Decor - Ultra Modern Animated CSS
   ========================================================================== */

/* --- Variables --- */
:root {
    --primary: #d4af37;       /* Rich Gold */
    --primary-light: #f1da8b;
    --primary-dark: #b08d27;
    --secondary: #0f172a;     /* Slate */
    
    --bg-main: transparent;   
    --bg-alt: rgba(255, 255, 255, 0.4);
    
    --text-dark: #1e293b;
    --text-muted: #64748b;
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --shadow-hover: 0 15px 35px 0 rgba(212, 175, 55, 0.15);
}

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #faf9f6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 8rem 0; position: relative; z-index: 1; }
.text-center { text-align: center; }

/* --- Animated Mesh Background --- */
.mesh-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0; background-color: #fdfbf7; overflow: hidden;
    pointer-events: none;
}
.mesh-blob {
    position: absolute; border-radius: 50%; filter: blur(90px);
    opacity: 0.5; animation: float 20s infinite alternate ease-in-out;
    mix-blend-mode: multiply;
}
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: #f3e5ab; animation-delay: 0s; }
.blob-2 { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: #fae1c3; animation-delay: -5s; }
.blob-3 { top: 30%; left: 30%; width: 40vw; height: 40vw; background: #ffffff; filter: blur(50px); animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -60px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Glass Panels */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-glass);
}
.glass-panel-heavy {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-glass);
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1; transform: translateY(0) scale(1);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Continuous floating animations */
.floating-anim { animation: smoothFloat 6s ease-in-out infinite; }
.floating-anim-alt { animation: smoothFloat 8s ease-in-out infinite reverse; }

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

/* --- Typography --- */
.section-subtitle {
    display: inline-block; font-family: var(--font-sans); font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 4px; color: var(--primary);
    margin-bottom: 1rem; font-weight: 700;
}
.section-header { margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* --- Buttons (Interactive & Magnetic) --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 2rem; border-radius: 50px; font-weight: 500;
    cursor: pointer; transition: var(--transition);
    position: relative; overflow: hidden; z-index: 1;
}
.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.7s ease; z-index: -1;
}
.btn:hover::before { left: 100%; }

.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); border: none; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-outline { background-color: transparent; border: 1px solid var(--secondary); color: var(--secondary); }
.btn-outline:hover { background-color: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-small { padding: 0.6rem 1.5rem; font-size: 0.9rem; }
.btn-large { padding: 1.2rem 2.5rem; font-size: 1.1rem; }

/* --- Navbar --- */
.floating-nav {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1200px;
    background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 100px; padding: 0.8rem 2rem;
    z-index: 1000; box-shadow: var(--shadow-glass); transition: var(--transition);
}
.floating-nav.scrolled { width: 100%; top: 0; border-radius: 0; padding: 1rem 2rem; background: rgba(255, 255, 255, 0.9); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--secondary); letter-spacing: 2px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-item { color: var(--secondary); font-weight: 500; font-size: 0.95rem; position: relative; }
.nav-item::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--primary); transition: width 0.3s ease; }
.nav-item:hover::after { width: 100%; }
.hamburger { display: none; color: var(--secondary); font-size: 1.5rem; cursor: pointer; }

/* --- Hero Section --- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; }
.hero-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.badge { display: inline-block; padding: 0.5rem 1.2rem; border-radius: 50px; background: rgba(212, 175, 55, 0.1); color: var(--primary-dark); font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid rgba(212, 175, 55, 0.2); }
.hero .title { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 1.5rem; line-height: 1.1; }
.hero .description { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; }
.hero-image-area { position: relative; perspective: 1000px; }
.hero-image-wrapper { position: relative; border-radius: 24px; padding-bottom: 120%; transform-style: preserve-3d; transition: transform 0.1s; }
.hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; border-radius: 24px; box-shadow: var(--shadow-lg); transition: transform 0.2s ease-out; }
.floating-card { position: absolute; bottom: -30px; left: -30px; padding: 1.5rem; border-radius: 20px; display: flex; align-items: center; gap: 1rem; z-index: 2; }
.card-icon { width: 45px; height: 45px; border-radius: 50%; background: #fbbc04; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.floating-card h4 { margin-bottom: 0; font-size: 1.2rem; font-family: var(--font-sans); }
.floating-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* --- Services --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.service-card { padding: 3rem 2.5rem; border-radius: 24px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.4); position: relative; overflow: hidden; z-index: 1; }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0)); z-index: -1; }
.service-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-hover); border-color: rgba(212, 175, 55, 0.3); }
.service-icon { width: 70px; height: 70px; border-radius: 20px; background: rgba(212, 175, 55, 0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1.8rem; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: rotate(10deg); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); }

/* --- About --- */
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.image-grid { position: relative; height: 550px; perspective: 1000px; }
.img-1 { width: 85%; height: 90%; border-radius: 24px; background-size: cover; background-position: center; box-shadow: var(--shadow-lg); position: absolute; top: 0; left: 0; transition: transform 0.5s; }
.image-grid:hover .img-1 { transform: scale(1.03) rotateY(-5deg); }
.experience-box { position: absolute; bottom: 0; right: 0; width: 55%; padding: 2.5rem; border-radius: 24px; background: var(--secondary); color: #fff; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1); z-index: 2; }
.experience-box h3 { color: #fff; font-size: 2.2rem; margin-bottom: 0.5rem; font-family: var(--font-serif); }
.experience-box p { color: rgba(255,255,255,0.8); }
.about-content h2 { font-size: clamp(2.5rem, 4vw, 3.2rem); margin-bottom: 1.5rem; }
.lead-text { font-size: 1.25rem; font-weight: 500; color: var(--secondary); margin-bottom: 1.5rem; }
.features-list { margin-top: 2.5rem; }
.features-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; font-weight: 500; color: var(--text-dark); transition: transform 0.3s; }
.features-list li:hover { transform: translateX(10px); color: var(--primary); }
.features-list i { color: var(--primary); font-size: 1.4rem; }

/* --- Google Reviews --- */
.google-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.google-review-card { padding: 2rem; border-radius: 20px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.5); position: relative; overflow: hidden; }
.google-review-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-8px); border-color: rgba(212, 175, 55, 0.2); }
.google-review-header { display: flex; align-items: center; margin-bottom: 1.2rem; position: relative; }
.reviewer-avatar { width: 45px; height: 45px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 500; margin-right: 1rem; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.reviewer-name { font-family: var(--font-sans); font-size: 1.05rem; margin: 0; color: #202124; font-weight: 600; line-height: 1.2; }
.reviewer-meta { font-size: 0.85rem; color: #70757a; }
.google-icon { color: #4285F4; font-size: 1.3rem; position: absolute; top: 0; right: 0; }
.google-review-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.google-review-rating .stars { color: #fbbc04; font-size: 1rem; }
.review-time { font-size: 0.85rem; color: #70757a; }
.google-review-text { font-size: 1rem; color: #3c4043; line-height: 1.6; }

/* --- Contact --- */
.contact-box { border-radius: 30px; padding: 5rem 4rem; position: relative; overflow: hidden; }
.contact-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark)); }
.contact-header { margin-bottom: 4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; margin-bottom: 4rem; }
.info-item { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2.5rem; transition: transform 0.3s; }
.hover-slide:hover { transform: translateX(10px); }
.info-icon { width: 55px; height: 55px; background: rgba(212, 175, 55, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: var(--transition); }
.hover-slide:hover .info-icon { background: var(--primary); color: #fff; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
.info-item h4 { margin-bottom: 0.4rem; font-family: var(--font-sans); font-size: 1.2rem; }
.info-item p { color: var(--text-muted); font-size: 1.05rem; }
.map-container { height: 100%; min-height: 350px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.3s; }
.map-container:hover { transform: scale(1.02); }
.social-banner { text-align: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 3rem; }
.social-banner h4 { margin-bottom: 1.5rem; font-family: var(--font-serif); font-size: 1.5rem; }
.social-icons { display: flex; justify-content: center; gap: 1.5rem; }
.social-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.5); color: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: var(--transition); border: 1px solid rgba(255,255,255,0.8); }
.social-icon:hover { background: var(--primary); color: #fff; transform: translateY(-5px) scale(1.1); box-shadow: var(--shadow-hover); border-color: var(--primary); }

/* --- Footer --- */
.footer { background: var(--secondary); color: rgba(255, 255, 255, 0.7); padding: 3rem 0; text-align: center; position: relative; z-index: 1; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { margin: 0; font-size: 0.95rem; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-content, .about-container, .contact-grid { grid-template-columns: 1fr; }
    .hero { text-align: center; padding-top: 150px; }
    .hero .title { font-size: 3.5rem; }
    .hero-buttons { justify-content: center; }
    .hero-image-wrapper { padding-bottom: 80%; margin-top: 3rem; }
    .floating-card { left: 50%; transform: translateX(-50%); bottom: -20px; }
    .contact-box { padding: 3rem 2rem; }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(255,255,255,0.95); backdrop-filter: blur(15px); flex-direction: column; justify-content: center; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
    .nav-links.active { right: 0; }
    .hamburger { display: block; z-index: 1001; }
    .hero .title { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; }
    .footer-bottom { flex-direction: column; justify-content: center; }
}
