
/* ── Navigation Active State ── */
.nav-link.active {
    color: var(--primary) !important;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary);
}
   

/* ── Hero Enhancements ── */
.cus_gk_hero_trust_line {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cus_gk_hero_trust_line::before,
.cus_gk_hero_trust_line::after {
    content: '';
    height: 1px;
    width: 30px;
    background: var(--border-glow);
}

/* ── Logo Marquee ── */
.cus_gk_logo_marquee_section {
    padding: 60px 0;
    background: rgba(var(--dark-rgb), 0.5);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
    overflow: hidden;
    position: relative;
}

.cus_gk_logo_marquee_section::before,
.cus_gk_logo_marquee_section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cus_gk_logo_marquee_section::before {
    left: 0;
    background: linear-gradient(to right, var(--dark), transparent);
}

.cus_gk_logo_marquee_section::after {
    right: 0;
    background: linear-gradient(to left, var(--dark), transparent);
}

.cus_gk_marquee_track {
    display: flex;
    gap: 100px;
    width: max-content;
    animation: marquee 40s linear infinite;
    align-items: center;
}

.cus_gk_marquee_track:hover {
    animation-play-state: paused;
}

.cus_gk_partner_logo {
    height: 120px;
    width: auto;
    filter: grayscale(0.2) brightness(0.9) opacity(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px;
}

.cus_gk_partner_logo:hover {
    filter: grayscale(0) brightness(1.2) opacity(1) drop-shadow(0 0 30px var(--primary));
    transform: scale(1.25);
    cursor: pointer;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Quick Services Overview (Revamped) ── */
.cus_gk_quick_services {
    padding: 0 20px;
    margin-top: 40px;
    z-index: 100;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cus_gk_qs_container {
    background: rgba(var(--dark-rgb), 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cus_gk_qs_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.cus_gk_qs_item:hover {
    transform: translateY(-5px);
}

.cus_gk_qs_icon {
    font-size: 2rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cus_gk_qs_title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Section Dividers ── */
.cus_gk_section_header {
    margin-bottom: 60px;
    text-align: center;
}

.cus_gk_section_subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ── Differentiation Section ── */
.cus_gk_about_plus {
    padding: 100px 20px;
    background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.05), transparent 40%);
}

.cus_gk_about_grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cus_gk_about_highlight {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

/* ── Featured Projects ── */
.cus_gk_projects_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cus_gk_project_card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    border: 1px solid var(--border-glow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cus_gk_project_img_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cus_gk_project_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(0.8);
    transition: transform 0.6s ease;
}

.cus_gk_project_content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, transparent 100%);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.cus_gk_project_card:hover .cus_gk_project_img_wrapper img {
    transform: scale(1.1);
}

.cus_gk_project_card:hover .cus_gk_project_content {
    transform: translateY(0);
}

.cus_gk_project_card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cus_gk_project_title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.cus_gk_project_desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Results/Trust Section ── */
.cus_gk_results_section {
    padding: 80px 20px;
    background: var(--dark-surface);
}

.cus_gk_stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cus_gk_stat_item {
    text-align: center;
}

.cus_gk_stat_num {
    font-family: var(--font-display);
    font-size: 3rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    margin-bottom: 10px;
}

.cus_gk_stat_label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Process Section ── */
.cus_gk_process_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.cus_gk_process_card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glow);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.cus_gk_process_card:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.cus_gk_process_num {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    opacity: 0.1;
    color: var(--primary);
}

/* ── Unique Value Section ── */
.cus_gk_founder_section {
    padding: 100px 20px;
}

.cus_gk_founder_box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border: 1px solid var(--border-glow);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cus_gk_founder_box::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: var(--font-display);
    font-size: 8rem;
    opacity: 0.05;
    color: var(--primary);
}

/* ── Feedback Section ── */
.cus_gk_feedback_section {
    padding: 100px 20px;
}

.cus_gk_feedback_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.cus_gk_feedback_card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glow);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.cus_gk_feedback_card:hover {
    border-color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.05);
    transform: translateY(-5px);
}

.cus_gk_client_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid var(--primary);
    padding: 5px;
    background: var(--dark-surface);
    object-fit: contain;
}

.cus_gk_feedback_text {
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cus_gk_client_info h4 {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 5px;
}

.cus_gk_client_info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Insights & Blog Review (Revamped) ── */
.cus_gk_blog_section {
    padding: 100px 20px;
    background: radial-gradient(circle at bottom left, rgba(var(--secondary-rgb), 0.05), transparent 40%);
}

.cus_gk_blog_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.cus_gk_blog_card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cus_gk_blog_img_header {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.cus_gk_blog_img_header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.8);
}

.cus_gk_blog_badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-brand);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.cus_gk_blog_info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cus_gk_blog_info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary);
    transition: color 0.3s ease;
}

