/**
 * Tabaka - Kilo Hesaplayıcı – Modern UI
 * Altabaka  |  Theme: #1e4a4a / #a8c4b8
 */

/* ============================================
   HERO MODERN DIAGONAL DESIGN
   ============================================ */
.ais-hero-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #1e4a4a 0%,
        #1e4a4a 50%,
        #ffffff 50%,
        #ffffff 100%
    );
}

/* Diagonal Image Background */
.hero-diagonal-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 50%;
    z-index: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-diagonal-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-diagonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-diagonal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(30, 74, 74, 0.95) 0%,
        rgba(30, 74, 74, 0.6) 40%,
        rgba(30, 74, 74, 0.3) 70%,
        rgba(30, 74, 74, 0.1) 100%
    );
}

/* Grid Pattern Overlay */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(168, 196, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 196, 184, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    pointer-events: none;
}

/* Accent Line */

/* Hero Content Styling */
.ais-hero-modern > .container {
    position: relative;
    z-index: 4;
}

.ais-hero-modern .ais-hero-wrapper {
    position: relative;
    z-index: 4;
}

.ais-hero-modern .ais-hero-title,
.ais-hero-modern .ais-hero-sub,
.ais-hero-modern .ais-hero-text p {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.ais-hero-modern .ais-hero-star svg path {
    fill: #a8c4b8;
}

.ais-hero-modern .calculator-container {
    position: relative;
    z-index: 5;
}

/* Header White Links (before scroll) */
.tp-header-area:not(.header-sticky) .tp-main-menu nav > ul > li > a {
    color: #ffffff !important;
}

.tp-header-area:not(.header-sticky) .tp-main-menu nav > ul > li > a:hover {
    color: #a8c4b8 !important;
}

.tp-header-area:not(.header-sticky) .tp-header-right-box .tp-header-right a,
.tp-header-area:not(.header-sticky) .tp-header-right-box .tp-header-right span {
    color: #ffffff !important;
}

/* Header Sticky Links (after scroll) */
.tp-header-area.header-sticky {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
}

.tp-header-area.header-sticky .tp-main-menu nav > ul > li > a {
    color: #1e4a4a !important;
}

.tp-header-area.header-sticky .tp-main-menu nav > ul > li > a:hover {
    color: #a8c4b8 !important;
}

.tp-header-area.header-sticky .tp-header-right-box .tp-header-right a,
.tp-header-area.header-sticky .tp-header-right-box .tp-header-right span {
    color: #1e4a4a !important;
}

.tp-header-area.header-sticky .tp-header-btn-box .upd-btn-black-radius {
    background: #1e4a4a !important;
    color: #ffffff !important;
}

/* Large screens - wider image */
@media (min-width: 1400px) {
    .hero-diagonal-bg {
        width: 50%;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    /* .hero-accent-line removed */
}

/* Tablet */
@media (max-width: 1200px) {
    .hero-diagonal-bg {
        width: 50%;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    /* .hero-accent-line removed */
}

/* Mobile */
@media (max-width: 991px) {
    .ais-hero-modern {
        background: linear-gradient(
            180deg,
            #1e4a4a 0%,
            #1e4a4a 40%,
            #ffffff 40%,
            #ffffff 100%
        );
    }
    
    .hero-diagonal-bg {
        width: 100%;
        height: 40%;
        clip-path: none;
    }
    
    .hero-diagonal-overlay {
        background: linear-gradient(
            180deg,
            rgba(30, 74, 74, 0.85) 0%,
            rgba(30, 74, 74, 0.92) 100%
        );
    }
    
    /* .hero-accent-line removed */
    
    .hero-grid-pattern {
        background-size: 40px 40px;
    }
}

/* ============================================
   BODY SCROLL LOCK (offcanvas open)
   ============================================ */
body.offcanvas-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --calc-primary: #1e4a4a;
    --calc-primary-light: #2d5a5a;
    --calc-primary-dark: #163838;
    --calc-accent: #a8c4b8;
    --calc-accent-light: #c5ddd3;
    --calc-accent-dark: #8fb5a5;
    --calc-bg: #ffffff;
    --calc-surface: #f7faf9;
    --calc-border: #e2ece7;
    --calc-text: #1a2e2e;
    --calc-text-secondary: #5a7a7a;
    --calc-text-muted: #8a9e9e;
    --calc-shadow-sm: 0 2px 8px rgba(30, 74, 74, 0.06);
    --calc-shadow-md: 0 8px 32px rgba(30, 74, 74, 0.10);
    --calc-shadow-lg: 0 20px 60px rgba(30, 74, 74, 0.14);
    --calc-shadow-xl: 0 32px 80px rgba(30, 74, 74, 0.18);
    --calc-radius-sm: 10px;
    --calc-radius-md: 16px;
    --calc-radius-lg: 24px;
    --calc-radius-xl: 32px;
    --calc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   CONTAINER
   ============================================ */
.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ============================================
   CARD – Glassmorphism
   ============================================ */
.calculator-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--calc-radius-xl);
    border: 1px solid rgba(168, 196, 184, 0.25);
    box-shadow: var(--calc-shadow-lg);
    overflow: hidden;
    transition: all var(--calc-transition);
}

.calculator-card:hover {
    box-shadow: var(--calc-shadow-xl);
    border-color: rgba(168, 196, 184, 0.45);
}

/* ============================================
   HEADER
   ============================================ */
.calculator-card .calculator-header {
    background: linear-gradient(135deg, var(--calc-primary) 0%, var(--calc-primary-light) 100%);
    padding: 18px 28px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.calculator-card .calculator-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--calc-accent);
    border-radius: 3px 3px 0 0;
    opacity: 0.6;
}

.calculator-card .calculator-header > i {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.calculator-card .calculator-header h5 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.88rem;
}

