/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Styles */
.nav-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    padding: 25px 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 100%;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover {
    color: #F37022;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #F37022;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #F37022;
}

.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    margin-top: 0;
}

/* Service page specific hero styles */
.hero--service {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
    z-index: 1;
}

.hero--service .hero-content {
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    margin-top: 30px;
}

.hero--service .hero-buttons {
    display: none;
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }
    
    .hero--service {
        height: 40vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #F37022;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(243, 112, 34, 0.3);
    line-height: normal;
    width: auto;
    height: auto;
}

.cta-button:hover {
    background-color: #d65d15;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 112, 34, 0.4);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(243, 112, 34, 0.3);
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #F37022;
}

.section-heading p {
    color: #666666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(243, 112, 34, 0.05) 0%, rgba(243, 112, 34, 0.1) 100%);
    z-index: 1;
}

.features::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    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='%23F37022' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
    animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}

.features-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.section-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #F37022, #ff9f4a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-heading p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.features-column {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(243, 112, 34, 0.2);
    border-color: rgba(243, 112, 34, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F37022, #ff9f4a);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(243, 112, 34, 0.3);
}

.feature-icon i {
    font-size: 24px;
    color: #ffffff;
}

.features-column h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.features-column p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

.features-list li {
    font-size: 0.85rem;
    color: #bbbbbb;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.features-list li::before {
    content: '•';
    color: #F37022;
    position: absolute;
    left: 0;
}

.section-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 40px;
}

/* Animation Keyframes */
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

/* Reviews Section */
.reviews {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.review-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.review-card:nth-child(even) {
    transform: translateX(100px);
}

.review-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.review-name {
    font-size: 1.2rem;
    color: #333333;
    margin: 10px 0;
}

.review-rating {
    color: #F37022;
    font-size: 1.2rem;
    margin: 10px 0;
}

.review-text {
    color: #666666;
    line-height: 1.6;
    font-style: italic;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Service Page Specific Styles */
.products {
    padding: 60px 0;
    background: #ffffff;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.service-header {
    margin-bottom: 15px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #F37022;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    color: white;
    font-size: 20px;
}

.service-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin: 10px 0;
}

.price {
    margin: 15px 0;
}

.price .currency {
    font-size: 1.5rem;
    color: #333;
    vertical-align: top;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.price .period {
    font-size: 1rem;
    color: #666;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}

.plan-button {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background-color: #F37022;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(243, 112, 34, 0.3);
    line-height: normal;
    height: auto;
}

.plan-button:hover {
    background-color: #d65d15;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 112, 34, 0.4);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #F37022;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .service-card.popular {
        transform: scale(1);
    }

    .service-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }
}

/* Jumbo Box Section */
.jumbo-box {
    background-color: #333333;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.jumbo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(243, 112, 34, 0.1), rgba(243, 112, 34, 0.2));
    z-index: 1;
}

.jumbo-box .section-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
}

.jumbo-box .section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.jumbo-box .section-heading p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.jumbo-box .services-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.jumbo-box .service-card {
    min-height: 400px;
}

.jumbo-box .service-card .product-image {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin: 15px auto;
    border-radius: 8px;
    object-fit: contain;
    aspect-ratio: 1;
}

.jumbo-box .service-header {
    margin-bottom: 15px;
}

.jumbo-box .service-card h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.jumbo-box .price {
    margin: 15px 0;
}

.jumbo-box .plan-button {
    margin-top: auto;
    padding: 15px 30px;
    font-size: 1rem;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .service-card.popular {
        transform: scale(1);
    }

    .service-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* Subscription Controls */
.subscription-controls {
    margin: 20px 0;
    text-align: center;
}

.subscription-controls label {
    display: block;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.slider-container {
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    margin: 15px 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F37022;
    cursor: pointer;
    transition: all 0.3s ease;
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F37022;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(243, 112, 34, 0.3);
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(243, 112, 34, 0.3);
}

.range-values {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
    padding: 0 10px;
}

.sub-count-display {
    color: #F37022;
    font-size: 2rem;
    font-weight: 700;
    margin: 12px 0;
}

#subCountDisplay {
    color: #F37022;
    font-weight: 700;
}

/* Auto-renew Toggle Switch */
.auto-renew {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #F37022;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Service Features Update */
.service-features {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.service-features i {
    color: #F37022;
}

/* Choose Plan Button Update */
.plan-button {
    width: 100%;
    padding: 15px 30px;
    background-color: #F37022;
    color: white;
    border: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto;
}

.plan-button:hover {
    background-color: #d65d15;
}
