/* ==========================================================================
   Golden Touch Solutions LLC - UI Components & Features
   ========================================================================== */

/* 1. Header & Navigation */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 19, 43, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.header-nav.scrolled {
    background: rgba(11, 19, 43, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.logo-brand:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

.official-emblem-card {
    text-align: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(16, 27, 56, 0.9) 70%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.official-emblem-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-gold);
    transition: transform var(--transition-normal);
}

.official-emblem-img:hover {
    transform: scale(1.03);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: 0.03em;
}

.logo-tagline {
    font-size: 0.72rem;
    color: var(--gold-primary);
    letter-spacing: 0.08em;
    font-weight: 500;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.65rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding-left: 1.5rem;
}

/* Language Toggle Button */
.lang-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.03);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.6rem;
    cursor: pointer;
}

/* 2. Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.92) 0%, rgba(16, 27, 56, 0.82) 60%, rgba(11, 19, 43, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-family: var(--font-heading);
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    color: #CBD5E1;
    margin-bottom: 1rem;
}

.hero-goal {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold-primary);
}

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

/* 3. About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    position: relative;
}

.about-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 7rem;
    color: rgba(212, 175, 55, 0.12);
    line-height: 1;
}

.about-quote-box {
    margin-top: 2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold-primary);
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-pill {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast);
}

.feature-pill:hover {
    transform: translateX(6px);
    border-color: var(--border-gold);
}

.feature-icon {
    font-size: 1.8rem;
}

/* 4. Our Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.service-img-wrapper {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon-badge {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.service-card-title {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.service-card-desc {
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
}

.service-list {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-list li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: 700;
}

.service-disclaimer {
    margin-top: auto;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--gold-light);
    border-left: 3px solid var(--gold-primary);
}

/* 5. Property Solutions Section */
.property-banner {
    background: linear-gradient(135deg, #131E3A 0%, #1A2B52 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.property-banner h2 {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
}

.property-subtagline {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.property-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.property-feature-box {
    background: rgba(11, 19, 43, 0.6);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast);
}

.property-feature-box:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
}

.property-feature-box h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* 6. How It Works Section */
.hiw-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 1100px) {
    .hiw-steps-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.hiw-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.4rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-fast);
}

.hiw-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.hiw-step-number {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    /* Luxury 3D Gold Coin Metallic Medallion Finish */
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22) 0%, transparent 60%),
        radial-gradient(circle at 38% 32%, #FFF8CA 0%, #ECC55D 30%, #AE7C0E 68%, #523600 100%);
    color: #FFF3A8;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem auto;
    position: relative;
    /* Polished outer gold rim, 3D bevel and glow */
    border: 2px solid #FFED9E;
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.6),
        0 0 16px rgba(212, 175, 55, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.85),
        inset 0 -4px 6px rgba(50, 30, 0, 0.85),
        0 0 0 2px rgba(168, 120, 14, 0.85);
    /* 3D embossed typography with top highlight and bottom shadow */
    text-shadow: 
        0 1px 0 #FFFDE8,
        0 -1px 0 #7A5306,
        1px 2px 3px rgba(35, 18, 0, 0.95);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

/* Inner concentric groove of the coin */
.hiw-step-number::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 245, 175, 0.45);
    box-shadow: inset 0 1px 3px rgba(30, 15, 0, 0.4);
    pointer-events: none;
}

.hiw-card:hover .hiw-step-number {
    transform: scale(1.1);
    box-shadow: 
        0 8px 22px rgba(0, 0, 0, 0.7),
        0 0 24px rgba(212, 175, 55, 0.6),
        inset 0 2px 5px rgba(255, 255, 255, 0.95),
        inset 0 -4px 7px rgba(50, 30, 0, 0.9),
        0 0 0 2px rgba(212, 175, 55, 1);
}

.hiw-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.hiw-card p {
    font-size: 0.88rem;
}