/* Contact header accent variant */
.contact-header-accent {
    background: linear-gradient(135deg, var(--calc-accent-dark) 0%, var(--calc-accent) 100%) !important;
}

.contact-header-accent h5 {
    color: var(--calc-primary) !important;
}

.contact-header-accent > i {
    color: rgba(30, 74, 74, 0.45) !important;
}

/* ============================================
   BODY
   ============================================ */
.calculator-card .calculator-body {
    padding: 32px;
    background: transparent;
}

/* ============================================
   STEP INDICATORS
   ============================================ */
.calc-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
    padding: 18px 24px;
    background: var(--calc-surface);
    border-radius: var(--calc-radius-md);
    border: 1px solid var(--calc-border);
}

.calc-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    transition: all var(--calc-transition);
}

.calc-step span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--calc-text-muted);
    transition: all var(--calc-transition);
}

.calc-step-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background: var(--calc-border);
    color: var(--calc-text-muted);
    transition: all var(--calc-transition);
}

.calc-step.active {
    background: rgba(30, 74, 74, 0.08);
}

.calc-step.active .calc-step-icon {
    background: linear-gradient(135deg, var(--calc-primary), var(--calc-primary-light));
    color: #fff;
    box-shadow: 0 4px 14px rgba(30, 74, 74, 0.3);
}

.calc-step.active span {
    color: var(--calc-primary);
}

.calc-step-line {
    width: 40px;
    height: 2px;
    background: var(--calc-border);
    margin: 0 6px;
    border-radius: 2px;
    position: relative;
}

/* ============================================
   FORM LAYOUT
   ============================================ */
.calc-form-row {
    gap: 0;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.calc-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--calc-text);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--calc-border);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.calc-section-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--calc-primary), var(--calc-primary-light));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.calc-section-title i {
    color: inherit;
}

/* ============================================
   FORM GROUPS & LABELS
   ============================================ */
.calc-form-group {
    margin-bottom: 20px;
}

.calc-form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--calc-text);
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.calc-label-required {
    color: #e74c3c;
    font-weight: 700;
    font-size: 0.9rem;
}

.calc-label-tag {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 6px;
    background: rgba(168, 196, 184, 0.2);
    color: var(--calc-text-secondary);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ============================================
   INPUTS – Modern style with icons
   ============================================ */
.calc-input-wrapper,
.calc-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.calc-input-icon {
    position: absolute;
    left: 16px;
    color: var(--calc-text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color var(--calc-transition);
    z-index: 1;
}

.calculator-card .calc-input,
.calculator-container .calc-input {
    width: 100%;
    padding: 14px 18px 14px 44px;
    border: 1.5px solid var(--calc-border) !important;
    border-radius: var(--calc-radius-sm) !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--calc-transition);
    background: var(--calc-bg) !important;
    color: var(--calc-text) !important;
    letter-spacing: 0.01em;
}

/* Input without icon */
.calc-form-group > .calc-input {
    padding-left: 18px;
}

.calculator-card .calc-input:hover,
.calculator-container .calc-input:hover {
    border-color: var(--calc-accent) !important;
}

.calculator-card .calc-input:focus,
.calculator-container .calc-input:focus {
    outline: none;
    border-color: var(--calc-primary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(30, 74, 74, 0.08), var(--calc-shadow-sm);
    color: var(--calc-text) !important;
}

/* Icon color on focus */
.calc-input-wrapper:focus-within .calc-input-icon,
.calc-input-group:focus-within .calc-input-icon {
    color: var(--calc-primary);
}

.calculator-card .calc-input::placeholder,
.calculator-container .calc-input::placeholder {
    color: var(--calc-text-muted) !important;
    font-weight: 400;
}

/* Input with unit */
.calculator-card .calc-input-group .calc-input,
.calculator-container .calc-input-group .calc-input {
    padding-right: 72px;
}

.calc-input-unit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--calc-primary);
    font-size: 0.78rem;
    font-weight: 700;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(30, 74, 74, 0.06), rgba(168, 196, 184, 0.15));
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--calc-border);
    letter-spacing: 0.02em;
}

/* ============================================
   DIMENSION ROW (En × Boy)
   ============================================ */
.calc-dims-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.calc-dim-half {
    flex: 1;
}

.calc-dim-x {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 28px;
    color: var(--calc-text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

/* ============================================
   LIVE PREVIEW
   ============================================ */
.calc-live-preview {
    margin-top: 8px;
    border-radius: var(--calc-radius-md);
    overflow: hidden;
    border: 1px solid var(--calc-border);
    background: var(--calc-surface);
    transition: all var(--calc-transition);
}

.calc-live-preview:hover {
    border-color: var(--calc-accent);
}

.calc-live-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--calc-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--calc-border);
    background: rgba(30, 74, 74, 0.03);
}

.calc-live-header i {
    color: var(--calc-accent-dark);
    font-size: 0.75rem;
}

.calc-live-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-live-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-live-item span {
    font-size: 0.82rem;
    color: var(--calc-text-secondary);
}

.calc-live-item strong {
    font-size: 0.88rem;
    color: var(--calc-primary);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* ============================================
   BUTTONS
   ============================================ */
.calc-btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--calc-radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--calc-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.calc-btn-primary {
    background: linear-gradient(135deg, var(--calc-primary) 0%, var(--calc-primary-light) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(30, 74, 74, 0.25);
}

.calc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 74, 74, 0.35);
}

.calc-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(30, 74, 74, 0.3);
}

/* Shine animation */
.calc-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: none;
    pointer-events: none;
}

.calc-btn-primary:hover .calc-btn-shine {
    animation: btnShine 0.6s ease;
}

@keyframes btnShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.calc-btn-secondary {
    background: var(--calc-surface);
    color: var(--calc-text-secondary);
    border: 1.5px solid var(--calc-border);
}

