/* style.css - Modern Orange-Themed Redesign */

:root {
    --primary: #FF6B35;
    --primary-light: #FF8B5A;
    --primary-dark: #D45A2A;
    --secondary: #2C3E50;
    --secondary-light: #4A6582;
    --accent: #FFA726;
    --accent-light: #FFCA7D;
    --success: #27AE60;
    --warning: #F39C12;
    --danger: #E74C3C;
    --light: #FFFFFF;
    --dark: #2C3E50;
    --gray-light: #F5F7FA;
    --gray: #95A5A6;
    --gray-dark: #7F8C8D;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 40px rgba(255, 107, 53, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar - Modern White Design */
.top-bar {
    background-color: var(--light);
    color: var(--gray-dark);
    padding: 10px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 6px 0;
    position: relative;
}

.top-bar-item:hover {
    color: var(--primary);
}

.top-bar-item:hover i {
    transform: translateY(-1px);
}

.top-bar-item i {
    font-size: 12px;
    color: var(--primary);
    transition: var(--transition);
}

.language-selector,
.country-selector {
    background: transparent;
    border: 1px solid rgba(44, 62, 80, 0.1);
    color: var(--secondary);
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    min-width: 120px;
    border-radius: 6px;
    transition: var(--transition);
}

.language-selector:focus,
.country-selector:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.alert-badge {
    background-color: var(--primary);
    color: white;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 12px;
    margin-left: 6px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(255, 107, 53, 0.3);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 14px;
    color: var(--gray);
    font-size: 14px;
    transition: var(--transition);
}

.search-box.focused i {
    color: var(--primary);
}

.search-box input {
    background-color: rgba(44, 62, 80, 0.03);
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 30px;
    padding: 10px 15px 10px 38px;
    color: var(--secondary);
    font-size: 13px;
    width: 180px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.search-box input:focus {
    outline: none;
    width: 220px;
    background-color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Currency Banner - Modern Design */
.currency-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 167, 38, 0.03) 100%);
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.currency-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.currency-rates {
    display: flex;
    gap: 35px;
}

.currency-rate {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(44, 62, 80, 0.05);
    transition: var(--transition);
}

.currency-rate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.currency-flag img {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    object-fit: cover;
}

.rate-change {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.rate-up {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success);
}

.rate-down {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--danger);
}

.last-updated {
    color: var(--gray-dark);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Header - Modern Orange Theme */
header {
    background-color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    transition: var(--transition);
}

header.scrolled {
    height: 70px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    transition: var(--transition);
    font-size: 15px;
    white-space: nowrap;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid rgba(44, 62, 80, 0.1);
    backdrop-filter: blur(10px);
}

.nav-links > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(255, 107, 53, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 25px;
}

.business-badge {
    background: linear-gradient(135deg, var(--accent) 0%, #FF9800 100%);
    color: white;
    font-size: 10px;
    padding: 3px 9px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 167, 38, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.currency-selector {
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    padding: 10px 15px;
    font-size: 13px;
    background-color: white;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    min-width: 180px;
    transition: var(--transition);
}

.currency-selector:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: var(--secondary);
    background: none;
    border: none;
    margin-left: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

/* Mobile Menu Styles - Modern Design */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 62, 80, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -380px;
    width: 350px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.mobile-menu-header h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mobile-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
    flex-grow: 1;
}

.mobile-nav-links > li {
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.mobile-nav-links > li:last-child {
    border-bottom: none;
}

.mobile-nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.mobile-nav-links > li > a:hover {
    background-color: rgba(255, 107, 53, 0.05);
    color: var(--primary);
    padding-left: 30px;
}

.mobile-nav-links > li > a i:last-child {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-nav-links > li > a.active i:last-child {
    transform: rotate(180deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: rgba(255, 107, 53, 0.02);
}

.mobile-dropdown.active {
    max-height: 400px;
}

.mobile-dropdown a {
    display: block;
    padding: 15px 25px 15px 45px;
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-dropdown a:hover {
    color: var(--primary);
    background-color: rgba(255, 107, 53, 0.05);
    border-left-color: var(--primary);
    padding-left: 50px;
}

.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid rgba(44, 62, 80, 0.08);
    background-color: var(--gray-light);
}

.mobile-currency-selector {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.mobile-currency-selector:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.mobile-cta-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Updated Hero Section - Modern White Design with Orange Accents */
.tracking-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--secondary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 240, 0.9) 100%);
    padding: 80px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background: radial-gradient(circle at 30% 50%, var(--primary) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, var(--accent) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 167, 38, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }
}

.hero-badge i {
    color: var(--primary);
    font-size: 18px;
}

.hero-badge span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary);
    letter-spacing: -1px;
    text-align: center;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--gray-dark);
    line-height: 1.7;
    max-width: 700px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: var(--gray-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.tracking-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    box-shadow: var(--box-shadow);
    animation: slideInUp 0.8s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tracking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tracking-form h2 {
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.tracking-form h2 i {
    color: var(--primary);
    font-size: 22px;
}

.tracking-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.tracking-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: white;
    color: var(--secondary);
    transition: var(--transition);
}

.tracking-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.tracking-input::placeholder {
    color: var(--gray);
}

.track-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 0 40px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.track-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.track-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.track-button:hover::after {
    left: 100%;
}

.tracking-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.track-option-btn {
    padding: 14px 25px;
    background: rgba(44, 62, 80, 0.03);
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.track-option-btn:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.track-option-btn.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 167, 38, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary);
}

.track-option-btn.highlight:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 167, 38, 0.2) 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.tracking-help {
    font-size: 14px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(44, 62, 80, 0.08);
    justify-content: center;
    text-align: center;
}

