/**
 * TransferTech Theme Styles
 * Matches the original HTML styling exactly
 */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    background: #f8f9fa;
    color: #1a1a2e;
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; }

p {
    color: #2d4059;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -0.5rem auto 2.5rem;
    color: #4a5f7a;
    font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.25);
}
.btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.35);
}
.btn-green {
    background: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.25);
}
.btn-green:hover {
    background: #218838;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.35);
}
.btn-outline {
    background: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
    box-shadow: none;
}
.btn-outline:hover {
    background: #dc3545;
    color: #fff;
}
.btn-small {
    padding: 6px 20px;
    font-size: 0.85rem;
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}
.btn-small:hover {
    background: #dc3545;
    color: #fff;
}

/* ===== HEADER / NAV ===== */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-block img {
    height: 48px;
    width: auto;
    display: block;
}
.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a2a3a;
}
.brand {
    font-weight: 700;
    background: linear-gradient(135deg, #dc3545, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1a2a3a;
    cursor: pointer;
    padding: 4px 8px;
    z-index: 1002;
}
.nav-toggle:hover {
    color: #dc3545;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links a {
    text-decoration: none;
    color: #1a2a3a;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover {
    color: #dc3545;
    border-bottom-color: #dc3545;
}
.nav-links .btn {
    padding: 6px 22px;
    font-size: 0.85rem;
    border-bottom: none;
}
.nav-links .btn:hover {
    border-bottom: none;
    transform: translateY(-2px);
}

.lang-selector {
    position: relative;
    display: inline-block;
}
.lang-selector select {
    padding: 6px 12px 6px 30px;
    border-radius: 30px;
    border: 1px solid #e9ecef;
    background: #f8faff;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a2a3a;
    cursor: pointer;
    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='%231a2a3a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.lang-selector select:focus {
    outline: none;
    border-color: #dc3545;
}
.lang-selector .globe-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c7a8e;
    font-size: 0.85rem;
    pointer-events: none;
}
.nav-close-btn {
    display: none;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-overlay.active {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 18px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 30px rgba(0,0,0,0.12);
        z-index: 1001;
        overflow-y: auto;
        border-radius: 0;
        flex-wrap: nowrap;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 10px 0;
        border-bottom: none;
        font-size: 1.05rem;
        width: 100%;
    }
    .nav-links .btn {
        display: inline-block;
        width: auto;
        padding: 10px 36px;
        margin-top: 4px;
    }
    .lang-selector {
        margin-top: 8px;
        width: 100%;
        max-width: 160px;
    }
    .lang-selector select {
        width: 100%;
        padding: 10px 16px 10px 34px;
        font-size: 0.95rem;
    }
    .nav-close-btn {
        display: block;
        position: absolute;
        top: 18px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #1a2a3a;
        cursor: pointer;
        transition: color 0.2s;
        padding: 4px;
    }
    .nav-close-btn:hover {
        color: #dc3545;
    }
}

/* ===== SLIDER REVOLUTION STYLES (matching HTML exactly) ===== */
.slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    max-height: 800px;
    min-height: 480px;
    overflow: hidden;
    background: #0b1a2e;
}

.slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    background-size: cover;
    background-position: center;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slide backgrounds */