.calc-btn-secondary:hover {
    background: var(--calc-border);
    color: var(--calc-text);
    transform: translateY(-1px);
}

.calc-btn-success {
    background: linear-gradient(135deg, var(--calc-accent) 0%, var(--calc-accent-dark) 100%);
    color: var(--calc-primary);
    font-weight: 700;
}

.calc-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(168, 196, 184, 0.4);
}

.calc-btn-group {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* ============================================
   RESULT CARD
   ============================================ */
.calculator-result-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--calc-radius-xl);
    border: 1px solid rgba(168, 196, 184, 0.25);
    box-shadow: var(--calc-shadow-lg);
    overflow: hidden;
}

.result-header {
    background: linear-gradient(135deg, var(--calc-primary) 0%, var(--calc-primary-light) 100%);
    padding: 18px 28px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.result-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--calc-accent);
    border-radius: 3px 3px 0 0;
    opacity: 0.6;
}

.result-header > i {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.result-header h5 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.result-header-product {
    margin-left: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.result-body {
    padding: 28px;
    background: transparent;
}

/* ============================================
   SUMMARY BOX
   ============================================ */
.calc-summary-box {
    background: var(--calc-surface);
    border-radius: var(--calc-radius-md);
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--calc-border);
}

.calc-summary-box h6 {
    margin: 0 0 16px;
    color: var(--calc-text);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-summary-box h6 i {
    color: var(--calc-primary);
    font-size: 0.85rem;
}

.calc-summary-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.calc-summary-item {
    background: var(--calc-bg);
    padding: 12px 10px;
    border-radius: var(--calc-radius-sm);
    text-align: center;
    border: 1px solid var(--calc-border);
    transition: all var(--calc-transition);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calc-summary-item:hover {
    border-color: var(--calc-accent);
    transform: translateY(-2px);
    box-shadow: var(--calc-shadow-sm);
}

.calc-summary-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(30, 74, 74, 0.08), rgba(168, 196, 184, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2px;
    font-size: 0.7rem;
    color: var(--calc-primary);
}

.calc-summary-item small {
    display: block;
    color: var(--calc-text-muted);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-summary-item strong {
    color: var(--calc-text);
    font-size: 0.9rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* ============================================
   RESULT HIGHLIGHTS – Net & Brüt
   ============================================ */
.result-highlight {
    border-radius: var(--calc-radius-md);
    padding: 24px 20px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--calc-transition);
}

.result-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background: radial-gradient(circle at 30% 30%, #fff 0%, transparent 60%);
    pointer-events: none;
}

.result-highlight:hover {
    transform: translateY(-3px);
}

.result-highlight-net {
    background: linear-gradient(135deg, var(--calc-primary) 0%, var(--calc-primary-light) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(30, 74, 74, 0.25);
}

.result-highlight-net:hover {
    box-shadow: 0 12px 32px rgba(30, 74, 74, 0.35);
}

.result-highlight-brut {
    background: linear-gradient(135deg, var(--calc-accent-dark) 0%, var(--calc-accent) 100%);
    color: var(--calc-primary);
    box-shadow: 0 8px 24px rgba(168, 196, 184, 0.3);
}

.result-highlight-brut:hover {
    box-shadow: 0 12px 32px rgba(168, 196, 184, 0.4);
}

.result-highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1rem;
    position: relative;
}

.result-highlight-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 2px;
    position: relative;
}

.result-highlight-sub {
    font-size: 0.75rem;
    opacity: 0.65;
    margin-bottom: 8px;
    position: relative;
}

.result-highlight-value {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    font-variant-numeric: tabular-nums;
}

.result-highlight-net .result-highlight-label,
.result-highlight-net .result-highlight-sub,
.result-highlight-net .result-highlight-value {
    color: #ffffff;
}

.result-highlight-brut .result-highlight-label,
.result-highlight-brut .result-highlight-sub,
.result-highlight-brut .result-highlight-value {
    color: var(--calc-primary);
}

/* ============================================
   RESULT DETAIL GRID (replaces table)
   ============================================ */
.result-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 8px;
}

.result-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--calc-surface);
    border-radius: var(--calc-radius-sm);
    border: 1px solid var(--calc-border);
    transition: all var(--calc-transition);
}

.result-detail-item:hover {
    border-color: var(--calc-accent);
    background: #fff;
    box-shadow: var(--calc-shadow-sm);
    transform: translateY(-1px);
}