.tracking-help i {
    color: var(--primary);
    font-size: 16px;
}

.tracking-help a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}

.tracking-help a:hover {
    border-bottom-color: var(--primary);
    padding-bottom: 1px;
}

/* Quick Actions - Modern Cards */
.quick-actions {
    padding: 100px 0;
    background-color: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.quick-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 167, 38, 0.03) 0%, transparent 50%);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

.action-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 35px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.action-card:hover::before {
    transform: scaleX(1);
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(255, 107, 53, 0.1);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 167, 38, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.action-card:hover .action-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 167, 38, 0.2) 100%);
}

.action-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--secondary);
    font-weight: 700;
}

.action-card p {
    color: var(--gray-dark);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
}

/* Services Overview - Modern Orange Theme (Updated) */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 240, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 167, 38, 0.03) 0%, transparent 50%);
    z-index: 0;
}

/* SECTION HEADER - CENTERED FOR ALL SECTIONS */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.section-header p {
    color: var(--gray-dark);
    font-size: 18px;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(44, 62, 80, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(255, 107, 53, 0.1);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 167, 38, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-slow);
}

.service-card:hover .service-image::after {
    opacity: 0.5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.service-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
}

.service-content p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
    flex: 1;
}

.service-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-features i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 15px;
    flex-shrink: 0;
}

.service-features span {
    color: var(--secondary);
    font-size: 14px;
    line-height: 1.5;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 0;
    position: relative;
    align-self: flex-start;
    transition: var(--transition);
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transition: var(--transition);
    border-radius: 2px;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.service-link:hover::after {
    width: 100%;
}

/* Industry Sectors - Modern Grid */
.industry-sectors {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(255, 167, 38, 0.02) 100%);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 167, 38, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(255, 107, 53, 0.1);
}

.industry-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.industry-card h3 i {
    color: var(--primary);
    font-size: 22px;
}

