/* Website Development Page - Scoped Styles */
/* Using wd- prefix to avoid conflicts with main site CSS */

/* ===================================
   CSS VARIABLES (SCOPED)
   =================================== */
:root {
    /* Colors matching Naraway theme */
    --wd-primary-orange: #FF8C42;
    --wd-primary-orange-dark: #FF6A00;
    --wd-primary-orange-light: #FFA366;
    --wd-error-red: #EF4444;
    --wd-success-green: #10B981;
    --wd-info-blue: #6366F1;
    --wd-warning-yellow: #FFC107;
    
    /* Dark theme colors */
    --wd-dark-bg: #0F1729;
    --wd-dark-bg-secondary: #1E293B;
    --wd-dark-bg-tertiary: #2F3A4E;
    --wd-dark-surface: #1a2332;
    
    /* Text colors */
    --wd-text-white: #FFFFFF;
    --wd-text-gray-100: rgba(255, 255, 255, 0.95);
    --wd-text-gray-200: rgba(255, 255, 255, 0.85);
    --wd-text-gray-300: rgba(255, 255, 255, 0.70);
    --wd-text-gray-400: rgba(255, 255, 255, 0.55);
    --wd-text-gray-500: rgba(255, 255, 255, 0.40);
    
    /* Gradients */
    --wd-gradient-primary: linear-gradient(135deg, #FF8C42, #FF6A00);
    --wd-gradient-dark: linear-gradient(135deg, #0F1729 0%, #1E293B 25%, #334155 50%, #1E293B 75%, #0F1729 100%);
    
    /* Spacing */
    --wd-section-padding: 120px 0;
    --wd-container-width: 1400px;
    
    /* Border radius */
    --wd-radius-sm: 8px;
    --wd-radius-md: 12px;
    --wd-radius-lg: 16px;
    --wd-radius-xl: 24px;
    
    /* Shadows */
    --wd-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --wd-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --wd-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --wd-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --wd-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --wd-transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --wd-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   GLOBAL RESETS & BASE
   =================================== */
.wd-skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--wd-primary-orange);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--wd-radius-sm);
    z-index: 100000;
    font-weight: 600;
}

.wd-skip-link:focus {
    top: 6px;
}

/* ===================================
   LAYOUT & CONTAINER
   =================================== */
.wd-container {
    max-width: var(--wd-container-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.wd-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.wd-section-tag {
    display: inline-block;
    background: rgba(255, 140, 66, 0.1);
    color: var(--wd-primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.wd-section-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--wd-text-white);
    margin: 0 0 20px 0;
}

.wd-section-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--wd-text-gray-300);
    max-width: 800px;
    margin: 0 auto;
}

.wd-highlight {
    background: var(--wd-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wd-highlight-red {
    color: var(--wd-error-red);
}

/* ===================================
   BUTTONS
   =================================== */
.wd-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: var(--wd-radius-md);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--wd-transition-base);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.wd-btn-primary {
    background: var(--wd-gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);
}

.wd-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.4);
}

.wd-btn-secondary {
    background: transparent;
    color: var(--wd-text-gray-200);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.wd-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.wd-btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.wd-btn-icon {
    transition: transform var(--wd-transition-base);
}

.wd-btn:hover .wd-btn-icon {
    transform: translateX(4px);
}

.wd-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wd-primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--wd-transition-base);
}

.wd-link-arrow:hover {
    gap: 12px;
}

/* ===================================
   HERO SECTION
   =================================== */
.wd-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 60px;
}

.wd-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.wd-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--wd-gradient-dark);
}

.wd-animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.wd-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wd-hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.wd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--wd-text-gray-400);
}

.wd-breadcrumb a {
    color: var(--wd-text-gray-400);
    text-decoration: none;
    transition: color var(--wd-transition-fast);
}

.wd-breadcrumb a:hover {
    color: var(--wd-primary-orange);
}

