/* ═══════════════════════════════════════════════════════════
   DEMO PAGE - ZOHO STYLE DESIGN
   ═══════════════════════════════════════════════════════════ */

/* Smooth Scrolling & Performance */
html {
    scroll-behavior: smooth;
}

/* Hardware Acceleration */
.demo-form-card,
.form-input,
.form-select,
.form-textarea,
.btn-submit-demo,
.feature-item {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

:root {
    --primary-blue: #3A7BD5;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --white: #ffffff;
    --light-bg: #FAFAFA;
    --border-color: #E0E0E0;
    --transition: all 0.3s ease;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
}

/* Hero Section */
.demo-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.demo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content-demo {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content-demo h1 {
    font-size: 56px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ideology Section */
.ideology-section {
    padding: 120px 0;
    background: var(--white);
}

.ideology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ideology-content h2 {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.5px;
}

.lead-text {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.ideology-principles {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.principle-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.principle-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue);
    background: #F0F7FF;
    transition: var(--transition);
}

.principle-item:hover .principle-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.principle-text h4 {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 var(--space-xs);
}

.principle-text p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.ideology-video {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.ideology-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: var(--light-bg);
}

.section-title-center {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-md);
    letter-spacing: -0.5px;
}

.section-subtitle-center {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 80px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.process-step {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--text-dark);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 100;
    color: var(--primary-blue);
    margin-bottom: var(--space-lg);
    line-height: 1;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 var(--space-md);
}

.process-step p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.process-video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.process-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Credits */
.video-credits {
    background: #F8F9FA;
    padding: 12px 20px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.credits-text {
    font-size: 13px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.credits-text i {
    font-size: 14px;
    color: #3A7BD5;
}

.credits-text a {
    color: #3A7BD5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.credits-text a:hover {
    color: #2563B8;
    text-decoration: underline;
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 120px 0;
    background: var(--white);
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.showcase-video-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.showcase-video-card:hover {
    border-color: var(--text-dark);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.showcase-video-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #000;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.showcase-video-card:hover .showcase-video {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.showcase-video-card:hover .video-play-overlay {
    opacity: 1;
}

.video-play-overlay i {
    font-size: 64px;
    color: var(--white);
    opacity: 0.9;
}

/* Video Hover Overlay with View Site Button */
.video-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.showcase-video-card:hover .video-hover-overlay {
    opacity: 1;
}

.btn-view-site {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #3A7BD5 0%, #2563B8 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(58, 123, 213, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-view-site:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(58, 123, 213, 0.6);
    background: linear-gradient(135deg, #2563B8 0%, #1E4A8F 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-view-site i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-view-site:hover i {
    transform: translateX(3px);
}

.btn-view-site span {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Visit Site Button - Center Overlay */
.btn-visit-site {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #1C4E80;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(28, 78, 128, 0.4);
    border-radius: 0;
}

.btn-visit-site:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(28, 78, 128, 0.6);
    background: #0A6E7C;
}

.btn-visit-site i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-visit-site:hover i {
    transform: scale(1.2);
}

.btn-visit-site span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.showcase-video-info {
    padding: var(--space-xl);
}

.showcase-video-info h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 var(--space-sm);
}

.showcase-video-info p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0 0 var(--space-lg);
}

.view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition);
}

.view-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.view-link i {
    font-size: 12px;
}

/* Responsive Video Showcase */
@media (max-width: 1024px) {
    .video-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .video-showcase-section {
        padding: 80px 0;
    }
    
    .video-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .showcase-video-wrapper {
        height: 250px;
    }
    
    .showcase-video-info {
        padding: var(--space-lg);
    }
}

/* FAQ Section */
.faq-demo-section {
    padding: 120px 0;
    background: var(--white);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.faq-intro {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-gray);
    margin: -20px auto 60px;
}

.faq-list-demo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item-demo {
    border-bottom: 1px solid var(--border-color);
}

.faq-item-demo:last-child {
    border-bottom: none;
}

.faq-question-demo {
    width: 100%;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question-demo:hover {
    color: var(--primary-blue);
}

.faq-question-demo i {
    font-size: 14px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-item-demo.active .faq-question-demo i {
    transform: rotate(45deg);
}

.faq-answer-demo {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-demo.active .faq-answer-demo {
    max-height: 500px;
}

.faq-answer-demo p {
    padding: 0 0 var(--space-lg);
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Floating Enquiry Button */
.floating-enquiry-btn {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(58, 123, 213, 0.3);
    transition: var(--transition);
    z-index: 1000;
}

.floating-enquiry-btn:hover {
    background: #2a5fb5;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(58, 123, 213, 0.4);
}

.floating-enquiry-btn i {
    font-size: 20px;
}

/* Enquiry Modal */
.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--space-lg);
}

.enquiry-modal.active {
    display: flex;
}

.modal-content-enquiry {
    background: var(--white);
    padding: 60px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-content-enquiry h3 {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-dark);
    margin: 0 0 var(--space-sm);
}

.modal-content-enquiry > p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-gray);
    margin: 0 0 var(--space-xl);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.email-btn {
    background: var(--white);
    color: var(--text-dark);
}

.email-btn:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background: #1da851;
    border-color: #1da851;
}

.cta-btn i {
    font-size: 20px;
}

.contact-info {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-gray);
    margin: 0 0 var(--space-sm);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: var(--primary-blue);
    width: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ideology-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .demo-hero {
        padding: 140px 0 80px;
    }
    
    .hero-content-demo h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .ideology-section,
    .process-section,
    .faq-demo-section {
        padding: 80px 0;
    }
    
    .ideology-content h2,
    .section-title-center {
        font-size: 32px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-credits {
        padding: 10px 15px;
    }
    
    .credits-text {
        font-size: 12px;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }
    
    .floating-enquiry-btn {
        bottom: 20px;
        left: 20px;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .floating-enquiry-btn span {
        display: none;
    }
    
    .modal-content-enquiry {
        padding: 40px 30px;
    }
    
    .modal-content-enquiry h3 {
        font-size: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════
   SHOWCASE CARD UPGRADES - EXPANDABLE & ENQUIRY
   ═══════════════════════════════════════════════════════════ */

/* Showcase Actions */
.showcase-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-expand-project,
.btn-enquire-project,
.btn-visit-project {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-expand-project {
    background: #F3F4F6;
    color: var(--text-dark);
}

.btn-expand-project:hover {
    background: #E5E7EB;
    transform: translateY(-2px);
}

.btn-expand-project.active {
    background: var(--text-dark);
    color: var(--white);
}

.btn-expand-project.active i {
    transform: rotate(180deg);
}

.btn-visit-project {
    background: #1C4E80;
    color: var(--white);
}

.btn-visit-project:hover {
    background: #0A6E7C;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 78, 128, 0.3);
}

.btn-enquire-project {
    background: linear-gradient(135deg, #3A7BD5 0%, #2563B8 100%);
    color: var(--white);
}

.btn-enquire-project:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 123, 213, 0.3);
}

/* Expandable Content */
.project-expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.showcase-video-card.expanded .project-expanded-content {
    max-height: 1000px;
    padding: 20px 0 0 0;
    margin-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.expanded-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* Project Info Grid */
.project-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 0;
    border: 1px solid #E5E7EB;
}

.project-info-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.project-info-section p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.template-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3A7BD5;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.template-link:hover {
    color: #2563B8;
    gap: 12px;
}

.template-link i {
    font-size: 14px;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.project-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-gray);
}

.project-features i {
    color: #10B981;
    font-size: 14px;
}

.project-tech-stack h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 6px 14px;
    background: #F3F4F6;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
}

/* Tech Logos */
.tech-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.tech-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0%);
}

.tech-logo:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Enquiry Modal */
.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.enquiry-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #F3F4F6;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #E5E7EB;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 16px;
    color: var(--text-gray);
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #3A7BD5;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.1);
}