/* 7. Request a Quote Form Section */
.quote-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.quote-disclaimer-alert {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.quote-disclaimer-alert p {
    font-size: 0.92rem;
    color: var(--gold-light);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(11, 19, 43, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Number Counter Component */
.counter-control {
    display: flex;
    align-items: center;
    background: rgba(11, 19, 43, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
}

.counter-btn {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: var(--gold-primary);
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.counter-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.counter-value {
    flex-grow: 1;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
}

/* Drag and drop upload */
.dropzone-area {
    border: 2px dashed var(--border-gold);
    background: rgba(11, 19, 43, 0.5);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dropzone-area:hover, .dropzone-area.dragover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-hover);
}

.dropzone-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.file-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.preview-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border-gold);
}

/* 8. Modal Summary Confirmation */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-navy);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.modal-header h3 {
    font-size: 2rem;
    color: var(--gold-primary);
}

.receipt-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.receipt-table td {
    padding: 0.7rem 0;
    font-size: 0.92rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.receipt-table td:first-child {
    color: var(--text-muted);
    width: 45%;
    font-weight: 500;
}

.receipt-table td:last-child {
    color: var(--text-light);
    font-weight: 600;
    text-align: right;
}

/* 9. Contact Us Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-card-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.contact-card h4 {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Map Mockup */
.map-mockup {
    height: 220px;
    background: linear-gradient(135deg, #162447 0%, #1F305E 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    gap: 0.6rem;
}

/* 10. Client Onboarding Checklist */
.checklist-wrapper {
    background: linear-gradient(135deg, rgba(22, 36, 71, 0.8) 0%, rgba(16, 27, 56, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.checklist-card {
    background: rgba(11, 19, 43, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: transform var(--transition-fast);
}

.checklist-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
}

.checklist-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* Luxury 3D Gold Coin Finish */
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22) 0%, transparent 60%),
        radial-gradient(circle at 38% 32%, #FFF8CA 0%, #ECC55D 30%, #AE7C0E 68%, #523600 100%);
    color: #FFF3A8;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    border: 1.5px solid #FFED9E;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 0 14px rgba(212, 175, 55, 0.25),
        inset 0 2px 3px rgba(255, 255, 255, 0.8),
        inset 0 -3px 5px rgba(50, 30, 0, 0.8),
        0 0 0 1.5px rgba(168, 120, 14, 0.8);
    text-shadow: 
        0 1px 0 #FFFDE8,
        0 -1px 0 #7A5306,
        1px 2px 3px rgba(35, 18, 0, 0.9);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.checklist-icon::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    border: 1px solid rgba(255, 245, 175, 0.45);
    box-shadow: inset 0 1px 2px rgba(30, 15, 0, 0.35);
    pointer-events: none;
}

.checklist-card:hover .checklist-icon {
    transform: scale(1.08);
    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.65),
        0 0 20px rgba(212, 175, 55, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -3px 5px rgba(50, 30, 0, 0.85),
        0 0 0 1.5px rgba(212, 175, 55, 1);
}

/* Footer */
.footer {
    background: #070D1E;
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem 0;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    background: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-gold);
    padding: 0.8rem 1rem;
}

.mobile-sticky-bar .btn {
    flex: 1;
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: var(--bg-navy);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2.5rem;
        gap: 1.5rem;
        transition: left var(--transition-normal);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .mobile-sticky-bar {
        display: flex;
        gap: 0.8rem;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 600px) {
    .section-header h2 {
        font-size: 2.1rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .quote-wrapper, .checklist-wrapper, .about-card {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Under Construction / Coming Soon Page Specific Styles
   ========================================================================== */

.uc-page-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at 50% 15%, rgba(26, 42, 86, 0.7) 0%, rgba(11, 19, 43, 0.98) 75%), #0B132B;
    position: relative;
    overflow-x: hidden;
}

/* Ambient Background Glow Effect */
.uc-ambient-glow {
    position: fixed;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 550px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.uc-header {
    position: relative;
    z-index: 10;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-gold);
    background: rgba(11, 19, 43, 0.75);
    backdrop-filter: blur(14px);
}

.uc-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 1rem;
    position: relative;
    z-index: 1;
}

.uc-card {
    background: rgba(16, 27, 56, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(20px);
    max-width: 1050px;
    width: 100%;
    text-align: center;
    position: relative;
}

/* Status Pill with Pulsing Live Light */
.uc-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius-full);
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.uc-pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulseDot 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.8);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.uc-hero-emblem {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
    margin: 0 auto 1.5rem auto;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.uc-hero-emblem:hover {
    transform: scale(1.05) rotate(2deg);
}

.uc-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.uc-subtitle {
    font-size: 1.15rem;
    color: #CBD5E1;
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

/* Quick Action Buttons Row */
.uc-actions-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

/* Services Grid Preview */
.uc-services-section {
    margin-top: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
}

.uc-services-header {
    text-align: center;
    margin-bottom: 2rem;
}

.uc-services-header h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.uc-services-header p {
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
}

.uc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.uc-service-card {
    background: rgba(11, 19, 43, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all var(--transition-normal);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.uc-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(22, 36, 71, 0.7);
}

.uc-service-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.uc-service-card h4 {
    font-size: 1.25rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.uc-service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Inquiry Box / Quick Contact */
.uc-contact-box {
    background: linear-gradient(145deg, rgba(22, 36, 71, 0.85) 0%, rgba(11, 19, 43, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    margin-top: 2rem;
    text-align: left;
}

.uc-contact-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.uc-contact-info-side h4 {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.uc-contact-info-side p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.uc-direct-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    background: rgba(11, 19, 43, 0.7);
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.uc-direct-item-icon {
    font-size: 1.3rem;
    color: var(--gold-primary);
}

.uc-direct-item-content {
    display: flex;
    flex-direction: column;
}

.uc-direct-item-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.uc-direct-item-val {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.uc-direct-item-val a {
    color: var(--gold-primary);
    text-decoration: none;
}

.uc-direct-item-val a:hover {
    text-decoration: underline;
}

/* Quick Inquiry Form */
.uc-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.uc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.uc-input, .uc-select, .uc-textarea {
    width: 100%;
    background: rgba(11, 19, 43, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.uc-input:focus, .uc-select:focus, .uc-textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    background: #0d1633;
}

.uc-select option {
    background: var(--bg-navy);
    color: var(--text-light);
}

.uc-footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(11, 19, 43, 0.9);
    padding: 2rem 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
}

.uc-preview-dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--gold-primary);
    opacity: 0.75;
    margin-top: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    transition: opacity var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
}

.uc-preview-dev-badge:hover {
    opacity: 1;
    border-color: var(--gold-primary);
    color: var(--gold-hover);
    transform: translateY(-1px);
}

@media (max-width: 860px) {
    .uc-card {
        padding: 2.5rem 1.5rem;
    }
    .uc-title {
        font-size: 2.3rem;
    }
    .uc-contact-box-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .uc-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .uc-title {
        font-size: 1.85rem;
    }
    .uc-actions-row {
        flex-direction: column;
        width: 100%;
    }
    .uc-actions-row .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Gold Coin Medallion Icons (Brand Visual Identity)
   ========================================================================== */
.gold-coin-icon {
    display: inline-block;
    width: 52px;
    height: 52px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    border: 1.5px solid rgba(255, 215, 0, 0.45);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 16px rgba(212, 175, 55, 0.25);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gold-coin-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.6);
}

/* Feature Pills (About Us) */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon .gold-coin-icon {
    width: 48px;
    height: 48px;
}

/* Service Cards Badge */
.service-icon-badge {
    margin-bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
}

.service-icon-badge .gold-coin-icon {
    width: 58px;
    height: 58px;
}

/* Property Solutions Features Grid */
.property-feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.property-feature-box .gold-coin-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.75rem;
}

/* Contact Cards */
.contact-card-icon {
    margin-bottom: 0.4rem;
}

.contact-card-icon .gold-coin-icon {
    width: 52px;
    height: 52px;
}

/* Under Construction Service Icons */
.uc-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.uc-service-icon .gold-coin-icon {
    width: 58px;
    height: 58px;
}

.uc-direct-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uc-direct-item-icon .gold-coin-icon {
    width: 38px;
    height: 38px;
}

.btn-coin-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: -4px;
    margin-right: 0.4rem;
    border: 1px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

