@import url("branding.css");

/* =========================================
   1. GLOBAL HERO SECTION
========================================= */
.page-hero {
    position: relative;
    width: 100%;
    height: 45vh;
    min-height: 420px;
    background-color: var(--luxury-black);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 70% center; 
    background-repeat: no-repeat;
    z-index: 1;
    animation: heroZoom 12s ease-out forwards;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(9, 17, 29, 0.98) 0%,
        rgba(9, 17, 29, 0.8) 35%,
        rgba(9, 17, 29, 0.2) 65%,
        transparent 100%
    );
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    color: #ffffff;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4);
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 520px;
    border-left: 3px solid var(--gold-primary);
    padding-left: 20px;
    font-weight: 300;
}

@keyframes heroZoom {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.1); }
}

/* =========================================
   2. VALUATION GRID SECTION
========================================= */
.srv-details-section {
    padding: 80px 0;
    background: #ffffff;
}

.srv-valuation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.srv-media-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 480px; 
    margin: 0 auto;
    aspect-ratio: 4 / 3; 
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.srv-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Badge positioned Top-Right */
.srv-floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    border: 1px solid rgba(130, 37, 19, 0.1);
}

.srv-floating-badge i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.srv-floating-badge span {
    font-weight: 700;
    font-size: 12px;
    color: var(--luxury-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.srv-media-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 40%);
    pointer-events: none;
}

.srv-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 10px;
    color: var(--luxury-black);
    line-height: 1.2;
}

.srv-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.srv-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.srv-icon-box {
    color: var(--gold-primary);
    font-size: 1.3rem;
}

/* =========================================
   3. PROFESSIONAL DATA TABLE
========================================= */
.pro-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 5px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.pro-table thead {
    background: #822513; /* Brand Brown */
    color: white;
}

.pro-table th {
    padding: 20px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
}

.pro-table td {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    vertical-align: middle;
}

.pro-table tbody tr:hover {
    background: #fffcf8;
}

.asset-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--luxury-black);
}

.status {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.gold { background: var(--gold-primary); color: white; }
.dark { background: #222; color: white; }
.soft { background: #f5f5f5; color: #666; }

.page-cta-section{

padding:80px 0;
background: var(--white);

}

.page-cta-box{

display:flex;

justify-content:space-between;

align-items:center;

background:#3a2a22;

padding:45px;

border-radius:14px;

color:white;

}

.cta-btn{

background:var(--gold-primary);

color:white;

padding:14px 30px;

border-radius:8px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.cta-btn:hover{

background:#b89112;

}

@media(max-width:768px){

.cta-box{

flex-direction:column;

text-align:center;

gap:20px;

}

}
/* =========================================
   4. FULL MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 992px) {
    .srv-valuation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: auto;
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .page-hero p {
        border-left: none;
        padding-left: 0;
        margin: 0 auto;
    }

    .srv-media-wrapper {
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .pro-table, .pro-table thead, .pro-table tbody, .pro-table th, .pro-table td, .pro-table tr { 
        display: block; 
    }

    .pro-table thead { display: none; }

    .pro-table tbody tr {
        background: white;
        margin-bottom: 20px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }

    .pro-table td {
        text-align: right;
        padding: 15px 20px;
        border-bottom: 1px solid #f8f8f8;
    }

    .pro-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 11px;
        color: #888;
    }
}

/* Navigation Badge Pro Positioning */
.nav-badge-container {
    position: relative; /* Essential for the absolute positioning of the child */
    padding-right: 15px; /* Adds space so the badge doesn't overlap the next menu item */
}

.nav-coming-soon {
    position: absolute;
    top: -5px;          /* Adjusts vertical height */
    right: -2px;        /* Pulls it to the top-right corner */
    background: #822513; /* Sri Ganesh Brand Red/Gold */
    color: #ffffff;
    font-size: 8px;     /* Kept tiny for a professional look */
    font-weight: 800;
    text-transform: uppercase;
    padding: 1px 5px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    pointer-events: none; /* Ensures the badge doesn't interfere with clicking the link */
}

/* Subtle fade-in for the badge when the page loads */
.nav-coming-soon {
    animation: fadeInBadge 0.8s ease-out forwards;
}

@keyframes fadeInBadge {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dashboard Coming Soon UI */
.dashboard-preview {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(130, 37, 19, 0.1);
}

.db-header {
    background: #f1f1f1;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.db-dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; }
.db-title { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-left: 10px; font-weight: 700; }

.db-body { padding: 40px; background: linear-gradient(135deg, #fff 0%, #fcfcfc 100%); }

.db-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 40px; }

.db-card { 
    background: #fff; 
    padding: 25px; 
    border-radius: 8px; 
    border: 1px solid #eee;
    text-align: left;
}

.db-card-label { font-size: 12px; font-weight: 700; color: #555; margin-bottom: 15px; }

/* Shimmer Effect */
.db-rate-shimmer {
    height: 35px;
    width: 100px;
    background: #f0f0f0;
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 15px;
}

.db-status { font-size: 12px; color: var(--gold-primary); font-weight: 600; }

.db-features { 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    border-top: 1px solid #eee; 
    padding-top: 30px; 
}

.db-feat-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #444; }

.spin { display: inline-block; animation: spin 2s linear infinite; }

@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes spin { 100% { transform: rotate(360deg); } }

@media (max-width: 768px) {
    .db-grid { grid-template-columns: 1fr; }
    .db-features { flex-direction: column; gap: 15px; align-items: flex-start; }
}

/* Contact Section Core */
.contact-terminal-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.contact-terminal-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Info Panel Styling */
.contact-detail-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.contact-detail-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: #fdf2f0;
    color: #822513;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.detail-content strong {
    display: block;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-content span {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

/* Floating Branded Card */
.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    position: relative;
    border: 1px solid rgba(130, 37, 19, 0.05);
}

/* Form Controls */
.pro-form .form-group label {
    font-size: 11px;
    font-weight: 800;
    color: #822513;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.pro-form .form-control {
    width: 100%;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.pro-form .form-control:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* The Gold Button */
.btn-branded-gold {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    border: none;
    border-radius: 50px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #000;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    margin-top: 10px;
    transition: 0.3s;
}

.btn-branded-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.form-trust-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    opacity: 0.5;
    font-size: 10px;
    font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .contact-terminal-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-form-card { padding: 30px; }
}