/* Global Styles */
:root {
    --primary-color: #FF94B2;
    --primary-dark: #F24455;
    --secondary-color: #E5203A;
    --accent-color: #660F24;
    --light-color: #FFDBE8;
    --dark-color: #2B0013;
    --gray-color: #636072;
    --border-radius: 10px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #FF94B2 0%, #F24455 100%);
    --gradient-secondary: linear-gradient(135deg, #E5203A 0%, #660F24 100%);
    --gradient-pink: linear-gradient(135deg, #FFDBE8 0%, #FF94B2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    margin-right: 0.8rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.2);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 5px 15px rgba(179, 0, 41, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(179, 0, 41, 0.5);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    box-shadow: 0 2px 15px rgba(128, 0, 32, 0.2);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--light-color);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 0 10px;
    overflow: hidden;
}

.logo h1 {
    text-transform: none;
}

.logo h1::first-letter {
    text-transform: uppercase;
}

.logo span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    animation: logo-pulse 3s infinite;
    text-shadow: 0 0 5px rgba(128, 0, 32, 0.3);
    transition: all 0.3s ease;
}

.logo h1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: logo-line 4s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(128, 0, 32, 0.5);
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); text-shadow: 0 0 5px rgba(128, 0, 32, 0.3); }
    50% { transform: scale(1.05); text-shadow: 0 0 10px rgba(128, 0, 32, 0.5); }
}

