/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-color: #9370DB;
    --secondary-color: #E6E6FA;
    --accent-color: #DDA0DD;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-bg: #F8F6FF;
    --gradient: linear-gradient(135deg, #E6E6FA 0%, #DDA0DD 100%);
    --shadow: 0 10px 30px rgba(147, 112, 219, 0.1);
    --shadow-hover: 0 15px 40px rgba(147, 112, 219, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

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

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 50%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Add padding to avoid navbar overlay */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23E6E6FA" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23E6E6FA" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23E6E6FA" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23E6E6FA" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23E6E6FA" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(147, 112, 219, 0.2);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    animation: heroImageFloat 6s ease-in-out infinite;
}

.hero-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(147, 112, 219, 0.3);
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(147, 112, 219, 0.1), rgba(221, 160, 221, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lavender-dark);
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(147, 112, 219, 0.2);
    animation: floatAround 8s ease-in-out infinite;
    z-index: 10;
}

.floating-icon:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    top: 30%;
    left: -5%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.7; }
    25% { transform: translateY(-20px) translateX(10px) scale(1.1); opacity: 1; }
    50% { transform: translateY(-10px) translateX(-15px) scale(0.9); opacity: 0.8; }
    75% { transform: translateY(-30px) translateX(5px) scale(1.05); opacity: 0.9; }
}

.hero-text {
    text-align: left;
    z-index: 2;
    position: relative;
}

.hero-name {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
}