.slide-1 {
    background: linear-gradient(135deg, #0b1a2e 0%, #1a2a3a 50%, #2a3a4a 100%);
}
.slide-2 {
    background: linear-gradient(135deg, #1a0a2e 0%, #2a1a3a 50%, #3a2a4a 100%);
}
.slide-3 {
    background: linear-gradient(135deg, #0a1a2e 0%, #0a2a2a 50%, #0a3a2a 100%);
}
.slide-4 {
    background: linear-gradient(135deg, #1a0a1a 0%, #2a1a2a 50%, #3a0a2a 100%);
}
.slide-5 {
    background: linear-gradient(135deg, #0a1a2a 0%, #0a2a3a 50%, #0a1a4a 100%);
}
.slide-6 {
    background: linear-gradient(135deg, #1a1a0a 0%, #2a2a1a 50%, #3a2a0a 100%);
}

/* Slide content */
.slide-content {
    max-width: 820px;
    color: #fff;
    z-index: 2;
    position: relative;
    padding: 20px;
}

.slide-content .slide-label {
    display: inline-block;
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    padding: 6px 24px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ff6b7a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    animation: fadeUp 0.8s ease forwards;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.slide-content h1 .highlight-red {
    color: #dc3545;
}
.slide-content h1 .highlight-green {
    color: #5ddb7a;
}
.slide-content h1 .highlight-purple {
    color: #a78bfa;
}
.slide-content h1 .highlight-cyan {
    color: #67e8f9;
}
.slide-content h1 .highlight-yellow {
    color: #fcd34d;
}

.slide-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto 28px;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.slide-content .slide-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.slide-content .slide-buttons .btn {
    padding: 14px 38px;
    font-size: 1.05rem;
}

.slide-content .slide-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    box-shadow: none;
}
.slide-content .slide-buttons .btn-outline-light:hover {
    background: #fff;
    color: #0b1a2e;
    border-color: #fff;
}

/* Slide overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

/* Slide decorative shapes */
.slide-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}
.slide-shape-1 {
    width: 600px;
    height: 600px;
    background: #dc3545;
    top: -200px;
    right: -100px;
}
.slide-shape-2 {
    width: 400px;
    height: 400px;
    background: #28a745;
    bottom: -100px;
    left: -100px;
}
.slide-shape-3 {
    width: 300px;
    height: 300px;
    background: #a78bfa;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slide-shape-4 {
    width: 500px;
    height: 500px;
    background: #67e8f9;
    bottom: -150px;
    right: -50px;
}
.slide-shape-5 {
    width: 350px;
    height: 350px;
    background: #fcd34d;
    top: -100px;
    left: -50px;
}
.slide-shape-6 {
    width: 450px;
    height: 450px;
    background: #f472b6;
    bottom: -100px;
    right: -100px;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: #dc3545;
    border-color: #fff;
    transform: scale(1.2);
}
.slider-dot:hover {
    background: rgba(255,255,255,0.6);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}
.slider-arrows button {
    pointer-events: auto;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrows button:hover {
    background: rgba(220, 53, 69, 0.6);
    border-color: #dc3545;
    transform: scale(1.05);
}

/* Responsive slider */
@media (max-width: 992px) {
    .slider-container { height: 70vh; min-height: 420px; }
    .slide-content h1 { font-size: 3rem; }
    .slide-content p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .slider-container { height: 60vh; min-height: 380px; }
    .slide-content h1 { font-size: 2.2rem; }
    .slide-content p { font-size: 1rem; }
    .slider-arrows { display: none; }
    .slider-controls { bottom: 24px; gap: 10px; }
    .slider-dot { width: 12px; height: 12px; }
}

@media (max-width: 480px) {
    .slider-container { height: 70vh; min-height: 400px; }
    .slide-content h1 { font-size: 1.8rem; }
    .slide-content .slide-buttons .btn { 
        padding: 10px 24px; 
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    .slide-content .slide-buttons { flex-direction: column; align-items: center; }
    .slider-controls { bottom: 16px; }
}

/* ===== SERVICES ===== */
.services {
    padding: 80px 0;
    background: #ffffff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.service-card {
    background: #f8faff;
    padding: 35px 28px 30px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    transition: 0.3s ease;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: #dc3545;
    box-shadow: 0 12px 30px -8px rgba(220, 53, 69, 0.08);
}
.service-card .icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 14px;
}
.service-card h3 {
    color: #0b1a2e;
    font-size: 1.3rem;
}
.service-card p {
    font-size: 0.95rem;
    color: #4a5f7a;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #f8f9fa;
    padding: 70px 0;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.testimonial-item {
    background: #fff;
    padding: 28px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    border-left: 4px solid #28a745;
}
.testimonial-item .quote {
    font-style: italic;
    color: #1f3347;
    font-size: 1rem;
}
.testimonial-item .author {
    font-weight: 600;
    color: #0b1a2e;
    margin-top: 12px;
    display: block;
    font-size: 0.95rem;
}
.testimonial-item .rating {
    margin-top: 8px;
    color: #fcd34d;
    font-size: 1.1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0b1a2e 0%, #1a2a3a 100%);
    color: #fff;
    text-align: center;
}
.cta-section h2 { color: #fff; }
.cta-section .highlight-red { color: #ff6b7a; }
.cta-section .highlight-green { color: #5ddb7a; }
.cta-section p { color: #b6c9dd; max-width: 600px; margin: 0 auto 1.5rem; }
.cta-section .cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
}
.cta-section input {
    flex: 1;
    min-width: 200px;
    padding: 14px 24px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 1rem;
}
.cta-note {
    font-size: 0.85rem;
    margin-top: 18px;
    opacity: 0.7;
}

/* ===== PRICING ===== */
.pricing-section {
    padding: 60px 0 80px;
    background: #ffffff;
}
.pricing-category {
    margin-bottom: 50px;
    scroll-margin-top: 80px;
}
.pricing-category:last-child {
    margin-bottom: 0;
}
.pricing-category h2 {
    text-align: left;
    font-size: 1.8rem;
    color: #0b1a2e;
    border-bottom: 3px solid #dc3545;
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: inline-block;
}
.pricing-category h2 .highlight-green {
    color: #28a745;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.pricing-card {
    background: #f8faff;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    padding: 30px 25px;
    transition: 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: #dc3545;
    box-shadow: 0 12px 30px -8px rgba(220, 53, 69, 0.08);
}
.pricing-card.popular {
    border-color: #28a745;
    background: #f8fff8;
}
.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #28a745;
    color: #fff;
    padding: 2px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-card .plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b1a2e;
    margin-bottom: 4px;
}
.pricing-card .plan-sub {
    font-size: 0.9rem;
    color: #4a5f7a;
    margin-bottom: 15px;
}
.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0b1a2e;
    margin-bottom: 4px;
}
.pricing-card .price .currency {
    font-size: 1.4rem;
    font-weight: 400;
    color: #4a5f7a;
}
.pricing-card .price .period {
    font-size: 1rem;
    font-weight: 400;
    color: #4a5f7a;
}
.pricing-card .price .highlight-red {
    color: #dc3545;
}
.pricing-card .price .highlight-green {
    color: #28a745;
}
.pricing-card .features {
    list-style: none;
    margin: 18px 0 22px;
    flex-grow: 1;
}
.pricing-card .features li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 0.95rem;
    color: #2d4059;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-card .features li:last-child {
    border-bottom: none;
}
.pricing-card .features .check {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}
.pricing-card .features .cross {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.1rem;
}
.pricing-card .btn {
    align-self: center;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.95rem;
}

.estimation-note {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}
.estimation-note .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.estimation-note .note-content {
    flex: 2;
    min-width: 280px;
}
.estimation-note .note-content h3 {
    color: #0b1a2e;
    margin-bottom: 4px;
}
.estimation-note .note-content p {
    color: #4a5f7a;
    font-size: 0.95rem;
    margin-bottom: 0;
}
.estimation-note .note-cta {
    flex: 1;
    min-width: 180px;
    text-align: center;
}
.estimation-note .note-cta p {
    font-size: 0.8rem;
    color: #4a5f7a;
    margin-top: 6px;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 60px 0 80px;
    background: #ffffff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 20px;
}
.contact-info-side h3 {
    color: #0b1a2e;
    margin-bottom: 6px;
}
.contact-info-side .contact-subtitle {
    color: #4a5f7a;
    margin-bottom: 24px;
}
.contact-info-side .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: #f8faff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    transition: 0.2s;
}
.contact-info-side .info-item:hover {
    border-color: #dc3545;
    transform: translateX(4px);
}
.contact-info-side .info-item .icon {
    font-size: 1.5rem;
    min-width: 36px;
}
.contact-info-side .info-item .label {
    font-weight: 600;
    color: #0b1a2e;
    margin-bottom: 2px;
}
.contact-info-side .info-item .value {
    color: #4a5f7a;
    font-size: 0.95rem;
}
.contact-info-side .info-item .value a {
    color: #dc3545;
    text-decoration: none;
}
.contact-info-side .info-item .value a:hover {
    text-decoration: underline;
}
.contact-info-side .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.contact-info-side .social-links a {
    display: inline-block;
    padding: 10px 20px;
    background: #f8faff;
    border: 1px solid #eef2f6;
    border-radius: 50px;
    text-decoration: none;
    color: #1a2a3a;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.2s;
}
.contact-info-side .social-links a:hover {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.contact-form-side {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.contact-form-side .form-header {
    margin-bottom: 28px;
}
.contact-form-side .form-header h3 {
    color: #0b1a2e;
    font-size: 1.6rem;
    margin-bottom: 4px;
}
.contact-form-side .form-header p {
    color: #4a5f7a;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #0b1a2e;
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.form-group label .required {
    color: #dc3545;
    margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.25s ease;
    background: #f8faff;
    color: #1a1a2e;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc3545;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}
.form-group textarea {
    resize: vertical;
    min-height: 130px;
}
.form-group .input-icon {
    position: relative;
}
.form-group .input-icon input,
.form-group .input-icon select {
    padding-left: 44px;
}
.form-group .input-icon .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c7a8e;
    font-size: 1.1rem;
}
.form-group .input-icon textarea + .icon {
    top: 18px;
    transform: none;
}

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

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #eef2f6;
}
.form-footer .secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 500;
}
.form-footer .response-time {
    color: #4a5f7a;
    font-size: 0.85rem;
}

.map-section {
    padding: 0 0 60px;
    background: #ffffff;
}
.map-section .map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    height: 350px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c7a8e;
    font-size: 1.1rem;
}
.map-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER with Developer Badge ===== */
.footer {
    background: #0f1a2a;
    color: #9aafc4;
    padding: 40px 0 30px;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
}
.footer .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.footer .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin: 0;
}
.footer .footer-links a {
    color: #b6c9dd;
    text-decoration: none;
    transition: color 0.2s;
}
.footer .footer-links a:hover { color: #dc3545; }
.footer .brand {
    font-weight: 700;
    background: linear-gradient(135deg, #dc3545, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer .footer-brand {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.footer .footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
}
.footer .contact-info {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 4px;
}
.footer .contact-info .separator {
    margin: 0 12px;
}

.footer-dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.25);
    border-radius: 50px;
    padding: 8px 20px 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #b6c9dd;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.footer-dev-badge:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15);
}
.footer-dev-badge .dev-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #dc3545, #28a745);
    border-radius: 50%;
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
    animation: spinGear 8s linear infinite;
}
.footer-dev-badge .dev-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.footer-dev-badge .dev-text .dev-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6a7f99;
    font-weight: 400;
}
.footer-dev-badge .dev-text .dev-name {
    font-weight: 700;
    color: #e0e7ef;
    font-size: 0.85rem;
}
.footer-dev-badge .dev-text .dev-name .highlight-red {
    color: #ff6b7a;
}
.footer-dev-badge .dev-text .dev-name .highlight-green {
    color: #5ddb7a;
}

@keyframes spinGear {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom .footer-copy {
    font-size: 0.75rem;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-dev-badge {
        padding: 6px 16px 6px 12px;
        font-size: 0.75rem;
    }
    .footer-dev-badge .dev-icon {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }
    .footer-dev-badge .dev-text .dev-name {
        font-size: 0.75rem;
    }
}

/* ===== COOKIE NOTICE (disabled/removed) ===== */
/* Removed as requested */

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero { padding: 40px 0 50px; }
    .services { padding: 50px 0; }
    .testimonials { padding: 50px 0; }
    .cta-section { padding: 50px 0; }
    .pricing-section { padding: 40px 0 50px; }
    .pricing-category h2 { font-size: 1.5rem; }
    .pricing-card .price { font-size: 2.2rem; }
    .estimation-note .container { flex-direction: column; text-align: center; }
    .contact-section { padding: 40px 0; }
    .contact-form-side { padding: 25px 20px; }
    .contact-info-side .info-item { padding: 14px 16px; }
    .form-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero .cta-group .btn { width: 100%; text-align: center; }
    .cta-section .cta-group input { min-width: 100%; }
}
/* ===== PRICING PAGE SPECIFIC ===== */
.pricing-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.pricing-category {
    margin-bottom: 50px;
    scroll-margin-top: 80px;
}
.pricing-category:last-child {
    margin-bottom: 0;
}

.pricing-category h2 {
    text-align: left;
    font-size: 1.8rem;
    color: #0b1a2e;
    border-bottom: 3px solid #dc3545;
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: inline-block;
}

.pricing-category h2 .highlight-green {
    color: #28a745;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #f8faff;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    padding: 30px 25px;
    transition: 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: #dc3545;
    box-shadow: 0 12px 30px -8px rgba(220, 53, 69, 0.08);
}

.pricing-card.popular {
    border-color: #28a745;
    background: #f8fff8;
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #28a745;
    color: #fff;
    padding: 2px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b1a2e;
    margin-bottom: 4px;
}

.pricing-card .plan-sub {
    font-size: 0.9rem;
    color: #4a5f7a;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0b1a2e;
    margin-bottom: 4px;
}

.pricing-card .price .currency {
    font-size: 1.4rem;
    font-weight: 400;
    color: #4a5f7a;
}

.pricing-card .price .period {
    font-size: 1rem;
    font-weight: 400;
    color: #4a5f7a;
}

.pricing-card .price .highlight-red {
    color: #dc3545;
}

.pricing-card .price .highlight-green {
    color: #28a745;
}

.pricing-card .features {
    list-style: none;
    margin: 18px 0 22px;
    flex-grow: 1;
}

.pricing-card .features li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 0.95rem;
    color: #2d4059;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

.pricing-card .features .check {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-card .features .cross {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-card .btn {
    align-self: center;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.95rem;
}

/* Estimation Note */
.estimation-note {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.estimation-note .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.estimation-note .note-content {
    flex: 2;
    min-width: 280px;
}

.estimation-note .note-content h3 {
    color: #0b1a2e;
    margin-bottom: 4px;
}

.estimation-note .note-content p {
    color: #4a5f7a;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.estimation-note .note-cta {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-category h2 {
        font-size: 1.5rem;
    }
    .pricing-card .price {
        font-size: 2.2rem;
    }
    .estimation-note .container {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== HEADER / NAV with Larger Overlapping Logo ===== */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-block {
    flex-shrink: 0;
}
.logo-block img {
    height: 70px; /* Increased from 48px */
    width: auto;
    display: block;
    transition: all 0.3s ease;
}
.logo-block img:hover {
    transform: scale(1.05);
}
.site-title {
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a2a3a;
}
.brand {
    font-weight: 700;
    font-size: 2rem;
    background: linear-gradient(135deg, #dc3545, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Overlapping effect - logo extends beyond navbar */
.navbar .logo-block {
    position: relative;
    z-index: 1001;
    padding: 4px 0;
}
.navbar .logo-block::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -12px;
    right: -12px;
    bottom: -8px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    z-index: -1;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

@media (max-width: 650px) {
    .logo-block img { 
        height: 50px; /* Increased from 36px */
    }
    .brand {
        font-size: 1.5rem;
    }
}
/* ===== CONTACT FORM 7 STYLES ===== */
/* Match the form styling to the TransferTech design */

.wpcf7-form {
    margin: 0;
    padding: 0;
}

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

.wpcf7-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.wpcf7-form .form-group label {
    display: block;
    font-weight: 600;
    color: #0b1a2e;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.wpcf7-form .form-group label .required {
    color: #dc3545;
    margin-left: 2px;
}

.wpcf7-form .form-group .input-icon {
    position: relative;
}

.wpcf7-form .form-group .input-icon .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c7a8e;
    font-size: 1.1rem;
    z-index: 1;
}

.wpcf7-form .form-group .input-icon textarea + .icon {
    top: 18px;
    transform: none;
}

.wpcf7-form .form-control {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.25s ease;
    background: #f8faff;
    color: #1a1a2e;
}

.wpcf7-form .form-control:focus {
    outline: none;
    border-color: #dc3545;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}

.wpcf7-form .form-control::placeholder {
    color: #adb5bd;
}

.wpcf7-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
    padding-top: 16px;
}

/* Select dropdown fix */
.wpcf7-form select.form-control {
    padding-right: 40px;
    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='%231a2a3a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

/* Submit button */
.wpcf7-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
}

.wpcf7-form .btn-green {
    background: #28a745;
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.25);
}

.wpcf7-form .btn-green:hover {
    background: #218838;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.35);
    transform: translateY(-2px);
}

/* Form footer */
.wpcf7-form .form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #eef2f6;
}

.wpcf7-form .form-footer .secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 500;
}

.wpcf7-form .form-footer .response-time {
    color: #4a5f7a;
    font-size: 0.85rem;
}

/* Validation errors */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
}

.wpcf7-form .wpcf7-validation-errors {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Spinner */
.wpcf7-form .wpcf7-spinner {
    display: inline-block;
    margin: 0 10px;
}

/* Form messages */
.wpcf7-form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 20px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wpcf7-form .form-footer {
        flex-direction: column;
        text-align: center;
    }
}

/* Success message animation */
.wpcf7-form .wpcf7-mail-sent-ok {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== CONTACT FORM 7 STYLES ===== */
.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.wpcf7-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.wpcf7-form .form-group label {
    display: block;
    font-weight: 600;
    color: #0b1a2e;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.wpcf7-form .form-group label .required {
    color: #dc3545;
    margin-left: 2px;
}

.wpcf7-form .form-group .input-icon {
    position: relative;
}

.wpcf7-form .form-group .input-icon .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c7a8e;
    font-size: 1.1rem;
    z-index: 1;
    pointer-events: none;
}

.wpcf7-form .form-group .input-icon textarea + .icon {
    top: 18px;
    transform: none;
}

.wpcf7-form .form-control {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.25s ease;
    background: #f8faff;
    color: #1a1a2e;
}

.wpcf7-form .form-control:focus {
    outline: none;
    border-color: #dc3545;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}

.wpcf7-form .form-control::placeholder {
    color: #adb5bd;
}

.wpcf7-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
    padding-top: 16px;
}

.wpcf7-form select.form-control {
    padding-right: 40px;
    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='%231a2a3a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.wpcf7-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
}

.wpcf7-form .btn-green {
    background: #28a745;
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.25);
}

.wpcf7-form .btn-green:hover {
    background: #218838;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.35);
    transform: translateY(-2px);
}

.wpcf7-form .form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #eef2f6;
}

.wpcf7-form .form-footer .secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 500;
}

.wpcf7-form .form-footer .response-time {
    color: #4a5f7a;
    font-size: 0.85rem;
}

/* Validation errors */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
}

.wpcf7-form .wpcf7-validation-errors {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wpcf7-form .form-footer {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== MOBILE MENU - FIXED ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #1a2a3a;
        cursor: pointer;
        padding: 4px 8px;
        z-index: 1002;
    }
    .nav-toggle:hover {
        color: #dc3545;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 18px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 30px rgba(0,0,0,0.12);
        z-index: 1001;
        overflow-y: auto;
        border-radius: 0;
        flex-wrap: nowrap;
        display: flex !important;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 10px 0;
        border-bottom: none;
        font-size: 1.05rem;
        width: 100%;
    }
    .nav-links .btn {
        display: inline-block;
        width: auto;
        padding: 10px 36px;
        margin-top: 4px;
    }
    .lang-selector {
        margin-top: 8px;
        width: 100%;
        max-width: 160px;
    }
    .lang-selector select {
        width: 100%;
        padding: 10px 16px 10px 34px;
        font-size: 0.95rem;
    }
    .nav-close-btn {
        display: block !important;
        position: absolute;
        top: 18px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #1a2a3a;
        cursor: pointer;
        transition: color 0.2s;
        padding: 4px;
    }
    .nav-close-btn:hover {
        color: #dc3545;
    }
}