.incorporate-section {
    text-align: center;
    /* background: linear-gradient(135deg, #fef7e6 0%, #fdf2d9 100%); */
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
/* .incorporate-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
            circle at 20% 20%,
            rgba(177, 138, 52, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(177, 138, 52, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 60%,
            rgba(177, 138, 52, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
} */

/* .incorporate-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b18a34' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
} */

.incorporate-header {
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
}

.incorporate-header img.incorporate-icon {
    width: 200px;
    height: 200px;
}

.incorporate-header h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.incorporate-header p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.country-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.country-card {
    background: #ffffff;
    border-radius: 25px;
    /* overflow: hidden; */
    width: 400px;
    /* height: 600px; */
    box-shadow: 0 15px 40px rgba(177, 138, 52, 0.15);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 25px;
}

.country-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(177, 138, 52, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(177, 138, 52, 0.02) 100%
    );
    border-radius: 25px;
    z-index: 0;
    pointer-events: none;
}

.country-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Left side decorative wave */ radial-gradient(
            ellipse at 10% 20%,
            rgba(177, 138, 52, 0.08) 0%,
            transparent 60%
        ),
        /* Right side decorative wave */
            radial-gradient(
                ellipse at 90% 80%,
                rgba(177, 138, 52, 0.06) 0%,
                transparent 60%
            ),
        /* Top decorative elements */
            radial-gradient(
                circle at 80% 15%,
                rgba(177, 138, 52, 0.04) 0%,
                transparent 50%
            ),
        /* Bottom decorative elements */
            radial-gradient(
                circle at 20% 85%,
                rgba(177, 138, 52, 0.05) 0%,
                transparent 50%
            ),
        /* Center subtle pattern */
            url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b18a34' fill-opacity='0.02'%3E%3Cpath d='M30 30c0-8.3-6.7-15-15-15s-15 6.7-15 15 6.7 15 15 15 15-6.7 15-15zm15 0c0-8.3-6.7-15-15-15s-15 6.7-15 15 6.7 15 15 15 15-6.7 15-15z'/%3E%3C/g%3E%3C/svg%3E");
    border-radius: 25px;
    z-index: 0;
    pointer-events: none;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(177, 138, 52, 0.25);
}