.wd-breadcrumb-sep {
    color: var(--wd-text-gray-500);
}

.wd-hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--wd-text-white);
    margin: 0;
}

.wd-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--wd-text-gray-300);
}

.wd-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.wd-stat {
    text-align: left;
}

.wd-stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--wd-primary-orange);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.wd-stat-label {
    font-size: 14px;
    color: var(--wd-text-gray-400);
}

.wd-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

.wd-hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Visual */
.wd-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wd-hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
}

.wd-browser-mockup {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--wd-radius-lg);
    overflow: hidden;
    box-shadow: var(--wd-shadow-xl);
}

.wd-browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wd-browser-dots {
    display: flex;
    gap: 6px;
}

.wd-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.wd-browser-dots span:nth-child(1) { background: #FF5F56; }
.wd-browser-dots span:nth-child(2) { background: #FFBD2E; }
.wd-browser-dots span:nth-child(3) { background: #27C93F; }

.wd-browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    color: var(--wd-text-gray-400);
}

.wd-browser-url svg {
    stroke: var(--wd-text-gray-500);
}

.wd-browser-content {
    height: 350px;
    padding: 30px;
}

.wd-mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 100%;
}

/* Floating Cards */
.wd-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--wd-radius-md);
    padding: 16px 20px;
    box-shadow: var(--wd-shadow-lg);
    animation: wd-float 6s ease-in-out infinite;
}

.wd-card-1 {
    top: 0;
    left: -50px;
    animation-delay: 0s;
}

.wd-card-2 {
    top: 150px;
    right: -50px;
    animation-delay: 2s;
}

.wd-card-3 {
    bottom: 50px;
    left: 50px;
    animation-delay: 4s;
}

@keyframes wd-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.wd-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wd-card-label {
    font-size: 12px;
    color: var(--wd-text-gray-400);
    font-weight: 500;
}

.wd-card-value {
    font-size: 16px;
    color: var(--wd-text-white);
    font-weight: 700;
}

/* Scroll Indicator */
.wd-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--wd-text-gray-400);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wd-scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.wd-scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--wd-primary-orange);
    border-radius: 2px;
    animation: wd-scroll 2s infinite;
}

@keyframes wd-scroll {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.wd-problem {
    padding: var(--wd-section-padding);
    background: var(--wd-dark-bg-secondary);
}

.wd-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.wd-problem-card {
    background: var(--wd-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wd-radius-lg);
    padding: 32px;
    transition: all var(--wd-transition-base);
}

.wd-problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.1);
}

.wd-problem-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wd-radius-md);
    margin-bottom: 24px;
}

.wd-icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--wd-error-red);
}

.wd-problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wd-text-white);
    margin: 0 0 12px 0;
}

.wd-problem-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--wd-text-gray-300);
    margin: 0;
}

.wd-problem-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 140, 66, 0.05);
    border: 1px solid rgba(255, 140, 66, 0.15);
    border-radius: var(--wd-radius-lg);
}

.wd-problem-statement {
    font-size: 20px;
    line-height: 1.6;
    color: var(--wd-text-gray-200);
    margin: 0 0 24px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   SOLUTION SECTION
   =================================== */
.wd-solution {
    padding: var(--wd-section-padding);
    background: var(--wd-dark-bg);
}

.wd-solution-timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.wd-timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 40px;
    align-items: start;
}

.wd-timeline-reverse {
    grid-template-columns: 300px 1fr 80px;
}

.wd-timeline-reverse .wd-timeline-number {
    grid-column: 3;
}

.wd-timeline-reverse .wd-timeline-content {
    grid-column: 2;
}

.wd-timeline-reverse .wd-timeline-visual {
    grid-column: 1;
}

.wd-timeline-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wd-gradient-primary);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.wd-timeline-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--wd-text-white);
    margin: 0 0 12px 0;
}

.wd-timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--wd-text-gray-300);
    margin: 0 0 24px 0;
}

