/* Premium UI for Portfolio Page */
:root {
    --primary-gold: #d4af37;
    --secondary-gold: #b8860b;
    --dark-bg: #1a1a1a;
    --light-glass: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.portfolio-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.portfolio-hero .container {
    position: relative;
    z-index: 1;
}

.portfolio-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Glassmorphism Project Cards */
.project-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.project-img-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

.project-card:hover .project-img-container img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .btn {
    background: #fff;
    color: var(--secondary-gold);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay .btn {
    transform: translateY(0);
}

.project-info {
    padding: 25px;
    text-align: center;
}

.project-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.project-btn-details {
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-btn-details:hover {
    color: var(--secondary-gold);
    text-decoration: none;
}

/* Trust Section */
.trust-banner {
    background: var(--dark-bg);
    color: #fff;
    padding: 80px 0;
}

.trust-item {
    text-align: center;
}

.trust-item h2 {
    color: var(--primary-gold);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.trust-item p {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* CTA Section */
.portfolio-cta {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.portfolio-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.portfolio-cta .btn-white {
    background: #fff;
    color: var(--secondary-gold);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.portfolio-cta .btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }
    .portfolio-cta h2 {
        font-size: 2rem;
    }
}

/* Trust Enhancement & Conversion UI Styles */

/* Google Ratings Badge Widget */
.google-badge-container {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50px;
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.google-badge-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}
.google-logo-svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}
.google-badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
}
.google-badge-stars {
    color: #ffc107;
    margin-left: 10px;
    letter-spacing: 2px;
}
.google-badge-verified {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Pillars Grid Layout */
.trust-pillars-section {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-pillar-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.trust-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.trust-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.trust-pillar-card:hover::before {
    opacity: 1;
}
.trust-pillar-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.08);
    color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}
.trust-pillar-card:hover .trust-pillar-icon-box {
    background: #d4af37;
    color: #fff;
    transform: rotateY(180deg);
}
.trust-pillar-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.trust-pillar-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Material Transparency Table Styling */
.transparency-container {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-top: 30px;
}
.transparency-table {
    width: 100%;
    border-collapse: collapse;
}
.transparency-table th {
    background: #1a1a1a;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 15px 20px;
    border: none;
}
.transparency-table th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.transparency-table th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.transparency-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
    color: #333;
}
.transparency-table tr:last-child td {
    border-bottom: none;
}
.transparency-table tr:hover td {
    background: rgba(212, 175, 55, 0.03);
}
.brand-badge {
    background: #fff8e1;
    color: #ff8f00;
    border: 1px solid #ffe082;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
}

/* Real Project Showcase / Gallery Styling */
.real-gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}
.real-gallery-filter .btn-filter {
    background: #fff;
    color: #444;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.real-gallery-filter .btn-filter:hover, 
.real-gallery-filter .btn-filter.active {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.real-project-grid-item {
    transition: all 0.4s ease;
}

.real-project-grid-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    height: 100%;
    transition: all 0.3s ease;
}
.real-project-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.real-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.real-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.real-project-grid-card:hover .real-img-wrapper img {
    transform: scale(1.08);
}
.real-project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.real-project-verified-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #25d366;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(37,211,102,0.3);
}
.real-img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}
.real-project-grid-card:hover .real-img-overlay {
    opacity: 1;
}
.real-img-overlay .zoom-icon {
    font-size: 2rem;
    color: #fff;
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.real-project-content {
    padding: 20px;
}
.real-project-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}
.real-project-location {
    font-size: 0.85rem;
    color: #b8860b;
    margin-bottom: 10px;
    font-weight: bold;
}
.real-project-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}
.real-project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #555;
}
.real-project-meta .price {
    color: #e53935;
}

/* Free Consultation Trust Box */
.contact-trust-box {
    background: #f9f9f9;
    border-left: 4px solid #d4af37;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #555;
}
.contact-trust-box i {
    color: #d4af37;
    margin-right: 8px;
}