/* Additional decorative elements inside the card */
.country-card .decorative-element-1 {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(
        135deg,
        rgba(177, 138, 52, 0.1),
        rgba(177, 138, 52, 0.05)
    );
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.country-card .decorative-element-2 {
    position: absolute;
    top: 60px;
    right: 30px;
    width: 25px;
    height: 25px;
    background: linear-gradient(
        135deg,
        rgba(177, 138, 52, 0.08),
        rgba(177, 138, 52, 0.03)
    );
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.country-card .decorative-element-3 {
    position: absolute;
    bottom: 80px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: linear-gradient(
        135deg,
        rgba(177, 138, 52, 0.06),
        rgba(177, 138, 52, 0.02)
    );
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.country-card .decorative-element-4 {
    position: absolute;
    bottom: 120px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(
        135deg,
        rgba(177, 138, 52, 0.07),
        rgba(177, 138, 52, 0.03)
    );
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Product Image Section */
.product-image-section {
    position: absolute;
    top: -60px;
    z-index: 1;
}

.circular-image-frame {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-color), #cca143);
    padding: 8px;
    box-shadow: 0 8px 25px rgba(177, 138, 52, 0.3);
    position: relative;
}

.flag-overlay {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.flag-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(177, 138, 52, 0.05),
        rgba(255, 255, 255, 0.1)
    );
    z-index: 1;
}

.flag-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Product Information Section */
.product-info-section {
    text-align: center;
    margin-top: 100px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.product-headline {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-description {
    font-size: 13px;
    color: #718096;
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-color);
    text-shadow: 0 2px 4px rgba(177, 138, 52, 0.1);
}

/* Call to Action Section */
.cta-section {
    z-index: 1;
}

.cta-button {
    background: linear-gradient(135deg, var(--theme-color), #cca143);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(177, 138, 52, 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: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(177, 138, 52, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .incorporate-section {
        padding: 1rem 0;
    }

    .country-grid {
        gap: 20px;
        padding: 0 1rem;
    }

    .country-card {
        width: 100%;
        max-width: 350px;
        height: auto;
        padding: 25px 20px;
    }

    .circular-image-frame {
        width: 150px;
        height: 150px;
    }

    .product-headline {
        font-size: 20px;
    }

    .product-description {
        font-size: 13px;
        max-width: 250px;
    }

    .price-circle {
        width: 100px;
        height: 100px;
    }

    .price-amount {
        font-size: 24px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .country-card {
        max-width: 300px;
        padding: 20px 15px;
    }

    .circular-image-frame {
        width: 120px;
        height: 120px;
    }

    .product-headline {
        font-size: 18px;
    }

    .price-circle {
        width: 80px;
        height: 80px;
    }

    .price-amount {
        font-size: 20px;
    }
}

.nav-link.active {
    color: var(--theme-color) !important;
}

.llc-wrapper {
    /* background-color: var(--card-bg); */
    /* border-radius: 6px; */
    /* box-shadow: 1px 3px 10px var(--bs-border-color-translucent); */
    /* padding: 2rem; */
    margin: 1.5rem;
}

.btn {
    font-size: 12px;
    border-radius: 4px;
    padding: 10px 24px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--theme-color);
    color: var(--bs-white);
    border: none;
}
.btn-primary:hover {
    opacity: 0.8;
    color: var(--bs-white);
    background-color: var(--theme-color);
    border: none;
}
.btn:hover {
    opacity: 0.8;
}

.owner-block {
    position: relative;
    padding: 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}
.delete-owner {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    border: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.delete-owner:hover {
    background: #c82333;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.delete-owner svg {
    width: 16px;
    height: 16px;
}

.side-image img {
    width: 100%;
    height: 100%;
}
.LLC_register {
    height: 550px;
    overflow-y: auto;
}

/* State Selection Styles */
.state-list {
    padding: 20px;
}

.state-names-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.state-name-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.state-name-item:hover {
    background: #e9ecef;
    border-color: var(--theme-color);
    transform: translateY(-2px);
}

.state-name-item.selected {
    background-color: var(--theme-color);
    color: white;
    transform: translateY(-3px);
}

.state-name-item.selected::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.state-name-text {
    font-weight: 600;
    font-size: 16px;
    display: block;
    position: relative;
    z-index: 1;
}

.state-detail-card {
    animation: fadeInUp 0.5s ease-out;
}

.default-state-message {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* State Detail Card Styles */
.state-detail-card .card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.state-detail-card .card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.state-detail-card .card-header {
    background: var(--theme-color) !important;
    border: none;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.state-detail-card .card-header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.state-detail-card .card-header::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.state-detail-card .card-body {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.state-detail-card .card-body::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(
        45deg,
        rgba(42, 113, 208, 0.05),
        rgba(42, 113, 208, 0.1)
    );
    border-radius: 50%;
    z-index: 0;
}

.state-detail-card .card-body::after {
    content: "";
    position: absolute;
    top: -30px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        rgba(42, 113, 208, 0.03),
        rgba(42, 113, 208, 0.08)
    );
    border-radius: 50%;
    z-index: 0;
}

.state-detail-card .card-body > * {
    position: relative;
    z-index: 1;
}

/* Additional decorative elements */
.state-detail-card .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 113, 208, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(42, 113, 208, 0.02) 100%
    );
    border-radius: 16px;
    z-index: 0;
    pointer-events: none;
}

.state-detail-card .card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232a71d0' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='50' cy='10' r='2'/%3E%3Ccircle cx='10' cy='50' r='2'/%3E%3Ccircle cx='50' cy='50' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
        repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.state-price-section {
    text-align: center;
    position: relative;
}

.state-price-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(42, 113, 208, 0.2),
        transparent
    );
    z-index: 0;
}

.state-price-section .badge {
    font-size: 20px;
    background-color: none;
}

.state-benefits h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.state-benefits h6::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--theme-color);
    border-radius: 1px;
}

.state-benefits ul {
    position: relative;
}

.state-benefits ul::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--theme-color), transparent);
    border-radius: 1px;
    opacity: 0.3;
}

.state-benefits ul li {
    padding: 8px 0 8px 25px;
    transition: all 0.2s ease;
    position: relative;
    margin-bottom: 5px;
    border-radius: 8px;
}

.state-benefits ul li:last-child {
    border-bottom: none;
}

.state-benefits ul li i {
    color: var(--theme-color);
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 113, 208, 0.1);
    padding: 4px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 15px 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .state-name-item {
        padding: 12px 15px;
    }

    .state-name-text {
        font-size: 14px;
    }

    .state-detail-card .card-body {
        padding: 20px;
    }

    .state-price-section .badge {
        font-size: 16px;
        padding: 10px 16px;
    }
}
.nav-link span {
    color: var(--bs-black);
}
.nav-link:hover span {
    color: var(--theme-color) !important;
}

/* Step 5 - Order Summary New Design */
.order-summary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Header Section */
.summary-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem 0;
}