.result-detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--calc-primary), var(--calc-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.result-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.result-detail-info span {
    font-size: 0.78rem;
    color: var(--calc-text-muted);
    font-weight: 500;
}

.result-detail-info strong {
    font-size: 1rem;
    color: var(--calc-primary);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* Keep old result-table hidden in case JS references it */
.result-table { display: none; }

/* ============================================
   CONTACT FORM CARD
   ============================================ */
.contact-form-card {
    display: flex;
    flex-direction: column;
    border-color: rgba(168, 196, 184, 0.3) !important;
}

.contact-form-card .calculator-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-card:hover {
    border-color: var(--calc-accent) !important;
}

.result-contact-wrapper {
    width: 100%;
}

.result-contact-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.result-contact-wrapper .col-lg-7,
.result-contact-wrapper .col-lg-5 {
    padding: 0 10px;
}

.h-100 { height: 100% !important; }
.w-100 { width: 100% !important; }

/* ============================================
   ALERT
   ============================================ */
.calc-alert {
    padding: 14px 18px;
    border-radius: var(--calc-radius-sm);
    margin-bottom: 20px;
    font-size: 0.88rem;
}

.calc-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.calc-alert ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.calc-alert li {
    margin-bottom: 4px;
    color: #dc2626;
}

/* ============================================
   STATUS MODAL
   ============================================ */
.status-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 74, 74, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
}

.status-modal.show {
    display: flex !important;
}

.status-modal-content {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-radius: var(--calc-radius-xl);
    padding: 48px 40px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--calc-shadow-xl);
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 1px solid rgba(168, 196, 184, 0.2);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.status-icon {
    width: 300px;
    min-height: 140px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon .spinner {
    width: 56px;
    height: 56px;
    border: 3px solid var(--calc-border);
    border-top-color: var(--calc-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Truck Loader Styles */
.truck-loader-wrapper {
    width: 280px;
    margin: 0 auto;
}

.truck-loader-wrapper canvas {
    display: block;
    border-radius: 12px;
    margin-bottom: 16px;
}

.delivery-progress {
    height: 6px;
    background: rgba(30, 74, 74, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.delivery-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--calc-primary), var(--calc-accent));
    border-radius: 3px;
    animation: progressFill 2.5s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.status-icon.success {
    background: linear-gradient(135deg, var(--calc-primary), var(--calc-primary-light));
    border-radius: 50%;
}

.status-icon.success i {
    font-size: 36px;
    color: #ffffff;
}

.status-icon.error {
    background: linear-gradient(135deg, #ef4444, #f87171);
    border-radius: 50%;
}

.status-icon.error i {
    font-size: 36px;
    color: #ffffff;
}

.status-modal-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--calc-text);
    margin-bottom: 12px;
}

.status-modal-content p {
    font-size: 0.95rem;
    color: var(--calc-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.status-modal-content .warning-text {
    background: #fffbeb;
    border: 1px solid #fbbf24;
    border-radius: var(--calc-radius-sm);
    padding: 14px;
    font-size: 0.85rem;
    color: #92400e;
    margin: 14px 0 20px;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border: none !important;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--calc-radius-sm);
    cursor: pointer;
    transition: all var(--calc-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calc-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--calc-border), transparent);
    margin: 24px 0;
}

/* ============================================
   HERO SECTION OVERRIDES
   ============================================ */

/* Compact hero padding */
.ais-hero-ptb.pt-120 {
    padding-top: 120px !important;
}

.ais-hero-ptb.pb-60 {
    padding-bottom: 60px !important;
}

/* Stars */
.ais-hero-star {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ais-hero-star svg {
    display: inline-block;
    vertical-align: middle;
}

/* Hero Title */
.ais-hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.18;
    color: #1e4a4a;
    letter-spacing: -0.02em;
}

.ais-hero-title span {
    display: inline !important;
    vertical-align: middle;
    position: relative;
}

.ais-hero-title span img {
    display: inline-block !important;
    vertical-align: middle;
    width: 32px;
    height: auto;
    margin: 0 4px;
}

.ais-hero-title br {
    display: block;
}

/* Hero text */
.ais-hero-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a7a7a;
}

/* Thumb shapes hidden (calculator area) */
.ais-hero-thumb .ais-hero-thumb-shapes {
    display: none !important;
}

/* ============================================
   HERO FLOATING BADGES – Professional Animation
   ============================================ */
.ais-hero-shapes {
    pointer-events: none;
    z-index: 10;
}

.ais-hero-shapes img {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

/* shape-1: 36K+ müşteri badge - sağ üst */
.ais-hero-shapes .shape-1 {
    position: absolute;
    top: 20px;
    right: 8%;
    animation: badgeFloat1 8s ease-in-out infinite;
    max-width: 180px;
}

/* shape-2: Hızlı Hesap badge - sol alt */
.ais-hero-shapes .shape-2 {
    position: absolute;
    top: 40%;
    left: 3%;
    animation: badgeFloat2 7s ease-in-out infinite;
    max-width: 160px;
}

/* shape-3: Uygun Fiyat badge - sağ alt */
.ais-hero-shapes .shape-3 {
    position: absolute;
    top: 55%;
    right: 5%;
    animation: badgeFloat3 9s ease-in-out infinite;
    max-width: 170px;
}

/* Smooth floating animations */
@keyframes badgeFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-12px) rotate(1deg); }
}

@keyframes badgeFloat2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    33%      { transform: translateY(-8px) translateX(5px); }
    66%      { transform: translateY(5px) translateX(-3px); }
}

@keyframes badgeFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25%      { transform: translateY(-6px) rotate(-0.5deg); }
    50%      { transform: translateY(-10px) rotate(0.5deg); }
    75%      { transform: translateY(-4px) rotate(-0.5deg); }
}

/* Tablet */
@media (max-width: 1200px) {
    .ais-hero-shapes .shape-1 {
        right: 3%;
        max-width: 150px;
    }
    .ais-hero-shapes .shape-2 {
        left: 2%;
        max-width: 140px;
    }
    .ais-hero-shapes .shape-3 {
        right: 2%;
        max-width: 140px;
    }
}

/* Mobile - hide badges */
@media (max-width: 991px) {
    .ais-hero-shapes {
        display: none;
    }
}

/* Header compact */
.tp-header-lg-spacing {
    padding: 6px 0 !important;
}

img.logo-img {
    width: 110px !important;
    height: auto !important;
    padding: 0 !important;
    transition: all 0.3s ease;
}

/* ============================================
   TESTIMONIAL OVERRIDES
   ============================================ */
.ais-section-subtitle {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
}

