/**
 * Destiny Code Matrix - Landing Page Styles
 * Version 3.2.0
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --dcm-primary: #667eea;
    --dcm-secondary: #764ba2;
    --dcm-gold: #f6c343;
    --dcm-success: #00c851;
    --dcm-danger: #ff4444;
    --dcm-dark: #1a1a2e;
    --dcm-light: #f8f9fa;
    --dcm-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --dcm-gradient-gold: linear-gradient(135deg, #f6c343 0%, #e6a817 100%);
    --dcm-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    --dcm-radius: 16px;
    --dcm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Base Styles
   ======================================== */
.dcm-landing {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #333;
    overflow-x: hidden;
}

.dcm-landing * {
    box-sizing: border-box;
}

.dcm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Hero Section
   ======================================== */
.dcm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.dcm-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Stars Animation */
.dcm-stars, .dcm-stars2, .dcm-stars3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.dcm-stars {
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 230px 80px, white, transparent);
    background-repeat: repeat;
    background-size: 250px 250px;
    animation: twinkle 5s ease-in-out infinite;
}

.dcm-stars2 {
    background-image:
        radial-gradient(1px 1px at 25px 35px, white, transparent),
        radial-gradient(2px 2px at 75px 95px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 125px 55px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 7s ease-in-out infinite;
    animation-delay: -2s;
}

.dcm-stars3 {
    background-image:
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 100px 150px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: twinkle 9s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Shooting Stars */
.dcm-shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, white, transparent);
    animation: shooting 3s linear infinite;
    opacity: 0;
}

.dcm-shooting-star:nth-child(1) { top: 20%; left: -100px; animation-delay: 0s; }
.dcm-shooting-star:nth-child(2) { top: 40%; left: -100px; animation-delay: 1.5s; }
.dcm-shooting-star:nth-child(3) { top: 60%; left: -100px; animation-delay: 3s; }

.dcm-delay-1 { animation-delay: 1.5s !important; }
.dcm-delay-2 { animation-delay: 3s !important; }

@keyframes shooting {
    0% { transform: translateX(0) rotate(-45deg); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 200px)) rotate(-45deg); opacity: 0; }
}

/* Hero Content */
.dcm-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

.dcm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.dcm-hero-badge span {
    background: var(--dcm-gradient-gold);
    color: #1a1a2e;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

.dcm-hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.1;
}

.dcm-gradient-text {
    background: linear-gradient(135deg, #fff 0%, #f6c343 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dcm-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: rgba(255,255,255,0.8);
    margin: 0 0 40px;
    font-weight: 300;
}

.dcm-hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.dcm-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.dcm-feature-icon {
    font-size: 20px;
}

.dcm-hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.dcm-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.dcm-stat-item {
    text-align: center;
    color: white;
}

.dcm-stat-item .dcm-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--dcm-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dcm-stat-item .dcm-stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    margin-top: 5px;
}

/* Scroll Indicator */
.dcm-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    animation: bounce 2s infinite;
}

.dcm-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.dcm-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================================
   Animations
   ======================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--dcm-transition);
    transition-duration: 0.6s;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Buttons
   ======================================== */
.dcm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--dcm-transition);
    position: relative;
    overflow: hidden;
}

.dcm-btn-primary {
    background: var(--dcm-gradient);
    color: white;
    box-shadow: var(--dcm-shadow);
}

.dcm-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.dcm-btn-glow {
    background: var(--dcm-gradient);
    color: white;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.5); }
    50% { box-shadow: 0 0 50px rgba(102, 126, 234, 0.8), 0 0 80px rgba(118, 75, 162, 0.4); }
}

.dcm-btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.dcm-btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.dcm-btn-gold {
    background: var(--dcm-gradient-gold);
    color: #1a1a2e;
}

.dcm-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(246, 195, 67, 0.4);
}

.dcm-btn-white {
    background: white;
    color: var(--dcm-primary);
}

.dcm-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.dcm-btn-outline {
    background: transparent;
    color: var(--dcm-primary);
    border: 2px solid var(--dcm-primary);
}

.dcm-btn-outline:hover {
    background: var(--dcm-primary);
    color: white;
}

.dcm-btn-block {
    width: 100%;
}

.dcm-btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.dcm-btn.loading .dcm-btn-text { display: none; }
.dcm-btn.loading .dcm-btn-loading { display: block; }
.dcm-btn-loading { display: none; }

.dcm-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Sections
   ======================================== */