.header-content {
    position: relative;
    z-index: 2;
}

.summary-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(42, 113, 208, 0.1);
}

.summary-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(42, 113, 208, 0.1),
        rgba(42, 113, 208, 0.05)
    );
    animation: floatAnimation 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes floatAnimation {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Navigation Tabs */
.summary-nav {
    margin-bottom: 2rem;
}

.nav-tabs-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-tabs-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(177, 138, 52, 0.02),
        transparent
    );
    pointer-events: none;
}

.nav-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: 2px solid transparent;
    min-width: 120px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    z-index: 10;
}

.nav-tab:hover {
    background: rgba(177, 138, 52, 0.1);
    transform: translateY(-2px);
}

.nav-tab.active {
    background: linear-gradient(135deg, var(--theme-color), #cca143);
    color: white;
    box-shadow: 0 8px 20px rgba(177, 138, 52, 0.3);
    transform: translateY(-3px);
}

.tab-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.nav-tab:hover .tab-icon {
    transform: scale(1.1);
}

.nav-tab.active .tab-icon {
    transform: scale(1.2);
}

.tab-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* Content Tabs */
.summary-content {
    position: relative;
    min-height: 250px;
}

.content-tab {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.content-tab.active {
    display: block;
}

.tab-content-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.tab-content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--theme-color),
        #1976d2,
        var(--theme-color)
    );
}

.card-header-vector {
    background: linear-gradient(135deg, var(--theme-color), #cca143);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.card-header-vector::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.header-icon {
    font-size: 2rem;
    margin-right: 1rem;
    opacity: 0.9;
}

.header-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.header-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.edit-btn-vector {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edit-btn-vector:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 2rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
}

.info-value {
    font-size: 1rem;
    color: #212529;
    text-align: right;
    max-width: 60%;
}

.price-highlight {
    font-weight: 700;
    color: var(--theme-color);
    font-size: 1.2rem;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.category-tag {
    background: linear-gradient(135deg, var(--theme-color), #cca143);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Owner Items */
.owner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.owner-item:last-child {
    border-bottom: none;
}

.owner-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.owner-name {
    font-weight: 600;
    color: #212529;
    font-size: 1rem;
}

.owner-percentage {
    font-size: 0.9rem;
    color: var(--theme-color);
    font-weight: 600;
}

.owner-visual {
    width: 200px;
}

.percentage-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.percentage-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--theme-color), #cca143);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Address Block */
.address-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.address-line {
    font-size: 1rem;
    color: #212529;
    font-weight: 500;
}

.no-data-message {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 2rem;
}

/* Action Section */
.summary-actions {
    margin-top: 3rem;
    text-align: center;
    position: relative;
    padding: 2rem 0;
}

.action-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.action-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.action-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(42, 113, 208, 0.08),
        rgba(42, 113, 208, 0.03)
    );
    animation: floatAnimation 8s ease-in-out infinite;
}

.action-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 20%;
    animation-delay: 1s;
}

