/*
 Theme Name:   Imperial
 Author:       NJ Technos
 Description:  Imperial - Luxury Real Estate Design
 Version:      1.0.0
*/

/* -------------------------------------- */
/* --- GOOGLE FONTS IMPORT --- */
/* -------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');


/* -------------------------------------- */
/* --- BODY / BASE TYPOGRAPHY --- */
/* -------------------------------------- */

   /* ===== BASE STYLES ===== */
        html {scroll-behavior: smooth;scrollbar-width: auto;scrollbar-color: #888 transparent;}
        * {margin: 0;padding: 0;box-sizing: border-box;}
        body {font-family: 'Inter', sans-serif;background: #fffdf2;color: #25211d;overflow-x: hidden;width: 100%;margin: 0;padding: 0;min-height: 100vh;}
        body.ready {height: auto;overflow-y: auto;overflow-x: hidden;}
        ::-webkit-scrollbar {width: 12px;}
        ::-webkit-scrollbar-track {background: transparent;}
        ::-webkit-scrollbar-thumb {background: #888;border-radius: 6px;border: 3px solid transparent;background-clip: padding-box;}
        ::-webkit-scrollbar-thumb:hover {background: #555;border: 3px solid transparent;background-clip: padding-box;}

/* -------------------------------------- */
/* --- HEADINGS (Luxury Feel) --- */
/* -------------------------------------- */
p{
	text-align:justify!important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

ul.wp-block-list {
    margin: 0 30px!important;
}

.wp-block-heading {
    margin: 20px 0!important;
}
p.wp-block-paragraph {
    margin: 10px 0!important;
}
/*****************************************************************************/

.header-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-icon {
    background: #25D366;
}

.whatsapp-icon:hover {
    transform: translateY(-2px);
}

.call-icon {
    background: #f56e0b;
}

.call-icon:hover {
    transform: translateY(-2px);
}

/***************************************************************/
/* ===== CTA SECTION ===== */
.schedule-cta-section {
    position: relative;
    width: 100%;
    padding: 40px 20px;
    overflow: hidden;
    background: radial-gradient(circle at 30% 40%, rgb(201 190 190 / 6%), #00000030 50%), linear-gradient(135deg, #837f7f, #9f9a9a);
}




/* Container */
.schedule-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Content - Flexbox for Left-Right Layout */
.schedule-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* ===== Heading (Left Side) ===== */
.schedule-cta-heading {
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    text-align: left;
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.schedule-cta-heading.animate {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Button (Right Side) ===== */
.schedule-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(30px);
}

.schedule-cta-btn.animate {
    opacity: 1;
    transform: translateX(0);
}

.schedule-cta-btn:hover {
    background: #ffffff;
    transform: translateY(-3px) translateX(0);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.schedule-cta-btn svg {
    transition: transform 0.3s ease;
}

.schedule-cta-btn:hover svg {
    transform: translateX(4px);
}

/* ===== Subtle Floating Shapes (More Elegant) ===== */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.015);
}

/* Smaller shapes */
.shape-1 {
    width: 90px;
    height: 90px;
    top: 15%;
    left: 12%;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    right: 15%;
    animation: float2 24s ease-in-out infinite;
}

.shape-3 {
    width: 70px;
    height: 70px;
    bottom: 12%;
    left: 65%;
    animation: float3 22s ease-in-out infinite;
}

.shape-4 {
    width: 65px;
    height: 65px;
    top: 30%;
    right: 8%;
    animation: float4 26s ease-in-out infinite;
}

/* Smooth floating */
@keyframes float1 {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(25px,-20px); }
}

@keyframes float2 {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(-20px,25px); }
}

@keyframes float3 {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(-25px,-20px); }
}

@keyframes float4 {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(20px,20px); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .schedule-cta-section {
        padding: 30px 20px;
    }
    
    .schedule-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .schedule-cta-heading {
        font-size: 20px;
        text-align: center;
        transform: translateX(0) translateY(-20px);
    }
    
    .schedule-cta-heading.animate {
        transform: translateX(0) translateY(0);
    }
    
    .schedule-cta-btn {
        font-size: 14px;
        padding: 8px 15px;
        transform: translateX(0) translateY(20px);
    }
    
    .schedule-cta-btn.animate {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 480px) {
    .schedule-cta-heading {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .schedule-cta-btn {
        font-size: 13px;
        padding: 7px 12px;
    }
}

