/* ============================================================
   NEW-PAGE-CREATIVITY.CSS 
   Architecture for DELECON® Clean DOM Rebuilds (2026)
   ============================================================ */

/* SECTION 1: MAIN WRAPPERS & HERO 
   Controls the structural containment and the top visual banner */
.dcc-main-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 20px; }
.hero-wrapper { border-radius: 25px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.1); margin-bottom: 40px; }
.hero-wrapper img { width: 100%; height: auto; display: block; object-fit: cover; }

/* SECTION 2: CONTENT HEADERS & TYPOGRAPHY
   Standardizes titles and the "eyebrow" text across all city pages */
.content-eyebrow { color: #c5a059; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.content-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: #111; line-height: 1.1; }
.content-title span { color: #c5a059; }
.content-lead { font-size: 1.2rem; color: #555; line-height: 1.7; border-left: 5px solid #c5a059; padding: 10px 0 10px 25px; margin: 25px 0; }

/* SECTION 3: INTERACTIVE MINI-TOOLS (CALCULATORS)
   Styling for the quick-link buttons for Home/Office estimators */
.tool-grid { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 30px; }
.tool-btn { flex: 1; min-width: 180px; background: #fdfdfd; padding: 20px; border-radius: 12px; border: 1px solid #eee; text-decoration: none; color: #111; transition: 0.3s; display: flex; align-items: center; gap: 12px; }
.tool-btn i { color: #c5a059; font-size: 1.4rem; }
.tool-btn:hover { border-color: #c5a059; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

/* SECTION 4: SERVICE CARDS (GRID LAYOUT)
   Controls the side-by-side display of Residential vs Commercial */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 60px 0; }
.feature-box { padding: 40px; border-radius: 20px; background: #fff; border: 1px solid #f0f0f0; transition: 0.4s; }
.feature-box.dark { background: #111; color: #fff; border: none; }
.feature-box h2 { margin-bottom: 15px; }

/* SECTION 5: THE MAP & DATA TABLES
   Protects the DOM from complex iframe/table styling */
.map-visual { border-radius: 20px; overflow: hidden; border: 1px solid #ddd; height: 450px; margin: 40px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.data-table-wrap { overflow-x: auto; margin-top: 30px; }
.delecon-table { width: 100%; border-collapse: collapse; background: #fff; }
.delecon-table th { background: #f9f9f9; padding: 18px; border-bottom: 2px solid #c5a059; text-align: left; }
.delecon-table td { padding: 18px; border-bottom: 1px solid #eee; }

/* SECTION 6: FOOTER CTAs & LINKS 
   Final call to action and related links grid */
.cta-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }
.cta-btn-outline { padding: 12px 25px; border: 1px solid #c5a059; border-radius: 8px; text-decoration: none; color: #111; font-weight: 600; transition: 0.3s; }
.cta-btn-outline:hover { background: #c5a059; color: #fff; }
/* SECTION 7: MARKET REALITY & TRUST SECTION
   Focuses on the BOQ Bluff and Quality vs. Cost warning */
.market-warning-box { 
    background: #fffcf5; 
    border: 2px solid #f2e7d5; 
    border-radius: 25px; 
    padding: 50px; 
    margin: 60px 0; 
    position: relative;
    overflow: hidden;
}
.market-warning-box::before {
    content: "\f071"; /* FontAwesome Warning Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 12rem;
    color: rgba(197, 160, 89, 0.05);
}
.warning-header { color: #8a6d3b; font-weight: 900; font-size: 1.8rem; margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
.warning-header i { color: #d9534f; }

.market-text { font-size: 1.15rem; color: #444; line-height: 1.8; margin-bottom: 30px; }
.market-text strong { color: #111; font-weight: 700; }

/* The 3-Link Grid */
.trust-link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.trust-btn { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px; 
    padding: 20px; 
    background: #fff; 
    border: 1px solid #ddd; 
    border-radius: 12px; 
    text-decoration: none; 
    color: #111; 
    font-weight: 700; 
    transition: 0.3s all ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.trust-btn:hover { 
    background: #111; 
    color: #fff; 
    border-color: #111; 
    transform: translateY(-5px); 
}
.trust-btn i { color: #c5a059; font-size: 1.2rem; }

@media (max-width: 768px) {
    .market-warning-box { padding: 30px 20px; }
    .warning-header { font-size: 1.4rem; }
}
/* SECTION 8: AI DISCOVERY HUB (GEMINI STYLE) */
.ai-search-container {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ai-input-wrapper {
    position: relative;
    max-width: 800px;
    margin: 30px auto;
}

.ai-input-wrapper input {
    width: 100%;
    padding: 22px 30px;
    padding-right: 120px;
    border-radius: 50px;
    border: 2px solid #c5a059;
    font-size: 1.1rem;
    outline: none;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1);
    transition: 0.3s;
}

.ai-input-wrapper input:focus {
    box-shadow: 0 5px 25px rgba(197, 160, 89, 0.2);
    border-color: #111;
}

.ai-submit-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.ai-submit-btn:hover { background: #c5a059; color: #000; }

/* Prompt Chips - Suggested Searches */
.prompt-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.chip {
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    color: #666;
}

.chip:hover { border-color: #c5a059; color: #111; background: #fffcf5; }

/* Result Box */
#ai-result-area {
    margin-top: 30px;
    padding: 0 20px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    min-height: 20px;
}
/* SECTION 9: VIDEO GALLERY (DELECON HEIGHTS)
   Optimized for Goregaon Western Suburbs Showcase */
.dcc-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.yt-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    height: 220px; /* Fixed height for clean alignment */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.yt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
}

.yt-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.yt-play::after {
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

.yt-card:hover .yt-play {
    background: #111;
    scale: 1.1;
}

/* Local Keywords Wrapper */
.local-context {
    background: #fdfaf5;
    padding: 20px;
    border-radius: 15px;
    border: 1px dashed #c5a059;
    margin-top: 25px;
}
/* SECTION 1: new page coloumn and headings */
    .process-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin: 40px 0; }
    .process-card { background: #f9f9f9; padding: 30px; border-left: 5px solid #b19261; border-radius: 8px; }
    .process-card h3 { color: #222; margin-bottom: 15px; font-size: 1.4rem; }
    .luxury-badge { background: #b19261; color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
    .accuracy-box { background: #1a1a1a; color: #fff; padding: 40px; border-radius: 15px; text-align: center; margin: 50px 0; }
    .accuracy-number { font-size: 3rem; font-weight: 900; color: #b19261; display: block; }