.cursor {
    display: inline-block;
    color: var(--accent-color);
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 100%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-categories {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(147, 112, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(147, 112, 219, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(147, 112, 219, 0.3);
}

/* Story Button Container */
.story-button-container {
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

/* About Page Styles */
.about-page {
    padding: 120px 0 80px;
    background: var(--white);
}

.about-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.about-hero-image {
    display: flex;
    justify-content: center;
}

.about-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: -10%;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.element-4 {
    bottom: 10%;
    right: -15%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* About Story Section */
.about-story {
    padding: 100px 0;
    background: var(--light-bg);
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
    flex-shrink: 0;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    flex: 1;
    max-width: 350px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -20px;
    border-right-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -20px;
    border-left-color: var(--white);
}

.timeline-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Values Section */
.about-values {
    padding: 100px 0;
    background: var(--white);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.values-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.value-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Fun Facts Section */
.about-fun-facts {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
}

.fun-facts-header {
    text-align: center;
    margin-bottom: 4rem;
}

.fun-facts-header .section-title {
    color: white;
}

.fun-facts-header .title-underline {
    background: white;
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fun-facts-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

.fact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
}

.fact-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fact-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: var(--light-bg);
    color: var(--text-dark);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-stats {
        justify-content: center;
    }
    
    .image-frame img {
        width: 250px;
        height: 320px;
    }
    
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-icon {
        margin: 0 1rem 0 0;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -20px;
        right: auto;
        border-right-color: var(--white);
        border-left-color: transparent;
    }
    
    .values-grid.four-columns,
    .fun-facts-grid.four-columns {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Stats Section */
.stats {
    padding: 4rem 0 4rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Bio Section */
.bio {
    padding: 6rem 0;
    background: lavender;
    position: relative;
}

.bio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--lavender-dark);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--lavender-dark), var(--lavender-accent));
    margin: 0 auto;
    border-radius: 2px;
}

.bio-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: start;
}

.bio-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    height: 600px;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

/* Creative Image Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(138, 43, 226, 0.15);
    }
    50% {
        box-shadow: 0 15px 35px rgba(138, 43, 226, 0.3);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bio-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    flex: 1;
    min-height: 280px;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Different animations for each image */
.bio-image-card:nth-child(1) {
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.bio-image-card:nth-child(2) {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.bio-image-card:nth-child(3) {
    animation: slideInRight 0.8s ease-out 0.6s forwards;
}

.bio-image-card:nth-child(4) {
    animation: rotateIn 0.8s ease-out 0.8s forwards;
}

.bio-image-card:nth-child(5) {
    animation: bounceIn 0.8s ease-out 1s forwards;
}

.bio-image-card:nth-child(6) {
    animation: slideInUp 0.8s ease-out 1.2s forwards;
}

.bio-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bio-image-card:hover img {
    transform: scale(1.05);
}

.bio-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.25);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.bio-image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bio-text-slider {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.1);
    overflow: hidden;
    height: 600px;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    text-align: center;
    max-width: 400px;
}

.slide-content .quote-icon {
    font-size: 4rem;
    color: var(--lavender-light);
    font-family: serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.slide-content .mission-icon,
.slide-content .work-icon,
.slide-content .fun-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.slide-content h3 {
    color: var(--lavender-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.slide-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--lavender-dark), var(--lavender-accent));
    border-radius: 2px;
}

.slide-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.slider-navigation {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--lavender-light);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--lavender-dark);
    border-color: var(--lavender-dark);
    transform: scale(1.2);
}

.nav-dot:hover {
    background: var(--lavender-accent);
    border-color: var(--lavender-accent);
}

.slider-arrows {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--lavender-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
}

.arrow-btn:hover {
    background: var(--lavender-dark);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
}

/* Page Headers */
.page-header {
    text-align: center;
    padding: 120px 0 60px;
    background: var(--gradient);
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page */
.about-page {
    padding: 0 0 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    padding: 60px 0;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Services Page */
.service-category {
    margin-bottom: 4rem;
    padding: 0 20px;
}

/* Packages & Bundles section with primary background */
.service-category:nth-of-type(2),
.service-category:nth-of-type(6) {
    background: linear-gradient(135deg, var(--primary-color), rgba(147, 112, 219, 0.8));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.service-category:nth-of-type(2) .category-header h2,
.service-category:nth-of-type(6) .category-header h2,
.service-category:nth-of-type(2) .category-desc,
.service-category:nth-of-type(6) .category-desc,
.service-category:nth-of-type(2) .package-features li,
.service-category:nth-of-type(2) .custom-note {
    color: white !important;
}

.service-category:nth-of-type(2) .service-card h3 {
    color: var(--text-dark);
}

.service-category:nth-of-type(2) .service-card p {
    color: var(--text-light);
}

.service-category:nth-of-type(3) .service-card {
    border: 1px solid #9370DB;
}

/* Platforms section with primary background */
.service-category:nth-of-type(4) {
    background: linear-gradient(135deg, var(--primary-color), rgba(147, 112, 219, 0.8));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.service-category:nth-of-type(4) .category-header h2,
.service-category:nth-of-type(4) .category-desc,
.service-category:nth-of-type(4) .platform-item,
.service-category:nth-of-type(4) .platform-note {
    color: white !important;
}

/* Additional color fixes for better visibility */
.service-category:nth-of-type(2) .service-card .price,
.service-category:nth-of-type(2) .package-badge,
.service-category:nth-of-type(2) .package-savings,
.service-category:nth-of-type(2) .service-icon i {
    color: var(--primary-color) !important;
}

.service-category:nth-of-type(2) .service-card {
    background: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.service-category:nth-of-type(4) .platform-item i {
    color: white !important;
}

/* Fix testimonials section text visibility */
.testimonials-section {
    background: var(--light-bg);
    color: var(--text-dark);
}

.testimonials-section .testimonial-card {
    background: var(--white);
    color: var(--text-dark);
}

.testimonials-section .testimonial-content p {
    color: var(--text-light);
}

.testimonials-section .author-info h4 {
    color: var(--text-dark);
}

.testimonials-section .author-info span {
    color: var(--text-light);
}

.platform-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-header h2 i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--lavender-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary-color);
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

.category-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.8;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--lavender-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary-color);
    background-clip: text;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .price {
    transform: scale(1.1);
}

.service-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-desc {
    color: var(--text-dark);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.tag {
    background: linear-gradient(135deg, var(--primary-color), var(--lavender-accent));
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.service-card:hover .tag {
    transform: scale(1.05);
}

.package ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.package li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.package li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-card:hover .package li {
    color: var(--text-dark);
    transform: translateX(5px);
}

.service-card:hover .package li::before {
    transform: scale(1.2);
}

.package-badge {
    position: absolute;
    top: 0%;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--lavender-accent));
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    animation: badgeBounce 2s ease-in-out infinite;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.savings-info {
    background: rgba(138, 43, 226, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-color);
}

.savings-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

.custom-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 10px;
    border: 1px dashed var(--primary-color);
    transition: all 0.3s ease;
}

.custom-note:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-2px);
}

.custom-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.addons-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.addon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.05), transparent);
    transition: left 0.5s ease;
}