.cus_gk_blog_info p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.cus_gk_blog_footer {
    padding-top: 20px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cus_gk_read_more {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cus_gk_read_more i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cus_gk_blog_card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--primary-rgb), 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.cus_gk_blog_card:hover .cus_gk_blog_img_header img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1);
}

.cus_gk_blog_card:hover .cus_gk_read_more {
    color: var(--primary);
}

.cus_gk_blog_card:hover .cus_gk_read_more i {
    transform: translateX(5px);
}

/* ── CTA Banner (Premium) ── */
.cus_gk_cta_banner {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    border-radius: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 80px auto;
    color: white;
    box-shadow: 0 30px 60px rgba(var(--primary-rgb), 0.3);
}

.cus_gk_cta_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/grid-dots.png');
    opacity: 0.1;
    pointer-events: none;
}

.cus_gk_cta_banner h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cus_gk_cta_banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cus_gk_btn_white {
    background: white;
    color: var(--secondary);
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cus_gk_btn_white:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* ============================================================
   PORTFOLIO PAGE STYLES (REFINED)
   Prefix: Cus_gk_
   ============================================================ */

.Cus_gk_portfolio_hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 150px 20px 80px;
    overflow: hidden;
}

.Cus_gk_hero_glass_card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 40px;
    padding: 60px 40px;
    max-width: 900px;
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 
                inset 0 0 40px rgba(var(--primary-rgb), 0.05);
    animation: slideInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.Cus_gk_portfolio_hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    margin-bottom: 25px;
    line-height: 1;
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: -2px;
}

/* ── Floating Decorative Elements ── */
.Cus_gk_floating_elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.Cus_gk_tech_icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2);
    animation: float 6s ease-in-out infinite;
}

.Cus_gk_icon_1 { top: 20%; left: 10%; animation-delay: 0s; }
.Cus_gk_icon_2 { top: 60%; left: 15%; animation-delay: 2s; }
.Cus_gk_icon_3 { top: 15%; right: 12%; animation-delay: 1s; }
.Cus_gk_icon_4 { top: 65%; right: 8%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* ── Cyber Glow ── */
.Cus_gk_hero_glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* ── Containerized Project Sections ── */
.Cus_gk_portfolio_item {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 20px;
}

.Cus_gk_portfolio_content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.Cus_gk_project_info {
    animation: slideInUp 0.8s ease-out;
}

.Cus_gk_project_tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.Cus_gk_project_title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
}

.Cus_gk_project_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary);
}

.Cus_gk_project_desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.Cus_gk_project_features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.Cus_gk_project_features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-muted);
}

.Cus_gk_project_features li::before {
    content: '→';
    color: var(--primary);
    font-weight: 900;
}

/* ── Refined Remark Box ── */
.Cus_gk_remark_box {
    top: 30%;
    background: var(--dark-surface);
    border: 1px solid var(--border-glow);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    animation: fadeInRight 1s ease-out;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.Cus_gk_remark_box::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

.Cus_gk_remark_text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ── Image Frame Mockup ── */
.Cus_gk_image_frame {
    width: 100%;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 0 0 30px rgba(var(--primary-rgb), 0.1);
    animation: slideInUp 1s ease-out;
    position: relative;
}

.Cus_gk_frame_header {
    height: 35px;
    background: #252525;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 6px;
    border-bottom: 1px solid #333;
}

.Cus_gk_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
}

.Cus_gk_dot:nth-child(1) { background: #ff5f56; }
.Cus_gk_dot:nth-child(2) { background: #ffbd2e; }
.Cus_gk_dot:nth-child(3) { background: #27c93f; }

.Cus_gk_image_frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: none !important; /* Ensure image is bright and clear */
    transition: transform 0.5s ease;
}

.Cus_gk_image_frame:hover img {
    transform: scale(1.02);
}

/* ── Animations ── */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ── Revamped Premium CTA ── */
.Cus_gk_cta_section {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    background: #050505;
    border-top: 1px solid rgba(var(--primary-rgb), 0.1);
}

.Cus_gk_cta_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.Cus_gk_cta_glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    animation: cta-pulse 6s ease-in-out infinite;
}

.Cus_gk_cta_glow_1 { top: -10%; left: -10%; }
.Cus_gk_cta_glow_2 { bottom: -10%; right: -10%; animation-delay: 3s; }

@keyframes cta-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.3); }
}

.Cus_gk_cta_container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 40px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.Cus_gk_cta_title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Cus_gk_cta_desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.Cus_gk_cta_btn_wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.Cus_gk_cta_primary_btn {
    padding: 18px 45px;
    background: var(--gradient-brand);
    color: white;
    text-transform: uppercase;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
    border: none;
    cursor: pointer;
}