.dcm-section {
    padding: 100px 0;
}

.dcm-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.dcm-section-badge {
    display: inline-block;
    background: var(--dcm-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.dcm-badge-gold {
    background: var(--dcm-gradient-gold);
    color: #1a1a2e;
}

.dcm-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0 0 15px;
    color: var(--dcm-dark);
}

.dcm-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* ========================================
   Calculator Section
   ======================================== */
.dcm-calculator-section {
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.dcm-quick-calc-card {
    background: white;
    border-radius: var(--dcm-radius);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.dcm-returning-user {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.dcm-welcome-back {
    font-weight: 600;
    color: #2e7d32;
}

.dcm-quick-form {
    margin-bottom: 30px;
}

.dcm-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

@media (max-width: 768px) {
    .dcm-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dcm-form-submit {
        grid-column: span 2;
    }
}

.dcm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.dcm-label-icon {
    margin-right: 5px;
}

.dcm-form-group input,
.dcm-form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: var(--dcm-transition);
}

.dcm-form-group input:focus,
.dcm-form-group select:focus {
    outline: none;
    border-color: var(--dcm-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.dcm-btn-calc {
    height: 52px;
}

/* Calculator Results */
.dcm-calc-results {
    border-top: 1px solid #eee;
    padding-top: 30px;
    animation: fadeUp 0.5s;
}

.dcm-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.dcm-results-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.dcm-result-date {
    background: var(--dcm-light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
}

.dcm-matrix-visual {
    background: var(--dcm-light);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    text-align: center;
}

.dcm-main-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .dcm-main-points {
        grid-template-columns: 1fr;
    }
}

.dcm-point-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: white;
    border: 2px solid #eee;
    transition: var(--dcm-transition);
}

.dcm-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dcm-point-e { border-color: #ffc107; background: #fffbeb; }
.dcm-point-a { border-color: #e91e63; background: #fce4ec; }
.dcm-point-p { border-color: #4caf50; background: #e8f5e9; }

.dcm-point-number {
    font-size: 2rem;
    font-weight: 800;
    min-width: 50px;
    text-align: center;
}

.dcm-point-e .dcm-point-number { color: #f57c00; }
.dcm-point-a .dcm-point-number { color: #c2185b; }
.dcm-point-p .dcm-point-number { color: #388e3c; }

.dcm-point-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
}

.dcm-point-name {
    display: block;
    font-weight: 600;
    color: #333;
}

.dcm-upgrade-prompt {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px dashed var(--dcm-primary);
}

@media (max-width: 600px) {
    .dcm-upgrade-prompt {
        flex-direction: column;
        text-align: center;
    }
}

.dcm-upgrade-icon {
    font-size: 40px;
}

.dcm-upgrade-text {
    flex: 1;
}

.dcm-upgrade-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.dcm-upgrade-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* ========================================
   Features Section
   ======================================== */
.dcm-features-section {
    background: white;
}

.dcm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .dcm-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dcm-features-grid {
        grid-template-columns: 1fr;
    }
}

.dcm-feature-card {
    background: var(--dcm-light);
    padding: 35px;
    border-radius: var(--dcm-radius);
    text-align: center;
    transition: var(--dcm-transition);
}

.dcm-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--dcm-shadow);
    background: white;
}

.dcm-feature-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--dcm-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.dcm-feature-card h3 {
    margin: 0 0 12px;
    font-size: 1.3rem;
}

.dcm-feature-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   Pricing Section
   ======================================== */
.dcm-pricing-section {
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.dcm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1100px) {
    .dcm-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dcm-pricing-grid {
        grid-template-columns: 1fr;
    }
}

.dcm-pricing-card {
    background: white;
    border-radius: var(--dcm-radius);
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: var(--dcm-transition);
    position: relative;
}

.dcm-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--dcm-shadow);
}

.dcm-pricing-popular {
    background: var(--dcm-gradient);
    color: white;
    transform: scale(1.05);
}

.dcm-pricing-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.dcm-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dcm-gradient-gold);
    color: #1a1a2e;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.dcm-pricing-header {
    margin-bottom: 25px;
}

.dcm-pricing-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.dcm-pricing-header h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
}

.dcm-pricing-header p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

.dcm-pricing-price {
    margin-bottom: 20px;
}

.dcm-price-old {
    display: block;
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 14px;
    margin-bottom: 5px;
}

.dcm-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.dcm-price-currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.dcm-savings {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.dcm-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.dcm-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dcm-pricing-popular .dcm-pricing-features li {
    border-color: rgba(255,255,255,0.1);
}

.dcm-check {
    color: var(--dcm-success);
    font-weight: bold;
}

.dcm-pricing-popular .dcm-check {
    color: #fff;
}

.dcm-pricing-card .dcm-btn-order {
    width: 100%;
}

.dcm-pricing-popular .dcm-btn-order {
    background: white;
    color: var(--dcm-primary);
}

.dcm-pricing-popular .dcm-btn-order:hover {
    background: rgba(255,255,255,0.9);
}

/* ========================================
   How It Works Section
   ======================================== */
.dcm-howto-section {
    background: white;
}

.dcm-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dcm-step {
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.dcm-step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--dcm-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.dcm-step-content h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.dcm-step-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.dcm-step-arrow {
    font-size: 24px;
    color: #ccc;
}

@media (max-width: 900px) {
    .dcm-step-arrow {
        display: none;
    }
}

/* ========================================
   CTA Section
   ======================================== */
.dcm-cta-section {
    background: var(--dcm-gradient);
    text-align: center;
}

.dcm-cta-content h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin: 0 0 15px;
}

.dcm-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin: 0 0 30px;
}

.dcm-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================================
   Modal
   ======================================== */
.dcm-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--dcm-transition);
}