.wd-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wd-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--wd-text-gray-300);
    font-size: 15px;
}

.wd-timeline-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-visual-box {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wd-radius-lg);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.wd-services {
    padding: var(--wd-section-padding);
    background: var(--wd-dark-bg-secondary);
}

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

.wd-service-card {
    background: var(--wd-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wd-radius-lg);
    padding: 40px;
    transition: all var(--wd-transition-base);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wd-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 66, 0.3);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.15);
}

.wd-service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 66, 0.1);
    border-radius: var(--wd-radius-md);
    color: var(--wd-primary-orange);
}

.wd-service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--wd-text-white);
    margin: 0;
}

.wd-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--wd-text-gray-300);
    margin: 0;
    flex: 1;
}

.wd-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wd-service-features span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    color: var(--wd-text-gray-400);
    font-weight: 500;
}

/* ===================================
   TECHNOLOGY SECTION
   =================================== */
.wd-tech {
    padding: var(--wd-section-padding);
    background: var(--wd-dark-bg);
}

.wd-tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.wd-tech-category h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wd-text-white);
    margin: 0 0 24px 0;
}

.wd-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wd-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--wd-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wd-radius-md);
    transition: all var(--wd-transition-base);
}

.wd-tech-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 66, 0.3);
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.1);
}

.wd-tech-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-tech-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
}

.wd-tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--wd-text-gray-300);
}

/* ===================================
   PROCESS SECTION
   =================================== */
.wd-process {
    padding: var(--wd-section-padding);
    background: var(--wd-dark-bg-secondary);
}

.wd-process-steps {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.wd-process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 140, 66, 0.3) 0%,
        rgba(255, 140, 66, 0.6) 50%,
        rgba(255, 140, 66, 0.3) 100%
    );
}

.wd-process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.wd-process-connector {
    width: 40px;
    flex-shrink: 0;
}

.wd-step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.wd-step-number {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wd-gradient-primary);
    border-radius: 50%;
    font-size: 32px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 32px rgba(255, 140, 66, 0.3);
    position: relative;
    z-index: 2;
}

.wd-step-duration {
    padding: 6px 16px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--wd-primary-orange);
}

.wd-step-content {
    background: var(--wd-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wd-radius-lg);
    padding: 32px;
}

.wd-step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--wd-text-white);
    margin: 0 0 12px 0;
}

.wd-step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--wd-text-gray-300);
    margin: 0 0 24px 0;
}

.wd-step-deliverables {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wd-deliverable {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--wd-text-gray-300);
}

.wd-process-cta {
    display: flex;
    justify-content: center;
}

.wd-cta-box {
    background: var(--wd-dark-surface);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: var(--wd-radius-lg);
    padding: 48px;
    max-width: 800px;
    text-align: center;
}

.wd-cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--wd-text-white);
    margin: 0 0 32px 0;
}

.wd-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wd-included-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    color: var(--wd-text-gray-300);
    font-size: 15px;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.wd-why {
    padding: var(--wd-section-padding);
    background: var(--wd-dark-bg);
}

.wd-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.wd-why-card {
    background: var(--wd-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wd-radius-lg);
    padding: 40px;
    transition: all var(--wd-transition-base);
}

.wd-why-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 140, 66, 0.3);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.15);
}

.wd-why-icon {
    margin-bottom: 24px;
}

.wd-why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--wd-text-white);
    margin: 0 0 12px 0;
}

.wd-why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--wd-text-gray-300);
    margin: 0;
}

/* ===================================
   FAQ SECTION
   =================================== */
.wd-faq {
    padding: var(--wd-section-padding);
    background: var(--wd-dark-bg-secondary);
}

.wd-faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wd-faq-item {
    background: var(--wd-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wd-radius-md);
    overflow: hidden;
    transition: all var(--wd-transition-base);
}

.wd-faq-item:hover {
    border-color: rgba(255, 140, 66, 0.3);
}

