/* ==========================================================================
   BLOG LISTING PAGE - gv-blog-section
   ========================================================================== */

.gv-blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gv-blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gv-blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.gv-blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.gv-blog-card:hover .gv-blog-image img {
    transform: scale(1.08);
}

.gv-blog-content {
    padding: 24px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gv-blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
    margin-bottom: 14px;
}

.gv-blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gv-blog-title {
    font-size: 22px;
    line-height: 1.35;
    margin: 0 0 14px;
    font-weight: 700;
}

.gv-blog-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gv-blog-title a:hover {
    color: var(--primary);
}

.gv-blog-excerpt {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
    flex-grow: 1;
}

.gv-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.gv-read-more:hover {
    color: #e0a800;
    gap: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .gv-blog-section {
        padding: 60px 0;
    }
    .gv-blog-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .gv-blog-image {
        height: 200px;
    }
    .gv-blog-content {
        padding: 20px;
    }
}









/* ==========================================================================
   SINGLE BLOG PAGE
   ========================================================================== */

.single-blog-section {
    padding: 80px 0;
    background: #fff;
}

.single-blog-left {
    background: white;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.single-blog-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.single-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-blog-title {
    font-size: 38px;
    line-height: 1.25;
    margin: 32px 0 16px;
    font-weight: 800;
    color: var(--dark);
}

.single-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    font-size: 15px;
    color: #666;
}

.single-blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-blog-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.single-blog-content h2,
.single-blog-content h3,
.single-blog-content h4 {
    margin: 40px 0 20px;
    color: var(--dark);
    font-weight: 700;
}

.single-blog-content h2 { font-size: 32px; }
.single-blog-content h3 { font-size: 26px; }
.single-blog-content h4 { font-size: 22px; }

.single-blog-content p {
    margin-bottom: 24px;
}

.single-blog-content ul,
.single-blog-content ol {
    margin: 20px 0 30px 20px;
}

.single-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: #f9f9f9;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.sidebar-box h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-box h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 12px;
}

.sidebar-list a {
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.sidebar-list a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.sidebar-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.sidebar-btn:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.cta-box {
    background: linear-gradient(135deg, #1b1b1b 0%, #2c2c2c 100%);
    color: white;
    text-align: center;
}

.cta-box h4 {
    color: white;
}

.cta-box p {
    color: #ddd;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .single-blog-section {
        padding: 60px 0;
    }
    
    .single-blog-title {
        font-size: 32px;
    }
    
    .single-blog-image {
        height: 380px;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .single-blog-title {
        font-size: 28px;
    }
    
    .single-blog-image {
        height: 300px;
    }
    
    .single-blog-meta {
        flex-direction: column;
        gap: 12px;
    }
}











/* ==========================================
   SUCCESS / THANK YOU PAGE
========================================== */

.success-hero {
    height: 500px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.success-icon i {
    filter: drop-shadow(0 0 20px rgba(255,199,44,0.6));
}

.success-section {
    background: linear-gradient(to bottom, #000 0%, #0a0a0a 100%);
}

.success-message h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.what-next-card {
    border: 1px solid rgba(255,199,44,0.15);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badges .text-center i {
    filter: drop-shadow(0 0 15px rgba(255,199,44,0.4));
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

/* Responsive */
@media (max-width: 991px) {
    .success-hero {
        height: 420px;
    }
    .success-message h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .success-hero {
        height: 380px;
    }
    .success-message h2 {
        font-size: 32px;
    }
    .success-actions .btn {
        width: 100%;
        margin-bottom: 12px;
    }
}











.service-picker {
    margin-bottom: 30px;
}

.service-picker-title {
    font-weight: 700;
    margin-bottom: 14px;
    color: #000;
}

/* GRID */
.service-picker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* CARD */
.service-picker-item {
    background: #fff;
    border: 2px solid #e6e6e6;
    border-radius: 14px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* ICON */
.service-picker-item i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #444;
}

/* TEXT */
.service-picker-item span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

/* HOVER */
.service-picker-item:hover {
    border-color: #ffc72c;
    background: #fff9e6;
}

/* ACTIVE */
.service-picker-item.active {
    background: #ffc72c;
    border-color: #ffc72c;
}

.service-picker-item.active i,
.service-picker-item.active span {
    color: #000;
}

/* ERROR */
.service-error {
    color: #d00000;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .service-picker-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .service-picker-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
















/* ==========================================
   PRIVACY POLICY PAGE STYLES
========================================== */

.privacy-section {
    background: linear-gradient(to bottom, #000 0%, #0a0a0a 100%);
    color: #ddd;
}

.privacy-intro h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.privacy-block {
    background: rgba(20,20,20,0.7);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,199,44,0.12);
    margin-bottom: 30px;
    transition: all 0.35s ease;
}

.privacy-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255,199,44,0.1);
}

.privacy-block h3 {
    font-size: 28px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-weight: 700;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
}

.privacy-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.privacy-list li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.privacy-section a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
}

.privacy-section a:hover {
    text-decoration: underline;
}








/* ==========================================
   TERMS & CONDITIONS PAGE STYLES
========================================== */

.terms-section {
    background: linear-gradient(to bottom, #000 0%, #0a0a0a 100%);
    color: #ddd;
}

.terms-intro h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.terms-block {
    background: rgba(20,20,20,0.7);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,199,44,0.12);
    margin-bottom: 30px;
    transition: all 0.35s ease;
}

.terms-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255,199,44,0.1);
}

.terms-block h3 {
    font-size: 28px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-list {
    list-style: none;
    padding-left: 0;
}

.terms-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.terms-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.terms-section a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
}

.terms-section a:hover {
    text-decoration: underline;
}