.addon-item:hover::before {
    left: 100%;
}

.addon-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.addon-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--lavender-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.addon-item:hover .addon-icon {
    transform: scale(1.1) rotate(10deg);
}

.addon-details {
    flex: 1;
    text-align: left;
}

.addon-name {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.addon-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.addon-item:hover .addon-desc {
    color: var(--text-dark);
}

.addon-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.addon-item:hover .addon-price {
    transform: scale(1.1);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.platform-item {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.05), transparent);
    transition: left 0.4s ease;
}

.platform-item:hover::before {
    left: 100%;
}

.platform-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.platform-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.platform-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.platform-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

/* Platform-specific colors */
.platform-item:nth-child(1) i { color: #E4405F; } /* Instagram */
.platform-item:nth-child(2) i { color: #000000; } /* TikTok */
.platform-item:nth-child(3) i { color: #FF0000; } /* YouTube */
.platform-item:nth-child(4) i { color: #1877F2; } /* Facebook */
.platform-item:nth-child(5) i { color: #1DA1F2; } /* Twitter */
.platform-item:nth-child(6) i { color: #0A66C2; } /* LinkedIn */

.niches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.niche-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.niche-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.niche-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--lavender-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.niche-card:hover .niche-icon {
    transform: scale(1.15) rotate(10deg);
}

.niche-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.niche-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.niche-card:hover p {
    color: var(--text-dark);
}

.niche-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.niche-tags .tag {
    background: rgba(138, 43, 226, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

/* Success Metrics Section */
.success-metrics {
    background: linear-gradient(135deg, var(--primary-color), var(--lavender-accent));
    padding: 80px 0;
    color: var(--white);
}

.metrics-header {
    text-align: center;
    margin-bottom: 4rem;
}

.metrics-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.metrics-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.metric-card:hover .metric-icon {
    transform: scale(1.2) rotate(10deg);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary-color);
    background-clip: text;
}

.metric-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonials-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 4rem;
    color: var(--lavender-light);
    font-family: serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, var(--text-dark), #2c1810);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--lavender-accent));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.05);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.8;
}

.feature i {
    font-size: 1.3rem;
    color: var(--lavender-accent);
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
}

/* Reviews Page */
.reviews-page {
    padding: 0 0 80px;
}

.brands-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.brands-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.brands-scroll {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.brands-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
}

.brand-logo {
    flex: 0 0 auto;
    margin: 0 2rem;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Reviews Section */
.reviews-section {
    padding: 60px 20px;
}

.reviews-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

/* Reviews Slider Container */
.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

/* Review Cards */
.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 350px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* New Review Layout - Row 1: Photo + Brand Name */
.review-profile-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.profile-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(147, 112, 219, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo .profile-letter {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.brand-name {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

/* Row 2: Date */
.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Row 3: Stars */
.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.review-stars i {
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.review-stars i.fas {
    color: #FFD700; /* Filled stars */
}

.review-stars i.far {
    color: #ddd; /* Empty stars */
}

/* Row 4: Review Text */
.review-text {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.nav-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Dots */
.slider-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Desktop Layout (3 cards per row) */
@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-dots {
        display: none;
    }
    
    .review-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

/* Tablet Layout (2 cards per row) */
@media (max-width: 1023px) and (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-dots {
        display: none;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 300px;
    }
}

/* Mobile Layout (1 card per view) */
@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-dots {
        display: flex;
    }
    
    .reviews-slider {
        gap: 1rem;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 2rem);
        min-width: calc(100% - 2rem);
        margin: 0 1rem;
    }
    
    .review-profile-row {
        gap: 0.75rem;
    }
    
    .profile-photo {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
}

/* Contact Page */
.contact-page {
    padding: 0 0 80px;
}

.contact-content {
    padding: 60px 20px;
}

.contact-section {
    margin-bottom: 4rem;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.social-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.social-info {
    flex: 1;
}

.platform {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.social-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-info a:hover {
    color: var(--accent-color);
}

.email-contact,
.business-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.email-contact:hover,
.business-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.email-contact i,
.business-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
}

.email-info,
.card-info {
    text-align: left;
}

.email-link,
.card-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.email-link:hover,
.card-link:hover {
    color: var(--accent-color);
}

.email-info p,
.card-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: var(--text-light);
}

/* Additional CSS for animations and effects */

/* Fade-in animation classes */
.fade-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-element.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Creative Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.95) 0%, 
        rgba(186, 85, 211, 0.9) 25%,
        rgba(221, 160, 221, 0.85) 50%,
        rgba(230, 230, 250, 0.9) 75%,
        rgba(255, 255, 255, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.loading-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(138, 43, 226, 0.1) 0%, 
        transparent 50%);
    animation: rotateBackground 20s linear infinite;
}

.loading-overlay.fade-out {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(5px);
}

.loading-spinner {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    animation: floatUp 2s ease-in-out infinite alternate;
}

.loading-spinner p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
}

/* Creative Spinner Designs */
.spinner {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto;
    animation: morphSpin 3s ease-in-out infinite;
}

.spinner::before,
.spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.spinner::before {
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.8) 90deg,
        rgba(138, 43, 226, 0.9) 180deg,
        rgba(186, 85, 211, 0.7) 270deg,
        transparent 360deg
    );
    animation-name: spinGradient;
    filter: blur(1px);
}

.spinner::after {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(230, 230, 250, 0.8) 50%,
        transparent 100%
    );
    animation-name: pulseInner;
}

/* Particle Effects */
.loading-spinner::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(186, 85, 211, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 40% 70%, rgba(221, 160, 221, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(230, 230, 250, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 90% 10%, rgba(138, 43, 226, 0.4) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px, 60px 60px, 35px 35px;
    animation: particleFloat 8s linear infinite;
    pointer-events: none;
}

/* Keyframe Animations */
@keyframes morphSpin {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        border-radius: 50%;
    }
    25% { 
        transform: rotate(90deg) scale(1.1);
        border-radius: 30%;
    }
    50% { 
        transform: rotate(180deg) scale(0.9);
        border-radius: 10%;
    }
    75% { 
        transform: rotate(270deg) scale(1.05);
        border-radius: 40%;
    }
}

@keyframes spinGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseInner {
    0%, 100% { 
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes floatUp {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@keyframes textGlow {
    0% { 
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        opacity: 0.8;
    }
    100% { 
        text-shadow: 0 4px 20px rgba(138, 43, 226, 0.5);
        opacity: 1;
    }
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lavender-dark), var(--lavender-accent));
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

/* Navbar scroll effects */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(138, 43, 226, 0.1);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

/* Keyboard focus styles */
.keyboard-focus {
    outline: 2px solid var(--lavender-accent);
    outline-offset: 2px;
}

/* Image loading states */
img {
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

.loading-spinner.large {
    width: 60px;
    height: 60px;
    border-width: 6px;
}

.loading-spinner.small {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-overlay .loading-content {
    text-align: center;
    color: var(--text-dark);
}

.loading-overlay .loading-content h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Loading Dots Animation */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--secondary-color) 25%, rgba(230, 230, 250, 0.5) 50%, var(--secondary-color) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.skeleton-text.wide {
    width: 100%;
}

.skeleton-text.medium {
    width: 75%;
}

.skeleton-text.narrow {
    width: 50%;
}

/* Button Loading State */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Page Loading Animation */
.page-loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.page-loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Content Loading States */
.content-loading {
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    border-radius: 8px;
    margin: 1rem 0;
}

.content-loading .loading-message {
    text-align: center;
    color: var(--text-light);
}

/* Image Loading Placeholder */
.image-placeholder {
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.image-placeholder.loaded {
    background: transparent;
}

/* Loading Progress Bar */
.loading-progress {
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    overflow: hidden;
    margin: 1rem 0;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.3s ease;
    animation: progress-shimmer 2s infinite;
}

@keyframes progress-shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

/* Pulse Loading Animation */
.pulse-loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Form error states */
input.error,
textarea.error {
    border-color: #ff4757;
    box-shadow: 0 0 5px rgba(255, 71, 87, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-name {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .hero-categories {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .image-stack {
        height: 400px;
    }
    
    .main-image {
        width: 200px;
        height: 250px;
    }
    
    .secondary-image {
        width: 160px;
        height: 200px;
        top: 80px;
    }
    
    .accent-image {
        width: 120px;
        height: 150px;
        bottom: 20px;
        left: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bio-images {
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
    }
    
    .bio-image {
        flex: 0 0 150px;
    }
    
    /* Mobile button positioning adjustments */
    .slider-arrows {
        bottom: 1rem;
        gap: 0.8rem;
    }
    
    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-navigation {
        bottom: 4rem;
    }
    
    .floating-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Leave a Review Section */
.leave-review-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.leave-review-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.leave-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.leave-review-btn i {
    font-size: 1.2rem;
}

/* Review Modal Styles */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.review-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.review-modal {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.review-modal-overlay.active .review-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

/* Form Styles */
.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    color: #666;
    font-size: 0.85rem;
}

/* Image Preview Styles */
.image-preview-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.image-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(147, 112, 219, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    flex-shrink: 0;
    position: relative;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-letter {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-upload-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.3rem;
    margin: 0.5rem 0;
}

.star-rating i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating i.active,
.star-rating i:hover {
    color: #ffd700;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: #f5f5f5;
    color: var(--text-color);
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #e8e8e8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-modal {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Success Message Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .niches-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Footer mobile centering */
    .footer-content {
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-category h2,
    .reviews-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .brand-logo {
        width: 100px;
        height: 60px;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero-name {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .hero-categories {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .floating-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .floating-icon:nth-child(3) {
        left: 5%;
    }
    
    .image-stack {
        height: 300px;
        margin: 0 auto;
    }
    
    .main-image {
        width: 150px;
        height: 200px;
    }
    
    .secondary-image {
        width: 120px;
        height: 160px;
        top: 60px;
        right: 10px;
    }
    
    .accent-image {
        width: 100px;
        height: 130px;
        bottom: 10px;
        left: 20px;
    }
    
    .typewriter {
        font-size: inherit;
    }
    
    .cursor {
        font-size: inherit;
    }
    
    .stats,
    .bio,
    .about-page,
    .services-page,
    .reviews-page,
    .contact-page {
        padding: 60px 0;
    }
    
    .service-card,
    .review-card,
    .social-item {
        padding: 1.5rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    /* Extra mobile adjustments for buttons */
    .slider-arrows {
        bottom: 0.5rem;
        gap: 0.5rem;
    }
}

/* Success Modal Styles */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.success-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.success-icon {
    margin-bottom: 1rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--primary-color);
    animation: checkBounce 0.6s ease-out 0.2s both;
}

@keyframes checkBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-modal-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.success-modal-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.3);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 112, 219, 0.4);
}

.success-btn:active {
    transform: translateY(0);
}

/* Mobile responsiveness for success modal */
@media (max-width: 480px) {
    .success-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .success-icon i {
        font-size: 3rem;
    }
    
    .success-modal-content h3 {
        font-size: 1.3rem;
    }
    
    .arrow-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-navigation {
        bottom: 3.5rem;
    }
}