.action-shape.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.confirm-btn-vector {
    background: linear-gradient(135deg, var(--theme-color), #cca143);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(177, 138, 52, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.confirm-btn-vector:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(177, 138, 52, 0.4);
    color: white;
    text-decoration: none;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.confirm-btn-vector:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-summary-container {
        padding: 1rem;
    }

    .summary-title {
        font-size: 2rem;
    }

    .nav-tabs-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-tab {
        min-width: 100px;
        padding: 0.75rem 1rem;
    }

    .tab-icon {
        font-size: 1.2rem;
    }

    .tab-label {
        font-size: 0.8rem;
    }

    .card-header-vector {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-text {
        text-align: center;
    }

    .card-content {
        padding: 1.5rem;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .info-value {
        text-align: left;
        max-width: 100%;
    }

    .owner-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .owner-visual {
        width: 100%;
    }
}

/* Modern Status Toggle Button Styles */
.status-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 100px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-toggle-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: left 0.5s ease;
}

.status-toggle-btn:hover::before {
    left: 100%;
}

.status-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.status-toggle-btn:active {
    transform: translateY(0);
}

.toggle-icon {
    font-size: 14px;
    transition: all 0.3s ease;
}

.toggle-label {
    transition: all 0.3s ease;
}

/* Order Status Button Styles */
.order-status-btn {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #856404;
    border: 2px solid #ffc107;
}

.order-status-btn.active {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
}

.order-status-btn.active .toggle-icon {
    color: white;
}

.order-status-btn:hover {
    background: linear-gradient(135deg, #e0a800, #fd7e14);
    border-color: #e0a800;
}

.order-status-btn.active:hover {
    background: linear-gradient(135deg, #218838, #20c997);
    border-color: #218838;
}

/* Payment Status Button Styles */
.payment-status-btn {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    border: 2px solid #dc3545;
}

.payment-status-btn.active {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
}

.payment-status-btn.active .toggle-icon {
    color: white;
}

.payment-status-btn:hover {
    background: linear-gradient(135deg, #c82333, #e74c3c);
    border-color: #c82333;
}

.payment-status-btn.active:hover {
    background: linear-gradient(135deg, #218838, #20c997);
    border-color: #218838;
}

/* Icon Animations */
.status-toggle-btn .toggle-icon {
    transition: all 0.3s ease;
}

.status-toggle-btn:hover .toggle-icon {
    transform: scale(1.1);
}

.status-toggle-btn.active .toggle-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading State */
.status-toggle-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.status-toggle-btn.loading .toggle-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .status-toggle-btn {
        padding: 6px 12px;
        font-size: 11px;
        min-width: 80px;
    }

    .toggle-icon {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .status-toggle-btn {
        padding: 5px 10px;
        font-size: 10px;
        min-width: 70px;
    }

    .toggle-icon {
        font-size: 11px;
    }
}

.services-price-head {
    position: relative;
    background-color: var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
}
.services-price-head span {
    z-index: 2;
    font-size: 24px;
}
.services-content h5 {
    text-wrap: balance;
    width: 200px;
    margin: auto;
    text-align: center;
}
.services-content .single-pricing ul li {
    line-height: normal;
}
.services-content p,
.services-content li {
    line-height: normal;
    font-size: 15px;
}
.requirements {
    font-size: 20px;
    color: var(--theme-color);
}

.payment-content {
    min-height: 100vh;
    padding: 60px 0;
}

.modern-upgrade-card {
    background: white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-upgrade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Plan Badge */
.plan-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    z-index: 2;
}

.badge-text {
    background: white;
    color: #b18a34;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid #b18a34;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Price Circle */
.price-circle {
    position: absolute;
    top: -25px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b18a34 0%, #cca143 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(177, 138, 52, 0.3);
    z-index: 2;
}

.price-amount {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Card Content */
.card-content {
    margin-top: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-description {
    margin-bottom: 25px;
}

.plan-description p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.features-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 0;
    color: #b18a34;
    font-size: 0.8rem;
}

/* Action Buttons */
.action-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.upgrade-btn {
    background: linear-gradient(90deg, #b18a34 0%, #cca143 100%);
    color: white;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    letter-spacing: 1px;
}

.upgrade-btn:hover {
    background: linear-gradient(90deg, #9a7429 0%, #c99d3f 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(177, 138, 52, 0.3);
}

.basic-btn {
    background: transparent;
    border: 2px solid #b18a34;
    color: #b18a34;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
}

.basic-btn:hover {
    background: linear-gradient(90deg, #9a7429 0%, #c99d3f 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Summary Box */
.modern-summary-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b18a34;
    margin-bottom: 25px;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: #b18a34;
}

.summary-label {
    color: #6c757d;
    font-size: 0.95rem;
}

.summary-price {
    font-weight: 600;
    color: #b18a34;
}

/* Payment Form */
.payment-form {
    margin-top: 25px;
}

.form-label {
    font-weight: 600;
    color: #b18a34;
    margin-bottom: 10px;
}

.StripeElement {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
    transition: border-color 0.3s ease;
}

.StripeElement:focus {
    border-color: #b18a34;
    outline: none;
}

.checkout-btn {
    background: linear-gradient(90deg, #b18a34 0%, #cca143 100%);
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 15px 30px;
    border-radius: 8px;
    margin-top: 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
}

.checkout-btn:hover {
    background: linear-gradient(90deg, #9a7429 0%, #c99d3f 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(177, 138, 52, 0.3);
}

.checkout-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Payment Icons */
.payment-icons {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.payment-icons img {
    margin: 0 10px;
    opacity: 0.7;
}

.guarantee-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 15px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-content {
        padding: 60px 0;
    }

    .modern-upgrade-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .price-circle {
        width: 70px;
        height: 70px;
        top: -20px;
        right: 15px;
    }

    .price-amount {
        font-size: 1.3rem;
    }

    .badge-text {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .upgrade-btn,
    .basic-btn {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .modern-upgrade-card {
        padding: 25px 15px;
    }

    .price-circle {
        width: 60px;
        height: 60px;
        top: -15px;
        right: 10px;
    }

    .price-amount {
        font-size: 1.1rem;
    }

    .checkout-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