.industry-card p {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Calculator Section - Modern Orange Theme */
.calculator-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.calculator-progress {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 35px 40px;
    margin-bottom: 50px;
    position: relative;
    border: 1px solid rgba(44, 62, 80, 0.1);
    box-shadow: var(--box-shadow);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 45px;
    height: 45px;
    background-color: white;
    border: 3px solid rgba(44, 62, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    transition: var(--transition);
    color: var(--gray);
}

.progress-step.active .step-circle {
    border-color: var(--primary);
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.progress-step.completed .step-circle {
    border-color: var(--success);
    background-color: var(--success);
    color: white;
}

.step-label {
    font-size: 15px;
    color: var(--gray);
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.progress-bar {
    position: absolute;
    top: 53px;
    left: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transition: width 0.5s ease;
    z-index: 1;
    border-radius: 2px;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    text-align: center;
}

.step-header h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.step-header h3 i {
    color: var(--primary);
    font-size: 26px;
}

.step-header p {
    color: var(--gray-dark);
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.required {
    color: var(--danger);
    font-size: 20px;
    line-height: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--danger);
}

.form-group input.error:focus {
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.input-with-unit {
    display: flex;
    gap: 15px;
}

.input-with-unit input {
    flex: 1;
}

.unit-selector {
    min-width: 90px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    padding: 0 15px;
    background-color: white;
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    transition: var(--transition);
}

.unit-selector:focus {
    outline: none;
    border-color: var(--primary);
}

.value-input-group {
    display: flex;
    gap: 15px;
}

.value-input-group input {
    flex: 1;
}

.currency-selector-small {
    min-width: 110px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    padding: 0 15px;
    background-color: white;
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    transition: var(--transition);
}

.currency-selector-small:focus {
    outline: none;
    border-color: var(--primary);
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.radio-label:hover {
    border-color: var(--primary);
    background-color: rgba(255, 107, 53, 0.03);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(44, 62, 80, 0.2);
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.radio-label input:checked + .radio-custom {
    border-color: var(--primary);
}

.radio-label input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
}

.radio-content {
    flex: 1;
}

.radio-content strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--secondary);
}

.radio-content small {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 15px;
    padding: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.checkbox-label:hover {
    background-color: rgba(255, 107, 53, 0.03);
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(44, 62, 80, 0.2);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
    margin-top: 3px;
}

.checkbox-label input {
    display: none;
}

.checkbox-label input:checked + .checkbox-custom {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.conditional-field {
    margin-top: 20px;
    padding: 25px;
    background-color: rgba(255, 107, 53, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.1);
    animation: fadeIn 0.3s ease;
}

.form-help {
    font-size: 14px;
    color: var(--gray-dark);
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.form-help i {
    margin-top: 3px;
    font-size: 16px;
    color: var(--primary);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.nav-button {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.nav-button.next {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.nav-button.prev {
    background-color: white;
    color: var(--secondary);
    border: 2px solid rgba(44, 62, 80, 0.1);
}

.nav-button.submit {
    background: linear-gradient(135deg, var(--accent) 0%, #FF9800 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 167, 38, 0.3);
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-button.next:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.nav-button.prev:hover {
    background-color: var(--gray-light);
    border-color: var(--primary);
    color: var(--primary);
}

.nav-button.submit:hover {
    box-shadow: 0 10px 30px rgba(255, 167, 38, 0.4);
}

.step-counter {
    color: var(--gray);
    font-weight: 500;
    font-size: 15px;
}

/* Calculator Result */
.calculator-result {
    display: none;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 167, 38, 0.05) 100%);
    border-radius: var(--border-radius);
    padding: 50px;
    margin-top: 50px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    animation: fadeIn 0.5s ease;
    box-shadow: var(--box-shadow);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.result-header h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--success);
    font-size: 28px;
    font-weight: 700;
}

.result-header h3 i {
    font-size: 32px;
}

.result-currency-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.result-currency-selector label {
    font-weight: 600;
    color: var(--secondary);
    font-size: 15px;
}

.result-currency-selector select {
    padding: 12px 20px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    min-width: 200px;
    transition: var(--transition);
    background-color: white;
}

.result-currency-selector select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.result-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.result-summary {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.result-price {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    line-height: 1;
}

.result-currency {
    font-size: 28px;
    color: var(--gray-dark);
    font-weight: 500;
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.breakdown-item.total {
    border-top: 3px solid var(--primary);
    border-bottom: none;
    padding-top: 20px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary);
}

.breakdown-label {
    color: var(--gray-dark);
    font-weight: 500;
}

.breakdown-value {
    color: var(--secondary);
    font-weight: 600;
}

.breakdown-item.total .breakdown-value {
    color: var(--primary);
    font-size: 24px;
}

.result-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(44, 62, 80, 0.1);
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-label {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 15px;
}

.info-value {
    font-weight: 700;
    color: var(--secondary);
    font-size: 16px;
}

.result-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 120px;
    right: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 2000;
    max-width: 450px;
    animation: slideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 5px solid var(--primary);
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.toast-notification.error {
    border-left-color: var(--danger);
}

.toast-notification.info {
    border-left-color: var(--primary);
}

.toast-notification.success {
    border-left-color: var(--success);
}

.toast-notification.fade-out {
    animation: slideOut 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
    line-height: 1;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--dark);
    background-color: rgba(44, 62, 80, 0.08);
}

/* Service Updates */
.service-updates {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(255, 167, 38, 0.02) 100%);
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.update-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 35px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.update-card:hover::before {
    transform: scaleY(1);
}

.update-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(255, 107, 53, 0.1);
}

.update-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--secondary);
    position: relative;
    z-index: 1;
    justify-content: center;
}

.update-card h3 i {
    color: var(--primary);
    font-size: 24px;
}

.update-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.update-date {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.update-date i {
    color: var(--primary);
}

/* WhatsApp Section */
.whatsapp-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(37, 211, 102, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
}

.whatsapp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.whatsapp-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.whatsapp-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(37, 211, 102, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-slow);
}

.whatsapp-container:hover .whatsapp-image::after {
    opacity: 0.6;
}

.whatsapp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.whatsapp-container:hover .whatsapp-image img {
    transform: scale(1.05);
}

.whatsapp-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
}

.whatsapp-content p {
    color: var(--gray-dark);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.whatsapp-features {
    list-style: none;
    margin: 30px 0 40px;
}

.whatsapp-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.whatsapp-features i {
    color: var(--success);
    margin-top: 3px;
    font-size: 18px;
    flex-shrink: 0;
}

.whatsapp-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: white;
    padding: 18px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn.call {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn.call:hover {
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4);
}

/* Footer - Modern Design */
footer {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2530 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 28px;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 10px;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-divisions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.division-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.division-badge:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
    border: 1px solid transparent;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: var(--primary-light);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 0;
}

.footer-legal a:hover {
    color: white;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 120px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #C44A20 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-container {
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-content h1 {
        font-size: 46px;
    }
    
    .hero-content p {
        font-size: 17px;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links,
    .header-right > .currency-selector,
    .header-right > .cta-button {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .result-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .whatsapp-content h3 {
        text-align: center;
    }
    
    .whatsapp-content p {
        text-align: center;
    }
    
    .whatsapp-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .hero-content {
        text-align: center;
        padding: 30px 0;
    }
    
    .hero-badge {
        margin: 0 auto 25px;
    }
    
    .hero-content h1 {
        font-size: 34px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-stats::after {
        display: none;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .tracking-form {
        padding: 30px;
    }
    
    .tracking-input-group {
        flex-direction: column;
    }
    
    .track-button {
        width: 100%;
        justify-content: center;
        padding: 18px;
    }
    
    .tracking-options {
        flex-direction: column;
        align-items: center;
    }
    
    .track-option-btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
    
    .currency-rates {
        flex-direction: column;
        gap: 15px;
    }
    
    .currency-banner .container {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .progress-step {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }
    
    .step-circle {
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .step-label {
        text-align: left;
    }
    
    .progress-bar {
        display: none;
    }
    
    .whatsapp-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .whatsapp-content h3 {
        font-size: 30px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .mobile-menu {
        width: 320px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .update-card h3 {
        justify-content: center;
    }
    
    .update-date {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .tracking-input-group {
        flex-direction: column;
    }
    
    .track-button {
        width: 100%;
        justify-content: center;
        padding: 18px;
    }
    
    .whatsapp-buttons {
        flex-direction: column;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        min-height: 250px;
    }
    
    .result-summary,
    .result-info .info-item {
        padding: 30px;
    }
    
    .result-price {
        font-size: 42px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 25px;
        right: 25px;
    }
    
    #backToTop {
        width: 50px;
        height: 50px;
        bottom: 100px;
        right: 25px;
        font-size: 20px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .calculator-progress,
    .tracking-form,
    .action-card,
    .service-content,
    .update-card {
        padding: 25px;
    }
    
    .result-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .result-header h3 {
        justify-content: center;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 320px;
    }
    
    .services-overview {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-content h3 {
        font-size: 18px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .service-badge {
        align-self: center;
    }
    
    .service-link {
        align-self: center;
    }
    
    .whatsapp-content h3 {
        text-align: center;
    }
    
    .whatsapp-content p {
        text-align: center;
    }
    
    .whatsapp-features li {
        text-align: left;
 /* Payment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    z-index: 2001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.payment-modal.active {
    display: flex;
}

.payment-modal-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.payment-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.payment-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.payment-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.payment-modal-body {
    padding: 30px;
}

.booking-summary {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 167, 38, 0.05) 100%);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.booking-summary h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 18px;
}

.booking-summary h3 i {
    color: var(--primary);
    font-size: 20px;
}

.summary-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 576px) {
    .summary-details {
        grid-template-columns: 1fr;
    }
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.summary-label {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
}

.summary-value {
    color: var(--secondary);
    font-weight: 600;
    font-size: 15px;
}

.summary-item:first-child .summary-value {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-methods h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 18px;
}

.payment-methods h3 i {
    color: var(--primary);
    font-size: 20px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: white;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.payment-option input:checked + .payment-option-content {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

.payment-option-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.payment-option-info {
    flex: 1;
}

.payment-option-info strong {
    display: block;
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 4px;
}

.payment-option-info small {
    color: var(--gray-dark);
    font-size: 13px;
}

.payment-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.payment-form h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 18px;
}

.payment-form h3 i {
    color: var(--primary);
    font-size: 20px;
}

.payment-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .payment-form .form-grid {
        grid-template-columns: 1fr;
    }
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 18px;
}

.input-with-icon input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Card number formatting */
#cardNumber {
    letter-spacing: 1px;
}

/* PayPal info */
.paypal-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 117, 189, 0.05) 0%, rgba(0, 48, 135, 0.05) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 117, 189, 0.1);
    margin-top: 20px;
}

.paypal-info i {
    color: #003087;
    font-size: 24px;
}

.paypal-info span {
    color: var(--secondary);
    font-size: 15px;
    flex: 1;
}

/* Bank transfer styles */
.bank-details {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 167, 38, 0.03) 100%);
    border-radius: var(--border-radius);
    padding: 20px;
}

.bank-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.bank-label {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 14px;
}

.bank-value {
    color: var(--secondary);
    font-weight: 600;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.bank-note {
    background: rgba(255, 167, 38, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 14px;
}

.bank-note i {
    color: var(--accent);
    font-size: 18px;
}

/* Crypto payment styles */
.crypto-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .crypto-options {
        grid-template-columns: 1fr;
    }
}

.crypto-option {
    display: block;
    cursor: pointer;
}

.crypto-option input {
    display: none;
}

.crypto-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 15px;
    background: white;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.crypto-option input:checked + .crypto-option-content {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.crypto-option-content i {
    font-size: 32px;
    color: var(--primary);
}

.crypto-option-content span {
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
}

.crypto-details {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(44, 62, 80, 0.06) 100%);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.crypto-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.crypto-detail:last-child {
    border-bottom: none;
}

.crypto-label {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 14px;
}

.crypto-value {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}

.crypto-value code {
    background: rgba(44, 62, 80, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    word-break: break-all;
}

.copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 12px;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.crypto-qr {
    text-align: center;
}

.crypto-note {
    background: rgba(255, 167, 38, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 14px;
}

.crypto-note i {
    color: var(--accent);
    font-size: 18px;
}

/* Payment terms */
.payment-terms {
    background: rgba(44, 62, 80, 0.03);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 25px;
}

.payment-terms .checkbox-label {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.payment-terms .checkbox-label:hover {
    background: rgba(255, 255, 255, 0.5);
}

.payment-terms .checkbox-label:last-child {
    margin-bottom: 0;
}

.payment-terms a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}

.payment-terms a:hover {
    border-bottom-color: var(--primary);
}

/* Security badges */
.payment-security {
    text-align: center;
    margin-bottom: 20px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-size: 13px;
    font-weight: 500;
}

.security-badge i {
    font-size: 16px;
}

/* Payment modal footer */
.payment-modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 25px 30px;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    background: var(--gray-light);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.payment-cancel-btn {
    background: white;
    color: var(--gray-dark);
    border: 2px solid rgba(44, 62, 80, 0.1);
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.payment-cancel-btn:hover {
    background: var(--gray-light);
    border-color: var(--primary);
    color: var(--primary);
}

.payment-confirm-btn {
    background: linear-gradient(135deg, #27AE60 0%, #219653 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.3);
}

.payment-confirm-btn:hover {
    background: linear-gradient(135deg, #219653 0%, #1E8449 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
}

.payment-confirm-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success Modal Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    z-index: 2002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.success-modal.active {
    display: flex;
}

.success-modal-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27AE60 0%, #219653 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
}

.success-modal h2 {
    color: var(--secondary);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-message {
    color: var(--gray-dark);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-details {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 167, 38, 0.05) 100%);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.success-detail {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.success-detail:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--gray-dark);
    font-weight: 500;
}

.detail-value {
    color: var(--secondary);
    font-weight: 600;
}

.success-detail:first-child .detail-value {
    color: var(--primary);
    font-weight: 700;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.success-action-btn {
    padding: 14px 25px;
    background: white;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.success-action-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.success-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.success-action-btn.primary:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.success-note {
    background: rgba(39, 174, 96, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    font-size: 14px;
    text-align: left;
}

.success-note i {
    color: #27AE60;
    font-size: 18px;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-modal-content {
        max-height: 95vh;
    }
    
    .payment-modal-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .payment-modal-body {
        padding: 20px;
    }
    
    .payment-modal-footer {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .payment-cancel-btn,
    .payment-confirm-btn {
        width: 100%;
        justify-content: center;
    }
    
    .success-modal-content {
        padding: 30px 20px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-action-btn {
        width: 100%;
        justify-content: center;
    }
}