.ais-section-subtitle svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.app-testimonial-heading .ais-section-subtitle {
    display: inline-flex !important;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.app-testimonial-item-star {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 3px;
    line-height: 1;
}

.app-testimonial-item-star span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.app-testimonial-item-star span svg {
    display: inline-block !important;
    vertical-align: middle;
}

/* ============================================
   CONTACT PAGE INPUT OVERRIDES
   ============================================ */
.tp-contact-form .tp-postbox-details-input input,
.tp-contact-form .tp-postbox-details-input textarea {
    color: #000000 !important;
    background-color: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
}

.tp-contact-form .tp-postbox-details-input input:focus,
.tp-contact-form .tp-postbox-details-input textarea:focus {
    color: #000000 !important;
    background-color: #ffffff !important;
    border-color: #1e4a4a !important;
    box-shadow: 0 0 0 3px rgba(30, 74, 74, 0.15);
}

.tp-contact-form .tp-postbox-details-input input::placeholder,
.tp-contact-form .tp-postbox-details-input textarea::placeholder {
    color: #999999 !important;
}

.tp-contact-form .tp-postbox-details-input input:-webkit-autofill,
.tp-contact-form .tp-postbox-details-input input:-webkit-autofill:hover,
.tp-contact-form .tp-postbox-details-input input:-webkit-autofill:focus,
.tp-contact-form .tp-postbox-details-input textarea:-webkit-autofill {
    -webkit-text-fill-color: #000000 !important;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    box-shadow: 0 0 0px 1000px #ffffff inset !important;
    background-color: #ffffff !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .ais-hero-title {
        font-size: 38px;
    }

    .ais-hero-ptb.pt-120 {
        padding-top: 100px !important;
    }

    img.logo-img {
        width: 100px !important;
    }

    .result-contact-wrapper .col-lg-7,
    .result-contact-wrapper .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .calc-summary-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .result-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 10px;
    }

    .calculator-card .calculator-body {
        padding: 20px 16px;
    }

    .calculator-card .calculator-header {
        padding: 14px 16px;
    }

    .calculator-card .calculator-header h5 {
        font-size: 0.82rem;
    }

    .calc-steps {
        padding: 14px 16px;
        gap: 0;
        overflow-x: auto;
    }

    .calc-step span {
        display: none;
    }

    .calc-step-line {
        width: 24px;
    }

    .calc-dims-row {
        flex-direction: column;
        gap: 0;
    }

    .calc-dim-x {
        padding-bottom: 0;
        padding-top: 0;
        display: none;
    }

    .calc-dim-half {
        width: 100%;
    }

    .calc-btn-group {
        flex-direction: column;
    }

    .calc-btn {
        width: 100%;
        justify-content: center;
    }

    .result-highlight-value {
        font-size: 1.8rem;
    }

    .calc-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-detail-grid {
        grid-template-columns: 1fr;
    }

    .result-detail-item {
        padding: 14px;
    }

    .result-body {
        padding: 20px 16px;
    }
}

@media (max-width: 767px) {
    .ais-hero-star svg {
        width: 12px;
        height: 12px;
    }

    .ais-hero-title {
        font-size: 28px;
    }

    .ais-hero-ptb.pt-120 {
        padding-top: 85px !important;
    }

    .ais-hero-ptb.pb-60 {
        padding-bottom: 40px !important;
    }

    .ais-hero-title span,
    .ais-hero-title br {
        display: none !important;
    }

    .ais-hero-shapes {
        display: none !important;
    }

    img.logo-img {
        width: 90px !important;
    }
}

@media (max-width: 480px) {
    .calculator-card .calculator-header h5 {
        font-size: 0.78rem;
        letter-spacing: 0.01em;
    }

    .ais-hero-title {
        font-size: 24px;
    }

    img.logo-img {
        width: 80px !important;
    }

    .calc-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calc-summary-item:last-child {
        grid-column: span 2;
    }
}


/* ============================================
   OFFCANVAS SIDEBAR – Modern UI Override
   ============================================ */

/* --- Panel Base --- */
.tp-offcanvas {
    background: linear-gradient(170deg, #f7faf9 0%, #eaf2ee 100%) !important;
    border-left: 1px solid rgba(168, 196, 184, 0.25);
    box-shadow: -12px 0 60px rgba(30, 74, 74, 0.18) !important;
    padding: 32px 36px !important;
    width: 380px !important;
}

@media (max-width: 574.98px) {
    .tp-offcanvas {
        width: 100% !important;
        padding: 28px 24px !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-offcanvas {
        width: 380px !important;
        padding: 32px 30px !important;
    }
}

/* --- Top Bar (logo + close) --- */
.tp-offcanvas-top {
    margin-bottom: 40px !important;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(168, 196, 184, 0.3);
}

.tp-offcanvas-top .tp-offcanvas-logo img {
    width: 110px !important;
    filter: brightness(0.95);
}

.tp-offcanvas-close-btn button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(30, 74, 74, 0.06);
    border: 1px solid rgba(30, 74, 74, 0.08);
    color: var(--calc-primary) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-offcanvas-close-btn button:hover {
    background: var(--calc-primary) !important;
    color: #fff !important;
    border-color: var(--calc-primary) !important;
    transform: rotate(90deg);
}

.tp-offcanvas-close-btn button svg {
    width: 20px;
    height: 20px;
}

/* --- Welcome Content (desktop xl) --- */
.tp-offcanvas-content {
    margin-bottom: 32px !important;
}

.tp-offcanvas-content h3.tp-offcanvas-title {
    font-size: 26px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    color: var(--calc-primary) !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.tp-offcanvas-content p {
    font-size: 14px !important;
    color: var(--calc-text-secondary) !important;
    line-height: 1.5 !important;
}

/* --- Mobile Menu (cloned nav) --- */
.tp-offcanvas-menu {
    margin-bottom: 32px;
}

.tp-offcanvas-menu > nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-offcanvas-menu > nav > ul > li {
    margin-bottom: 2px;
}

.tp-offcanvas-menu > nav > ul > li > a {
    display: flex;
    align-items: center;
    padding: 14px 18px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--calc-primary) !important;
    text-decoration: none !important;
    border-radius: 14px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
}

.tp-offcanvas-menu > nav > ul > li > a::before {
    content: '';
    position: absolute;
    left: 18px;
    bottom: -1px;
    width: 0;
    height: 0;
    background: none;
}

.tp-offcanvas-menu > nav > ul > li > a::after {
    display: none !important;
}

.tp-offcanvas-menu > nav > ul > li > a:hover {
    background: rgba(30, 74, 74, 0.06);
    border-color: rgba(168, 196, 184, 0.3);
    color: var(--calc-primary) !important;
    padding-left: 24px !important;
}

.tp-offcanvas-menu > nav > ul > li > a:hover::before {
    display: none;
}

.tp-offcanvas-menu > nav > ul > li.active > a,
.tp-offcanvas-menu > nav > ul > li.current > a {
    background: var(--calc-primary);
    color: #fff !important;
    border-color: var(--calc-primary);
    box-shadow: 0 4px 16px rgba(30, 74, 74, 0.2);
}

/* --- Section Divider --- */
.tp-offcanvas-contact,
.tp-offcanvas-social {
    position: relative;
}

.tp-offcanvas-contact::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 196, 184, 0.4), transparent);
}