.wd-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent;
    border: none;
    color: var(--wd-text-white);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--wd-transition-base);
}

.wd-faq-question:hover {
    color: var(--wd-primary-orange);
}

.wd-faq-icon {
    flex-shrink: 0;
    transition: transform var(--wd-transition-base);
    stroke: var(--wd-text-gray-400);
}

.wd-faq-item.active .wd-faq-icon {
    transform: rotate(180deg);
    stroke: var(--wd-primary-orange);
}

.wd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--wd-transition-slow);
}

.wd-faq-item.active .wd-faq-answer {
    max-height: 500px;
}

.wd-faq-answer p {
    padding: 0 28px 28px 28px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--wd-text-gray-300);
}

/* ===================================
   CTA SECTION
   =================================== */
.wd-cta {
    padding: var(--wd-section-padding);
    background: var(--wd-dark-bg);
    position: relative;
    overflow: hidden;
}

.wd-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
}

.wd-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.wd-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    color: var(--wd-primary-orange);
    font-weight: 600;
}

.wd-cta-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--wd-text-white);
    margin: 0 0 24px 0;
}

.wd-cta-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--wd-text-gray-300);
    margin: 0 0 32px 0;
}

.wd-cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.wd-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--wd-text-gray-300);
    font-size: 15px;
}

.wd-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.wd-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wd-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wd-trust-label {
    font-size: 24px;
    font-weight: 800;
    color: var(--wd-text-white);
    line-height: 1;
    margin-bottom: 4px;
}

.wd-trust-text {
    font-size: 13px;
    color: var(--wd-text-gray-400);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    :root {
        --wd-section-padding: 80px 0;
    }
    
    .wd-container {
        padding: 0 24px;
    }
    
    .wd-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .wd-hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .wd-timeline-item,
    .wd-timeline-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .wd-timeline-number,
    .wd-timeline-content,
    .wd-timeline-visual {
        grid-column: 1 !important;
    }
    
    .wd-timeline-visual {
        display: none;
    }
    
    .wd-process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .wd-process-steps::before {
        display: none;
    }
    
    .wd-process-connector {
        display: none;
    }
    
    .wd-included-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --wd-section-padding: 60px 0;
    }
    
    .wd-container {
        padding: 0 20px;
    }
    
    .wd-section-header {
        margin-bottom: 50px;
    }
    
    .wd-section-title {
        font-size: 32px;
    }
    
    .wd-hero {
        padding: 120px 0 40px;
    }
    
    .wd-hero-title {
        font-size: 36px;
    }
    
    .wd-hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .wd-stat-divider {
        display: none;
    }
    
    .wd-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .wd-btn {
        justify-content: center;
    }
    
    .wd-floating-card {
        display: none;
    }
    
    .wd-problem-grid,
    .wd-services-grid,
    .wd-tech-categories,
    .wd-why-grid {
        grid-template-columns: 1fr;
    }
    
    .wd-cta-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .wd-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .wd-cta-trust {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .wd-section-title {
        font-size: 28px;
    }
    
    .wd-hero-title {
        font-size: 32px;
    }
    
    .wd-step-number {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .wd-tech-grid {
        grid-template-columns: 1fr;
    }
}
/* ===================================
   ADDITIONAL SEO SECTIONS CSS
   Add this to website-development.css
   =================================== */

/* ===================================
   INDIA CITIES CAROUSEL
   =================================== */
.wd-cities-carousel {
    padding: var(--wd-section-padding);
    background: var(--wd-dark-bg);
    position: relative;
    overflow: hidden;
}

.wd-cities-slider-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.wd-cities-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.wd-cities-slider::-webkit-scrollbar {
    display: none;
}

.wd-city-card {
    flex: 0 0 280px;
    background: var(--wd-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wd-radius-lg);
    padding: 32px;
    transition: all var(--wd-transition-base);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wd-city-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 66, 0.3);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.15);
}