.modal-form textarea {
    resize: vertical;
}

.btn-submit-enquiry {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-actions {
        flex-direction: column;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
    
    .project-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .showcase-video-card.expanded .project-expanded-content {
        max-height: 1500px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-header h3 {
        font-size: 24px;
    }
}


/* Under Development Cards */
.showcase-video-card.under-development {
    position: relative;
}

.showcase-video-card.under-development .showcase-video-wrapper {
    filter: grayscale(100%) brightness(0.3);
    position: relative;
}

.showcase-video-card.under-development .showcase-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.showcase-video-card.under-development .showcase-video-info {
    background: #1a1a1a;
    color: #ffffff;
}

.showcase-video-card.under-development .showcase-video-info h3 {
    color: #ffffff;
}

.showcase-video-card.under-development .showcase-video-info p {
    color: #cccccc;
}

.showcase-video-card.under-development .btn-expand-project {
    display: none;
}

/* Development Overlay */
.development-overlay {
    background: rgba(0, 0, 0, 0.85);
    opacity: 1;
    z-index: 2;
}

.development-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse-development 2s ease-in-out infinite;
}

.development-badge i {
    font-size: 48px;
    color: #FFA500;
}

.development-badge span {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-development {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 165, 0, 0.5);
    }
}

/* Disable hover effects for under development cards */
.showcase-video-card.under-development:hover .showcase-video {
    transform: none;
}

.showcase-video-card.under-development .showcase-actions {
    justify-content: center;
}

.showcase-video-card.under-development .btn-enquire-project {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.showcase-video-card.under-development .btn-enquire-project:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FF7700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .development-badge {
        padding: 20px;
    }
    
    .development-badge i {
        font-size: 36px;
    }
    
    .development-badge span {
        font-size: 16px;
    }
}


/* ═══════════════════════════════════════════════════════════
   FLOATING ENQUIRY BUTTON (LEFT SIDE)
   ═══════════════════════════════════════════════════════════ */