.Cus_gk_cta_primary_btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.5);
}

.Cus_gk_cta_secondary_btn {
    padding: 18px 45px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    text-transform: uppercase;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.Cus_gk_cta_secondary_btn:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: white;
    border-color: white;
}

/* ── Breadcrumbs (Hero Version) ── */
.Cus_gk_breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.Cus_gk_breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.Cus_gk_breadcrumbs a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}

.Cus_gk_breadcrumbs .separator {
    color: var(--primary);
    opacity: 0.4;
}

.Cus_gk_breadcrumbs .current {
    color: var(--primary);
    font-weight: 700;
}

/* ── Services Grid & Cards ── */
.Cus_gk_services_section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.Cus_gk_services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.Cus_gk_service_card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.Cus_gk_service_card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.Cus_gk_service_img_wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.Cus_gk_service_card:hover .Cus_gk_service_img_wrapper img {
    transform: scale(1.1);
}

.Cus_gk_service_icon_badge {
    position: absolute;
    bottom: 9px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-brand);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
    z-index: 2;
}

.Cus_gk_service_content {
    padding: 50px 30px 30px;
    flex-grow: 1;
}

.Cus_gk_service_title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.Cus_gk_service_desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.Cus_gk_service_link {
    margin-top: auto;
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.Cus_gk_service_link:hover {
    gap: 15px;
}

/* ── Contact Page Specific Styles ── */
.Cus_gk_contact_grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.Cus_gk_contact_info {
    animation: slideInUp 0.8s ease-out;
}

.Cus_gk_info_card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.Cus_gk_info_card h3 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.Cus_gk_info_card p {
    font-size: 1.2rem;
    color: white;
}

/* ── Modernized Form ── */
.Cus_gk_contact_form_box {
    height: 99dvh;
    background: var(--dark-surface);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--border-glow);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.Cus_gk_form_group {
    margin-bottom: 25px;
}

.Cus_gk_form_group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.Cus_gk_form_input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.Cus_gk_form_input:focus {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
    outline: none;
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2);
}

textarea.Cus_gk_form_input {
    min-height: 150px;
    resize: none;
}

/* ── Grayscale Map ── */
.Cus_gk_map_container {
    height: 400px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    filter: grayscale(1) invert(0.9) contrast(1.2);
    margin-top: 80px;
    margin-bottom: 80px;
}

/* ── Floating WhatsApp Widget ── */
.Cus_gk_wa_widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.Cus_gk_wa_btn {
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: transform 0.3s ease;
}

.Cus_gk_wa_btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: wa-pulse 2s infinite;
}

.Cus_gk_wa_btn i, .Cus_gk_wa_btn svg {
    color: white;
    font-size: 32px;
}

.Cus_gk_wa_tooltip {
    background: var(--dark-surface);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.Cus_gk_wa_widget:hover .Cus_gk_wa_tooltip {
    opacity: 1;
    transform: translateX(0);
}

.Cus_gk_wa_widget:hover .Cus_gk_wa_btn {
    transform: scale(1.1);
}

/* ── Products Section ── */
.Cus_gk_product_item {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.Cus_gk_product_item:last-child {
    border-bottom: none;
}

.Cus_gk_product_item:nth-child(even) {
    direction: rtl;
}

.Cus_gk_product_item:nth-child(even) .Cus_gk_product_info {
    direction: ltr;
}

.Cus_gk_product_info {
    animation: slideInUp 0.8s ease-out;
}

.Cus_gk_product_tag {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.Cus_gk_product_title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.Cus_gk_product_desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.Cus_gk_product_features {
    list-style: none;
    margin-bottom: 40px;
}

.Cus_gk_product_features li {
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.Cus_gk_product_features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.Cus_gk_product_image_frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.Cus_gk_product_image_frame:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.Cus_gk_product_image_frame img {
    width: 100%;
    height: auto;
    display: block;
}

.Cus_gk_product_glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.Cus_gk_inquire_btn {
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.Cus_gk_inquire_btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    filter: brightness(1.1);
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ── Blog Page Styles ── */
.Cus_gk_blog_feed {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.Cus_gk_blog_featured_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.Cus_gk_blog_featured_card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

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

.Cus_gk_blog_featured_card:hover img {
    transform: scale(1.05);
}

.Cus_gk_blog_featured_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    z-index: 2;
}

.Cus_gk_insight_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 100px;
}

.Cus_gk_insight_card {
    background: rgba(var(--primary-rgb), 0.03);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    padding: 40px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.Cus_gk_insight_card:hover {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.Cus_gk_insight_card i, .Cus_gk_insight_card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.Cus_gk_insight_title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
}

.Cus_gk_insight_desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.Cus_gk_insight_number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.05;
}