.wd-city-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 66, 0.1);
    border-radius: var(--wd-radius-md);
    margin-bottom: 8px;
}

.wd-city-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--wd-text-white);
    margin: 0;
}

.wd-city-state {
    font-size: 14px;
    color: var(--wd-text-gray-400);
    margin: 0;
}

.wd-city-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wd-city-projects {
    font-size: 13px;
    color: var(--wd-text-gray-300);
    font-weight: 600;
}

.wd-city-badge {
    padding: 4px 12px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--wd-primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wd-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--wd-transition-base);
    z-index: 10;
}

.wd-slider-btn:hover {
    background: rgba(255, 140, 66, 0.2);
    border-color: var(--wd-primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.wd-slider-btn svg {
    stroke: var(--wd-text-white);
}

.wd-slider-prev {
    left: -24px;
}

.wd-slider-next {
    right: -24px;
}

.wd-cities-cta {
    text-align: center;
    padding: 32px;
    background: rgba(255, 140, 66, 0.05);
    border: 1px solid rgba(255, 140, 66, 0.15);
    border-radius: var(--wd-radius-lg);
}

.wd-cities-cta p {
    font-size: 16px;
    color: var(--wd-text-gray-200);
    margin: 0;
}

/* ===================================
   INTERNATIONAL PROJECTS SECTION
   =================================== */
.wd-international {
    padding: var(--wd-section-padding);
    background: var(--wd-dark-bg-secondary);
}

.wd-world-map {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--wd-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wd-radius-lg);
}

.wd-map-svg {
    width: 100%;
    height: auto;
}

.wd-pin-group {
    cursor: pointer;
    transition: all var(--wd-transition-base);
}

.wd-pin-group:hover .wd-map-pin {
    fill: var(--wd-primary-orange-light);
    transform: scale(1.2);
}

.wd-pin-pulse {
    fill: var(--wd-primary-orange);
    opacity: 0;
    animation: wd-pulse-animation 2s infinite;
}

@keyframes wd-pulse-animation {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(2);
    }
    100% {
        opacity: 0;
        transform: scale(3);
    }
}

.wd-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.wd-country-card {
    background: var(--wd-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wd-radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--wd-transition-base);
}

.wd-country-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 66, 0.3);
    box-shadow: 0 8px 32px rgba(255, 140, 66, 0.1);
}

.wd-country-flag {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.wd-country-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wd-text-white);
    margin: 0 0 8px 0;
}

.wd-country-card p {
    font-size: 16px;
    color: var(--wd-primary-orange);
    font-weight: 600;
    margin: 0 0 12px 0;
}

.wd-country-industries {
    display: block;
    font-size: 13px;
    color: var(--wd-text-gray-400);
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wd-international-cta {
    display: flex;
    justify-content: center;
}

.wd-international-cta .wd-cta-box {
    max-width: 800px;
}

/* ===================================
   HIDDEN SEO CONTENT
   =================================== */
.wd-seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wd-seo-block {
    color: var(--wd-text-white);
}

.wd-seo-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 32px 0 16px 0;
}

.wd-seo-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.wd-seo-block p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 16px 0;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 1024px) {
    .wd-slider-prev {
        left: 0;
    }
    
    .wd-slider-next {
        right: 0;
    }
    
    .wd-countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .wd-cities-carousel {
        padding: 60px 0;
    }
    
    .wd-city-card {
        flex: 0 0 250px;
        padding: 24px;
    }
    
    .wd-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .wd-world-map {
        padding: 20px;
    }
    
    .wd-countries-grid {
        grid-template-columns: 1fr;
    }
    
    .wd-country-flag {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .wd-city-card {
        flex: 0 0 220px;
        padding: 20px;
    }
    
    .wd-city-icon {
        width: 60px;
        height: 60px;
    }
    
    .wd-city-card h3 {
        font-size: 20px;
    }
    
    .wd-slider-btn {
        width: 36px;
        height: 36px;
    }
}