/* --- Contact Section --- */
.tp-offcanvas-contact {
    margin-bottom: 28px !important;
    padding-top: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 24px 20px 20px 20px;
    border: 1px solid rgba(168, 196, 184, 0.2);
}

.tp-offcanvas-contact h3.tp-offcanvas-title.sm {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: var(--calc-text-muted) !important;
    margin-bottom: 14px !important;
    position: relative;
    padding-bottom: 10px;
}

.tp-offcanvas-contact h3.tp-offcanvas-title.sm::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--calc-accent);
    border-radius: 2px;
}

.tp-offcanvas-contact ul {
    padding: 0;
    margin: 0;
}

.tp-offcanvas-contact ul li {
    list-style: none !important;
    margin-bottom: 6px !important;
}

.tp-offcanvas-contact ul li:not(:last-child) {
    margin-bottom: 6px !important;
}

.tp-offcanvas-contact ul li a {
    font-size: 14px !important;
    color: var(--calc-text) !important;
    font-weight: 500 !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
    padding: 4px 0;
}

.tp-offcanvas-contact ul li a::after {
    display: none !important;
}

.tp-offcanvas-contact ul li a:hover {
    color: var(--calc-primary) !important;
    transform: translateX(4px);
}

/* --- Social Section --- */
.tp-offcanvas-social {
    margin-top: 0 !important;
    padding-top: 20px;
}

.tp-offcanvas-social::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 196, 184, 0.4), transparent);
}

.tp-offcanvas-social h3.tp-offcanvas-title.sm {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: var(--calc-text-muted) !important;
    margin-bottom: 14px !important;
    position: relative;
    padding-bottom: 10px;
}

.tp-offcanvas-social h3.tp-offcanvas-title.sm::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--calc-accent);
    border-radius: 2px;
}

.tp-offcanvas-social ul {
    gap: 8px;
}

.tp-offcanvas-social ul li a {
    width: 42px !important;
    height: 42px !important;
    line-height: 42px !important;
    border-radius: 14px !important;
    background: rgba(30, 74, 74, 0.05) !important;
    border: 1px solid rgba(30, 74, 74, 0.08) !important;
    color: var(--calc-primary) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tp-offcanvas-social ul li a:hover {
    background: var(--calc-primary) !important;
    border-color: var(--calc-primary) !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 74, 74, 0.25);
}

.tp-offcanvas-social ul li:not(:last-child) {
    margin-right: 0 !important;
}

/* --- Body Overlay --- */
.body-overlay.opened {
    background: rgba(30, 74, 74, 0.35) !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* --- Scrollbar inside offcanvas --- */
.tp-offcanvas::-webkit-scrollbar {
    width: 4px;
}

.tp-offcanvas::-webkit-scrollbar-track {
    background: transparent;
}

.tp-offcanvas::-webkit-scrollbar-thumb {
    background: rgba(168, 196, 184, 0.4);
    border-radius: 4px;
}

.tp-offcanvas::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 196, 184, 0.6);
}


/* ============================================
   FOOTER – Modern UI Override (White Theme)
   ============================================ */

/* --- Footer Base --- */
.ais-footer-style.crp-footer-area {
    background: #ffffff !important;
    padding-top: 72px !important;
    position: relative;
    overflow: hidden;
}

.ais-footer-style.crp-footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 74, 74, 0.12), transparent);
}

.ais-footer-style.crp-footer-area::after {
    display: none;
}

/* --- Footer Logo --- */
.ais-footer-style .crp-footer-logo {
    margin-bottom: 16px !important;
}

.ais-footer-style .crp-footer-logo img {
    transition: all 0.3s ease;
    filter: none;
}

.ais-footer-style .crp-footer-logo img:hover {
    transform: scale(1.02);
    filter: none;
}

/* --- Footer Description --- */
.ais-footer-style .crp-footer-widget p {
    color: #7a8a8a !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
    max-width: 300px;
}

/* --- Footer Social Icons --- */
.ais-footer-style .crp-footer-social {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.ais-footer-style .crp-footer-social a {
    width: 38px !important;
    height: 38px !important;
    line-height: 1 !important;
    border-radius: 10px !important;
    background: rgba(30, 74, 74, 0.04) !important;
    border: 1px solid rgba(30, 74, 74, 0.1) !important;
    color: var(--calc-primary) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin: 0 !important;
}

.ais-footer-style .crp-footer-social a:not(:last-child) {
    margin-right: 0 !important;
}

.ais-footer-style .crp-footer-social a:hover {
    background: var(--calc-primary) !important;
    border-color: var(--calc-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(30, 74, 74, 0.18);
}

.ais-footer-style .crp-footer-social a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* --- Widget Titles --- */
.ais-footer-style .crp-footer-widget-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: var(--calc-primary) !important;
    margin-bottom: 22px !important;
    position: relative;
    padding-bottom: 12px;
    opacity: 0.5;
}

.ais-footer-style .crp-footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--calc-accent);
    border-radius: 2px;
}

