:root {
    --primary-purple: #201736;
    --secondary-purple: #2a1f4a;
    --accent-yellow: #fcc513;
    --white: #ffffff;
    --light-gray: #f7fafc;
    --dark-gray: #2d3748;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.nav-info {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(32, 23, 54, 0.1);
}

.nav-contact {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.1rem;
    color: var(--accent-yellow);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.social-link {
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(32, 23, 54, 0.05);
}

.social-link:hover {
    transform: translateY(-2px);
    color: var(--white);
    background: var(--accent-yellow);
}

.social-link i {
    transition: all 0.3s ease;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0 auto;
    padding: 0;
    flex: 2;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-purple);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white);
    position: relative;
    z-index: 3;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.gradient-text {
    color: #fcc513;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    font-weight: 700;
    text-shadow: none;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    height: auto;
    min-height: 200px;
    margin-bottom: 2rem;
}

.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    visibility: hidden;
    padding-right: 1rem;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.gradient-text {
    background: linear-gradient(45deg, var(--accent-yellow), #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Image Slideshow */
.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.5s ease;
    visibility: hidden;
}

.image-slide.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-yellow);
    transform: scale(1.2);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.feature-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-button.primary {
    background-color: var(--accent-yellow);
    color: var(--primary-purple);
    border: none;
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary-purple);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1.5s;
}

.card-icon {
    font-size: 1.5rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design for Hero Section */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .hero-content {
        padding: 1rem;
    }
}

/* About Section */
.about {
    padding: 5rem 10%;
    background-color: var(--light-gray);
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-purple);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-main {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-description {
    flex: 2;
    min-width: 260px;
    animation: slideInLeft 1s ease-out;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-values {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.about-values li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 400;
}

.about-values i {
    color: var(--accent-yellow);
    margin-right: 0.5rem;
}

.about-services {
    flex: 1.2;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(32, 23, 54, 0.07);
    padding: 2.5rem 2rem;
    animation: slideInRight 1s ease-out;
}

.about-services h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.about-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-services li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.about-services i {
    color: var(--accent-yellow);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.service-solutions {
    list-style: none;
    padding-left: 2rem;
    margin-top: 1rem;
}

.service-solutions li {
    font-size: 1.1rem;
    margin-left: 2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 300;
}

.service-solutions i {
    color: var(--accent-yellow);
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .about-main {
        flex-direction: column;
        gap: 2rem;
    }
    .about-services {
        width: 100%;
    }
}

/* Services Section */
.services {
    padding: 5rem 10%;
}

.services h2 {
    text-align: center;
    color: var(--primary-purple);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1.1rem;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(107, 70, 193, 0.2);
    background: linear-gradient(145deg, var(--white), var(--light-gray));
}

/* Contact Section */
.contact {
    padding: 5rem 10%;
    background-color: var(--light-gray);
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-purple);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-image img:hover {
    transform: scale(1.05);
}

.contact-form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: scaleIn 0.8s ease-out;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-purple);
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 4rem 10% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--accent-yellow);
    opacity: 1;
}

.footer-section p {
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 300;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-image {
        min-height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-info {
        gap: 1.5rem;
    }
    
    .nav-contact {
        gap: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .nav-info {
        display: none;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about,
    .services,
    .contact {
        padding: 3rem 5%;
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 5%;
    background: #f7fafc;
}

.grid-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(32, 23, 54, 0.08);
    min-height: 350px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.02);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: left;
}

.grid-text h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.grid-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.grid-text button {
    background: var(--accent-yellow);
    color: var(--primary-purple);
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.grid-text button:hover {
    background: white;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-item {
        min-height: 300px;
    }
    
    .grid-text h2 {
        font-size: 1.3rem;
    }
    
    .grid-text p {
        font-size: 0.9rem;
    }
}

.simple-footer {
    background: var(--primary-purple);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0 1rem 0;
    font-size: 1rem;
    color: var(--white);
}

.footer-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 5%;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
}

.footer-center {
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-center a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    opacity: 0.8;
}

.footer-center a:hover {
    color: var(--accent-yellow);
    opacity: 1;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.2rem;
}

@media (max-width: 800px) {
    .footer-row {
        flex-direction: column;
        gap: 0.7rem;
        text-align: center;
    }
    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 10%;
    background-color: var(--light-gray);
}

.pricing h2 {
    text-align: center;
    color: var(--primary-purple);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--accent-yellow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-yellow);
    color: var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--dark-gray);
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.pricing-features i {
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

.pricing-button {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-button:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-purple);
    background: transparent;
    color: var(--primary-purple);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.tab-button.active {
    background: var(--primary-purple);
    color: var(--white);
}

.pricing-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pricing-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Update existing pricing styles */
.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-yellow);
    color: var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply animations to elements */
.hero-image {
    animation: fadeIn 1.2s ease-out;
}

.nav-links li {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }

.social-links a {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.social-links a:nth-child(1) { animation-delay: 0.5s; }
.social-links a:nth-child(2) { animation-delay: 0.6s; }
.social-links a:nth-child(3) { animation-delay: 0.7s; }

.pricing-card {
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.about-description {
    animation: slideInLeft 1s ease-out;
}

.about-services {
    animation: slideInRight 1s ease-out;
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.contact-form-container {
    animation: scaleIn 0.8s ease-out;
}

.contact-image {
    animation: fadeIn 1s ease-out;
}

/* Hover animations */
.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-links a:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) rotate(5deg);
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    transition: transform 0.3s ease;
}

/* Loading animation for pricing tabs */
.pricing-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pricing-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation for cards */
.floating-card {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive animations */
@media (max-width: 768px) {
    .pricing-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .service-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
}

.brand-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    background: #fff;
}

.brand-banner-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: brightness(0.98) contrast(1.05);
}

.brand-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.10);
    text-align: center;
    color: #2a1f4a;
    z-index: 2;
}

.brand-banner-overlay h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #201736;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(255,255,255,0.2);
}

.brand-banner-overlay p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #201736;
    text-shadow: 0 2px 8px rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
    .brand-banner-img, .brand-banner {
        height: 220px;
        min-height: 220px;
    }
    .brand-banner-overlay h2 {
        font-size: 1.2rem;
    }
    .brand-banner-overlay p {
        font-size: 0.95rem;
    }
}

.team-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-banner-img {
    width: 100%;
    height: auto;
    max-width: 100vw;
    display: block;
    filter: brightness(0.98) contrast(1.05);
}

@media (max-width: 900px) {
    .team-banner-img {
        height: 220px;
    }
}

.hidden {
    display: none !important;
}

.toggle-packages-btn {
    display: block;
    margin: 2rem auto 0 auto;
    padding: 1rem 2.5rem;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(32,23,54,0.08);
}

.toggle-packages-btn:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px) scale(1.03);
}

.hero-image .hero-overlay-slide {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 2.5rem 2rem 2rem 2rem;
    display: none;
    z-index: 3;
    background: linear-gradient(to top, rgba(32,23,54,0.85) 70%, rgba(32,23,54,0.1) 100%);
    justify-content: center;
    align-items: flex-end;
    text-align: center;
}

.hero-image .hero-overlay-slide.active {
    display: flex;
}

.hero-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0;
    word-wrap: break-word;
    color: #fff;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .hero-image .hero-overlay-slide {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .hero-title {
        font-size: 2rem;
    }
}

@keyframes heroTextFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-hero-text {
  opacity: 0;
  animation: heroTextFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.slide.active .animate-hero-text {
  animation-delay: 0.2s;
  opacity: 1;
} 