@keyframes logo-line {
    0% { transform: translateX(-100%); opacity: 0.7; }
    50% { transform: translateX(100%); opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.7; }
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--light-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background-color: var(--light-color);
    position: relative;
    overflow: visible;
    background-image: url('https://i.ibb.co/bjLG0Hmz/umaima.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Background Extension */
.hero::after {
    content: '';
    position: absolute;
    bottom: -350px;
    left: 0;
    width: 100%;
    height: 450px;
    background-image: url('https://i.ibb.co/bjLG0Hmz/umaima.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    box-shadow: inset 0 -80px 80px -30px rgba(0,0,0,0.5);
}

/* Stats Section */
.stats {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px 0;
    margin-top: 0;
    color: white;
    position: relative;
    overflow: hidden;
    border-top: none;
    box-shadow: none;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-contact-btn {
    display: none;
    margin-top: 20px;
    text-align: center;
}

/* Media Queries for Mobile */
@media screen and (max-width: 768px) {
    .logo h1 {
        font-size: 2.4rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .contact-btn {
        display: none;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--dark-color);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        font-size: 1.2rem;
        padding: 10px 0;
    }
    
    .mobile-contact-btn {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    nav {
        width: 80%;
    }
}

/* Media Queries */
/* Desktop and Tablet */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
        padding: 8rem 0 4rem;
    }
    
    .hero::after {
        bottom: -300px;
        height: 400px;
        background-attachment: scroll;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
        background-attachment: scroll;
        background-size: auto 100%;
    }
    
    .hero::after {
        bottom: -200px;
        height: 300px;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 20px;
        margin-top: 1rem;
    }
    
    .stats {
        padding: 40px 0;
    }
    
    .stats .container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        margin-bottom: 20px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 2rem;
        background-size: auto 100%;
        background-position: center center;
    }
    
    .hero::after {
        bottom: -150px;
        height: 200px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stats {
        padding: 30px 0;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-item h2 {
        font-size: 2rem;
    }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

/* Removed the dark background overlay */
.hero-content::before {
    content: none;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: white;
    line-height: 1.7;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 32, 0.2);
}

.hero-image svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Background Extension */
.hero::after {
    content: none;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
    margin-top: 60px;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 148, 178, 0.3);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 0;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Features Section */
.why-choose-us {
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 148, 178, 0.05) 0%, rgba(242, 68, 85, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(128, 0, 32, 0.2);
    border-left: 4px solid var(--primary-color);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(128, 0, 32, 0.3);
}

.feature-card .icon i {
    font-size: 2rem;
    color: white;
}

.feature-card .icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .icon::after {
    opacity: 1;
}

.feature-card .icon.purple {
    background: var(--gradient-primary);
}

.feature-card .icon.orange {
    background: linear-gradient(135deg, #F24455 0%, #E5203A 100%);
}

.feature-card .icon.pink {
    background: linear-gradient(135deg, #FF94B2 0%, #F24455 100%);
}

.feature-card .icon.green {
    background: var(--gradient-secondary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Service Highlight Section */
.service-highlight {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .service-highlight {
        flex-direction: column;
    }
    
    .service-features-graphics {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    
    .logo h1 {
        font-size: 2.4rem;
    }
}

/* Service Features Graphics */
.service-features-graphics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 600px;
}

.feature-graphic {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 3px solid transparent;
}

.feature-graphic::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.05) 0%, rgba(179, 0, 41, 0.1) 100%);
    z-index: -1;
    transition: all 0.5s ease;
}

.feature-graphic:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(128, 0, 32, 0.2);
    border-bottom: 3px solid var(--primary-color);
}

.feature-graphic:hover::before {
    top: 0;
}

.graphic-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    position: relative;
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.15);
    transition: all 0.4s ease;
}

.graphic-icon svg {
    transition: transform 0.4s ease;
}

.feature-graphic:hover .graphic-icon {
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.25);
}

.feature-graphic:hover .graphic-icon svg {
    transform: scale(1.15);
}

.graphic-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-graphic:hover .graphic-icon::after {
    opacity: 0.2;
}

.graphic-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse-rose {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.feature-graphic h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-graphic:hover h4 {
    color: var(--primary-color);
}

.feature-graphic p {
    font-size: 0.95rem;
    color: var(--gray-color);
    transition: color 0.3s ease;
}

.feature-graphic:hover p {
    color: var(--dark-color);
}

@media (max-width: 992px) {
    .service-features-graphics {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .service-features-graphics {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .feature-graphic {
        padding: 20px;
    }
    
    .graphic-icon {
        width: 60px;
        height: 60px;
    }
}

.service-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.service-highlight {
    background-image: url('https://i.ibb.co/bjLG0Hmz/umaima.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.95);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 10px;
}

.service-content h3 i {
    margin-right: 12px;
    color: var(--primary-color);
    background: var(--light-color);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 5px;
}

.service-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Pricing Box Styles */
.pricing-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 25px 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-header {
    text-align: center;
    margin-bottom: 15px;
}

.pricing-header h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.pricing-header h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.pricing-options {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive styles for pricing box */
@media (max-width: 768px) {
    .pricing-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-option.featured {
        transform: scale(1);
        order: -1;
    }
    
    .price-option.featured:hover {
        transform: translateY(-5px);
    }
}

.price-option {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
    z-index: 1;
}

.price-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 2;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.price-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.price-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.price-option:hover::before {
    transform: scaleX(1);
}

.price-option:hover::after {
    opacity: 1;
}

.price-option.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--accent-color), var(--primary-color)) border-box;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 139, 0.2);
}

.price-option.featured::before {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.price-option.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 139, 0.3);
}

.price-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.price-badge.best-value {
    background: var(--gradient-primary);
    padding: 7px 15px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(242, 68, 85, 0.3);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.price-tag {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(74, 107, 255, 0.2);
    transition: all 0.3s ease;
}

.price-option:hover .price-tag {
    transform: scale(1.05);
    text-shadow: 0 3px 15px rgba(74, 107, 255, 0.3);
}

.price-tag .currency {
    font-size: 1.4rem;
    vertical-align: super;
    margin-right: 2px;
    opacity: 0.9;
}

.price-tag .amount {
    position: relative;
    display: inline-block;
}

.price-tag .amount::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.price-option:hover .price-tag .amount::after {
    transform: scaleX(1);
}

.price-description {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.price-option:hover .price-description {
    color: var(--primary-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.price-option:hover .price-note {
    color: var(--dark-color);
}

.original-price {
    text-decoration: line-through;
    color: #ff6b6b;
    font-weight: 500;
    margin-right: 8px;
    display: inline-block;
    position: relative;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.price-option:hover .original-price {
    opacity: 1;
    transform: scale(1.05);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--dark-color);
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.service-features li:hover {
    background-color: white;
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.1);
    transform: translateX(5px);
    border-left: 3px solid var(--primary-color);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-features li:hover i {
    transform: scale(1.2);
}

.service-image {
    flex: 1;
    max-width: 450px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.service-image img:hover {
    transform: scale(1.03) rotate(1deg);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.overlay-content i {
    color: gold;
    font-size: 1.2rem;
}

.overlay-content span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.section-subheader {
    text-align: center;
    margin-bottom: 40px;
}

.section-subheader h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-subheader h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
}

/* Process Section */
.process {
    background-color: #f8f9fa;
}

.process-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.process-image {
    flex: 1;
    max-width: 500px;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.process-steps {
    flex: 1;
}

.step {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    color: var(--gray-color);
}

/* Pricing Section */
.pricing {
    background-color: #fff;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-toggle button {
    padding: 10px 25px;
    background-color: #f1f2f6;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.pricing-toggle button:first-child {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.pricing-toggle button:last-child {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.pricing-toggle button.active {
    background-color: var(--primary-color);
    color: white;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    border-top: 4px solid transparent;
    width: 100%;
    max-width: 380px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.02) 0%, rgba(179, 0, 41, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(128, 0, 32, 0.2);
    border-top: 4px solid var(--primary-color);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(128, 0, 32, 0.15);
    border: 2px solid var(--primary-color);
    border-top: 4px solid var(--primary-color);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.03) 0%, rgba(179, 0, 41, 0.07) 100%);
    z-index: -2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(128, 0, 32, 0.25);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(242, 68, 85, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.price-option.featured:hover .best-value-badge, .pricing-card.featured:hover .best-value-badge {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 8px 25px rgba(242, 68, 85, 0.5);
}

.card-header {
    padding: 30px;
    text-align: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.price {
    position: relative;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    position: relative;
    top: -10px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.2rem;
    color: var(--gray-color);
    text-decoration: line-through;
    margin-left: 10px;
    opacity: 0.7;
}

.card-body {
    padding: 30px;
}

.includes {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.features-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 4px;
}

.feature-heading {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.renewal {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.05) 0%, rgba(179, 0, 41, 0.08) 100%);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(255, 148, 178, 0.15);
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition);
    display: none;
    border-left: 5px solid var(--primary-color);
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    margin-bottom: 25px;
    background-color: rgba(255, 219, 232, 0.1);
    padding: 25px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(255, 148, 178, 0.05);
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content::after {
    content: '\201D';
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content p::before {
    top: -20px;
    left: -15px;
}

.testimonial-content p::after {
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    background: var(--gradient-pink);
    padding: 15px 20px;
    border-radius: 50px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 148, 178, 0.1);
}

.author-avatar {
    margin-right: 15px;
    position: relative;
}

.author-avatar svg {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.testimonial-item:hover .author-avatar svg {
    transform: scale(1.05);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.author-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-controls button {
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px 10px;
}

.testimonial-controls button:hover {
    color: var(--primary-color);
}

.dots {
    display: flex;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 60px 0 30px;
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    animation: gradient-move 8s linear infinite;
    background-size: 200% 100%;
}

@keyframes gradient-move {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: #ddd;
    max-width: 300px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--light-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 5px 0;
    position: relative;
    overflow: hidden;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

.footer-links ul li a:hover::after {
    transform: translateX(0);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.8s ease forwards;
}

.animate-count-up {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-contact-btn {
    display: none;
    margin-top: 20px;
    text-align: center;
}

/* Media Queries for Mobile */
@media screen and (max-width: 768px) {
    .logo h1 {
        font-size: 2.4rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .contact-btn {
        display: none;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--dark-color);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        font-size: 1.2rem;
        padding: 10px 0;
    }
    
    .mobile-contact-btn {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    nav {
        width: 80%;
    }
}

/* Media Queries */
/* Desktop and Tablet */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-left: 0;
    }

    .process-container {
        flex-direction: column;
    }

    .process-image {
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .service-highlight {
        flex-direction: column;
        padding: 30px;
    }
    
    .service-image {
        order: -1;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .service-features {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    nav ul {
        justify-content: center;
    }

    .contact-btn {
        margin-left: auto;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subheader h3 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .stats .container {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .service-highlight {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links, .footer-contact {
        margin-top: 20px;
    }
}