/* --- Footer Menu (2-column grid) --- */
.ais-footer-style .crp-footer-menu-grid ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 4px 28px;
    padding: 0;
    margin: 0;
}

.ais-footer-style .crp-footer-widget-menu ul li {
    list-style: none !important;
}

.ais-footer-style .crp-footer-widget-menu ul li:not(:last-child) {
    margin-bottom: 0 !important;
}

.ais-footer-style .crp-footer-widget-menu ul li a {
    color: #6a7a7a !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0;
    padding: 5px 0 !important;
    text-decoration: none !important;
    border: none !important;
    background-image: none !important;
}

.ais-footer-style .crp-footer-widget-menu ul li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--calc-primary);
    transition: width 0.3s ease, margin 0.3s ease;
    flex-shrink: 0;
    margin-right: 0;
}

.ais-footer-style .crp-footer-widget-menu ul li a::after {
    display: none !important;
}

.ais-footer-style .crp-footer-widget-menu ul li a:hover {
    color: var(--calc-primary) !important;
    transform: translateX(4px);
}

.ais-footer-style .crp-footer-widget-menu ul li a:hover::before {
    width: 12px;
    margin-right: 8px;
}

/* --- Contact List (icon + text rows) --- */
.crp-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.crp-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.crp-footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(30, 74, 74, 0.04);
    border: 1px solid rgba(30, 74, 74, 0.08);
    color: var(--calc-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.crp-footer-contact-text {
    min-width: 0;
}

.crp-footer-contact-text a {
    color: #6a7a7a !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
    transition: color 0.25s ease !important;
    text-decoration: none !important;
    border: none !important;
    background-image: none !important;
}

.crp-footer-contact-text a:hover {
    color: var(--calc-primary) !important;
}

.crp-footer-contact-text a strong {
    display: block;
    color: var(--calc-text);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 1px;
}

.crp-footer-contact-text a.tel {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--calc-primary) !important;
    letter-spacing: -0.02em;
}

.crp-footer-contact-text a.tel:hover {
    color: var(--calc-primary-light) !important;
}

/* --- Copyright Bar --- */
.ais-footer-copyright {
    border-top: 1px solid rgba(30, 74, 74, 0.06) !important;
    margin-top: 4px;
}

.ais-footer-copyright p {
    color: #a0aaaa !important;
    font-size: 13px !important;
    letter-spacing: 0.01em;
}

.ais-footer-copyright p a span {
    color: var(--calc-primary) !important;
    font-weight: 600;
    transition: color 0.25s ease;
}

.ais-footer-copyright p a span:hover {
    color: var(--calc-primary-light) !important;
}

/* --- Footer Widget Spacing --- */
.ais-footer-style .crp-footer-widget {
    margin-bottom: 44px !important;
}

/* --- Footer Responsive --- */
@media (max-width: 991px) {
    .ais-footer-style .crp-footer-menu-grid ul {
        grid-template-columns: 1fr 1fr;
        gap: 2px 20px;
    }
}

@media (max-width: 767px) {
    .ais-footer-style.crp-footer-area {
        padding-top: 48px !important;
        padding-bottom: 0 !important;
    }

    .ais-footer-style .crp-footer-widget {
        margin-bottom: 32px !important;
    }

    .ais-footer-style .crp-footer-widget-title {
        margin-bottom: 16px !important;
    }

    /* Mobile: stack columns neatly */
    .ais-footer-style .crp-footer-col-1 {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ais-footer-style .crp-footer-col-1 p {
        max-width: 260px;
    }

    .ais-footer-style .crp-footer-col-1 .crp-footer-social {
        justify-content: center !important;
    }

    /* Mobile: Quick links stay 2-col grid */
    .ais-footer-style .crp-footer-menu-grid ul {
        grid-template-columns: 1fr 1fr;
        gap: 2px 16px;
    }

    /* Mobile: Contact items compact */
    .crp-footer-contact-list {
        gap: 14px;
    }

    .crp-footer-contact-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 8px;
    }

    .crp-footer-contact-text a.tel {
        font-size: 16px !important;
    }

    .ais-footer-copyright {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .ais-footer-style.crp-footer-area {
        padding-top: 40px !important;
    }

    .ais-footer-style .crp-footer-widget {
        margin-bottom: 28px !important;
    }

    .ais-footer-style .crp-footer-menu-grid ul {
        grid-template-columns: 1fr 1fr;
        gap: 0 12px;
    }
}


/* ============================================
   CALCULATOR V2 – NEW COMPONENTS
   ============================================ */

/* --- Select Dropdown --- */
.calc-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e4a4a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px !important;
    cursor: pointer;
}

.calc-select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* --- Tooltip --- */
.calc-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    cursor: help;
    color: var(--calc-primary);
}

.calc-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    background: var(--calc-primary);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    white-space: normal;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.calc-tooltip::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(100% + 2px);
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--calc-primary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 101;
}

.calc-tooltip:hover::after,
.calc-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

/* --- Order Cart (Sidebar) --- */
.calc-order-cart {
    background: linear-gradient(135deg, #f8faf9 0%, #f0f5f2 100%);
    border-radius: var(--calc-radius-lg);
    border: 1px solid rgba(168, 196, 184, 0.3);
    padding: 16px;
    margin-top: 16px;
}

.calc-cart-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(168, 196, 184, 0.25);
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--calc-primary);
}

.calc-cart-badge {
    background: var(--calc-accent);
    color: var(--calc-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: auto;
}

.calc-cart-items {
    max-height: 180px;
    overflow-y: auto;
}

.calc-cart-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(168, 196, 184, 0.25);
}