.dcm-modal.active {
    opacity: 1;
    visibility: visible;
}

.dcm-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.dcm-modal-content {
    position: relative;
    background: white;
    border-radius: var(--dcm-radius);
    padding: 40px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: var(--dcm-transition);
}

.dcm-modal.active .dcm-modal-content {
    transform: scale(1) translateY(0);
}

.dcm-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--dcm-transition);
}

.dcm-modal-close:hover {
    background: #e0e0e0;
}

.dcm-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.dcm-modal-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.dcm-modal-header h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.dcm-modal-header p {
    margin: 0;
    color: #666;
}

.dcm-order-form .dcm-form-group {
    margin-bottom: 20px;
}

.dcm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dcm-date-row {
    grid-template-columns: repeat(3, 1fr);
}

.dcm-form-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.dcm-form-section h4 {
    margin: 0 0 15px;
    font-size: 1rem;
}

.dcm-order-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.dcm-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.dcm-summary-total {
    border-top: 2px solid #ddd;
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.dcm-form-note {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 15px;
}

/* Success Message */
.dcm-order-success {
    text-align: center;
    padding: 20px;
}

.dcm-success-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.dcm-order-success h3 {
    margin: 0 0 15px;
    color: var(--dcm-success);
}

.dcm-order-success p {
    color: #666;
    margin: 0 0 25px;
}

.dcm-success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Social Share Buttons
   ======================================== */
.dcm-landing .dcm-social-share {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 30px !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.dcm-landing .dcm-share-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
    margin-right: 5px !important;
    background: transparent !important;
    padding: 0 !important;
}

.dcm-landing .dcm-share-btn,
.dcm-landing a.dcm-share-btn,
.dcm-landing button.dcm-share-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 44px !important;
    box-shadow: none !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

.dcm-landing .dcm-share-btn:hover,
.dcm-landing a.dcm-share-btn:hover,
.dcm-landing button.dcm-share-btn:hover {
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    text-decoration: none !important;
}

.dcm-landing .dcm-share-facebook:hover {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
}

.dcm-landing .dcm-share-twitter:hover {
    background: #000 !important;
    border-color: #000 !important;
}

.dcm-landing .dcm-share-whatsapp:hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
}

.dcm-landing .dcm-share-copy:hover {
    background: var(--dcm-gold) !important;
    border-color: var(--dcm-gold) !important;
    color: #1a1a2e !important;
}

.dcm-landing .dcm-share-copy.copied {
    background: var(--dcm-success) !important;
    border-color: var(--dcm-success) !important;
}

.dcm-landing .dcm-share-btn svg {
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
    .dcm-section {
        padding: 60px 0;
    }

    .dcm-quick-calc-card {
        padding: 25px;
    }

    .dcm-modal-content {
        padding: 25px;
    }

    .dcm-landing .dcm-social-share {
        margin-top: 25px !important;
    }

    .dcm-landing .dcm-share-btn,
    .dcm-landing a.dcm-share-btn,
    .dcm-landing button.dcm-share-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        flex: 0 0 40px !important;
    }

    .dcm-landing .dcm-share-label {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 5px !important;
    }
}