.floating-enquiry-btn-left {
    position: fixed;
    left: 30px;
    bottom: 100px;
    background: linear-gradient(135deg, #3A7BD5 0%, #2563EB 100%);
    color: #FFFFFF;
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(58, 123, 213, 0.4);
    transition: all 0.3s ease;
    z-index: 9997;
    cursor: pointer;
}

.floating-enquiry-btn-left i {
    font-size: 20px;
}

.floating-enquiry-btn-left:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(58, 123, 213, 0.6);
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
}

.floating-enquiry-btn-left:active {
    transform: translateY(-2px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-enquiry-btn-left {
        left: 20px;
        bottom: 80px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .floating-enquiry-btn-left i {
        font-size: 18px;
    }
    
    .floating-enquiry-btn-left span {
        display: none;
    }
    
    .floating-enquiry-btn-left {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .floating-enquiry-btn-left {
        left: 15px;
        bottom: 70px;
        width: 46px;
        height: 46px;
    }
    
    .floating-enquiry-btn-left i {
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO DRAG SCROLL - INTERACTIVEBEES INSPIRED
   ═══════════════════════════════════════════════════════════ */

.portfolio-drag-section {
    padding: 120px 0 80px;
    background: #0A0F1C;
    overflow: hidden;
    position: relative;
}

.portfolio-drag-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.portfolio-drag-title .portfolio-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #60A5FA;
    margin-bottom: 16px;
}

.portfolio-drag-title h2 {
    font-size: 48px;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -1px;
}

.portfolio-drag-title h2 .highlight-text {
    font-weight: 700;
    background: linear-gradient(135deg, #3A7BD5, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-drag-title p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    font-weight: 300;
}

.portfolio-drag-nav {
    display: flex;
    gap: 12px;
}

.drag-nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drag-nav-btn:hover {
    background: #3A7BD5;
    border-color: #3A7BD5;
    transform: scale(1.05);
}

.portfolio-drag-track-wrapper {
    overflow: hidden;
    cursor: grab;
    padding-bottom: 40px;
}

.portfolio-drag-track-wrapper:active {
    cursor: grabbing;
}

.portfolio-drag-track {
    display: flex;
    gap: 30px;
    transition: transform 0.1s ease;
    padding: 0 max(40px, calc((100vw - 1200px) / 2));
    user-select: none;
    -webkit-user-select: none;
}

.drag-card {
    min-width: 380px;
    max-width: 380px;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.drag-card:hover {
    border-color: #3A7BD5;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(58, 123, 213, 0.2);
}

.drag-card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.drag-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.drag-card:hover .drag-card-video {
    transform: scale(1.08);
}

.drag-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,15,28,0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.drag-card-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(255,255,255,0.08);
    line-height: 1;
}

.drag-card:hover .drag-card-number {
    color: rgba(58, 123, 213, 0.3);
}

.drag-card-content {
    padding: 28px;
}

.drag-card-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.drag-card-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 16px;
}

.drag-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.drag-card-tags span {
    padding: 4px 12px;
    background: rgba(58, 123, 213, 0.15);
    color: #60A5FA;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid rgba(58, 123, 213, 0.2);
}

.drag-card-buttons {
    display: flex;
    gap: 10px;
}

.btn-drag-explore,
.btn-drag-visit {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-drag-explore {
    background: linear-gradient(135deg, #3A7BD5 0%, #2563EB 100%);
    color: #FFFFFF;
}

.btn-drag-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(58, 123, 213, 0.4);
}

.btn-drag-visit {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-drag-visit:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.drag-scroll-hint {
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.drag-scroll-hint i {
    animation: dragHint 2s ease-in-out infinite;
}

@keyframes dragHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-drag-title h2 { font-size: 36px; }
    .drag-card { min-width: 320px; max-width: 320px; }
}

@media (max-width: 768px) {
    .portfolio-drag-section { padding: 80px 0 60px; }
    .portfolio-drag-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .portfolio-drag-title h2 { font-size: 28px; }
    .drag-card { min-width: 280px; max-width: 280px; }
    .drag-card-visual { height: 180px; }
    .drag-card-buttons { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   CAREERS CTA + WHATSAPP CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */

.careers-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.careers-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 123, 213, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.careers-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.careers-cta-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #60A5FA;
    margin-bottom: 16px;
}

.careers-cta-text h2 {
    font-size: 42px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.careers-cta-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 32px;
}

.btn-careers-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3A7BD5 0%, #2563EB 100%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-careers-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(58, 123, 213, 0.4);
}

.whatsapp-contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 48px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.whatsapp-contact-card:hover {
    border-color: #25D366;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.15);
}

.whatsapp-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: #FFFFFF;
}

.whatsapp-contact-card h3 {
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.whatsapp-contact-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-whatsapp-connect {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #25D366;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-whatsapp-connect:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-number {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .careers-cta-section { padding: 60px 0; }
    .careers-cta-content { grid-template-columns: 1fr; gap: 40px; }
    .careers-cta-text h2 { font-size: 28px; }
    .whatsapp-contact-card { padding: 32px 24px; }
}

/* Hide scrollbar on drag track */
.portfolio-drag-track::-webkit-scrollbar {
    display: none;
}

.portfolio-drag-track {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