.calc-cart-item:last-child {
    border-bottom: none;
}

.calc-cart-item-info {
    flex: 1;
}

.calc-cart-item-info strong {
    display: block;
    font-size: 13px;
    color: var(--calc-primary);
    margin-bottom: 2px;
}

.calc-cart-item-info small {
    display: block;
    font-size: 11px;
    color: #666;
}

.calc-cart-item-weight {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--calc-accent-dark);
    margin-top: 4px;
}

.calc-cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.calc-cart-item-remove:hover {
    opacity: 1;
}

.calc-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid rgba(168, 196, 184, 0.3);
    font-weight: 600;
    color: var(--calc-primary);
}

/* --- Order Summary (Result Page) --- */
.calc-order-summary {
    margin-bottom: 20px;
}

.calc-order-item {
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    border: 1px solid rgba(168, 196, 184, 0.25);
    border-radius: var(--calc-radius-md);
    padding: 16px;
    margin-bottom: 12px;
}

.calc-order-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(168, 196, 184, 0.25);
}

.calc-order-item-num {
    width: 24px;
    height: 24px;
    background: var(--calc-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.calc-order-item-header strong {
    color: var(--calc-primary);
    font-size: 15px;
    flex: 1;
}

.calc-order-item-remove {
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.calc-order-item-remove:hover {
    background: #dc3545;
    color: white;
    opacity: 1;
    transform: scale(1.05);
}

.calc-order-item-remove i {
    font-size: 12px;
}

.calc-order-item-details {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.calc-order-detail {
    text-align: center;
}

.calc-order-detail small {
    display: block;
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.calc-order-detail span {
    font-size: 13px;
    font-weight: 600;
    color: var(--calc-primary);
}

.calc-order-detail-price span {
    color: var(--calc-accent-dark);
}

/* --- Order Total --- */
.calc-order-total {
    background: linear-gradient(135deg, var(--calc-primary) 0%, var(--calc-primary-light) 100%);
    border-radius: var(--calc-radius-md);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.calc-order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.calc-order-total-row strong {
    color: white;
    font-size: 16px;
}

.calc-order-total-price {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.calc-order-total-price strong {
    font-size: 22px;
}

/* --- Form Note --- */
.calc-form-note {
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    border-radius: var(--calc-radius-sm);
    padding: 10px 14px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-form-note i {
    color: var(--calc-primary);
}

/* --- Thank You Card --- */
.thank-you-card {
    text-align: center;
    padding: 60px 40px !important;
}

.thank-you-content {
    max-width: 500px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(40, 167, 69, 0.3);
}

.thank-you-icon i {
    font-size: 48px;
    color: white;
}

.thank-you-content h3 {
    font-size: 28px;
    color: var(--calc-primary);
    margin-bottom: 12px;
}

.thank-you-content > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.thank-you-summary {
    background: #f8f9fa;
    border-radius: var(--calc-radius-md);
    padding: 20px;
    margin-bottom: 32px;
}

.thank-you-summary-content p {
    margin: 8px 0;
    color: var(--calc-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.thank-you-summary-content p strong {
    font-size: 18px;
}

.thank-you-summary-content p i {
    color: var(--calc-accent-dark);
}

.thank-you-summary-content .thank-you-reference {
    background: var(--calc-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 1px;
}

.thank-you-buttons {
    justify-content: center;
}

/* --- WhatsApp Button --- */
.calc-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--calc-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.calc-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.calc-btn-whatsapp i {
    font-size: 20px;
}

/* --- Alert Success --- */
.calc-alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    color: #155724;
    padding: 12px 16px;
    border-radius: var(--calc-radius-md);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.calc-alert-success i {
    color: #28a745;
    font-size: 18px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Responsive for New Components --- */
@media (max-width: 768px) {
    .calc-order-item-details {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .calc-order-detail-price {
        grid-column: span 3;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px dashed rgba(168, 196, 184, 0.25);
    }
    
    .thank-you-card {
        padding: 40px 20px !important;
    }
    
    .thank-you-content h3 {
        font-size: 22px;
    }
    
    .thank-you-buttons {
        flex-direction: column;
    }
    
    .calc-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calc-order-item-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calc-order-detail-price {
        grid-column: span 2;
    }
    
    .calc-tooltip::after {
        width: 200px;
        left: 0;
        transform: none;
    }
}

/* ============================================
   INPUT ERROR & FORM VALIDATION STYLES
   ============================================ */
.calc-input-error {
    border-color: #dc2626 !important;
    background-color: #fef2f2 !important;
    animation: inputShake 0.4s ease-in-out;
}

.calc-input-error:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

/* Contact form error message */
.contact-form-error {
    margin-bottom: 16px;
    animation: fadeInDown 0.3s ease-out;
}

/* Shake animation for contact card */
.shake-animation {
    animation: cardShake 0.5s ease-in-out;
}

@keyframes inputShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

@keyframes cardShake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-8px); }
    30% { transform: translateX(8px); }
    50% { transform: translateX(-6px); }
    70% { transform: translateX(6px); }
    90% { transform: translateX(-3px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   DELIVERY TRUCK BADGE ANIMATION
   ============================================ */
.delivery-truck-badge {
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.delivery-truck-badge canvas {
    display: block;
    background: transparent;
}

/* Soft hover efekti */
.ais-exp-shape-3 .delivery-truck-badge {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ais-exp-shape-3:hover .delivery-truck-badge {
    opacity: 1;
    transform: scale(1.02);
}

/* ============================================
   BOX ANIMATION WRAPPER
   ============================================ */
.box-animation-wrapper {
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.box-animation-wrapper canvas {
    display: block;
    background: transparent;
}

.ais-feature-shape .box-animation-wrapper {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ais-feature-shape:hover .box-animation-wrapper {
    opacity: 1;
    transform: scale(1.02);
}
