/* Main CSS styles for SERP Intelligence website - n8n.io inspired redesign */

/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Color Variables */
:root {
    /* Primary Colors */
    --primary-dark: #14142B;
    --secondary-dark: #1A1B35;
    --primary-pink: #FF6B6B;
    --accent-orange: #FF9F1C;
    
    /* Secondary Colors */
    --light-gray: #F8F8FB;
    --medium-gray: #6E6E7E;
    
    /* Functional Colors */
    --success-green: #00C851;
    --warning-yellow: #FFD700;
    --error-red: #FF4444;
    
    /* Legacy Colors (for backward compatibility) */
    --primary-blue: var(--primary-pink);
    --secondary-blue: var(--accent-orange);
    --dark-blue: var(--primary-dark);
    --light-blue: var(--secondary-dark);
    --accent-green: var(--success-green);
    --light-green: rgba(0, 200, 81, 0.1);
    --dark-gray: var(--light-gray);
    --white: var(--light-gray);
    
    /* Shadows */
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    
    /* Breakpoints */
    --mobile: 576px;
    --tablet: 768px;
    --desktop: 992px;
    --large-desktop: 1200px;
}

/* Basic styling */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--light-gray);
    background-color: var(--primary-dark);
    margin: 0;
    padding: 0;
}

/* Navigation styles */
nav {
    background: linear-gradient(to right, rgba(20, 20, 43, 0.8) 0%, #682e3466 35%, rgba(20, 20, 43, 0.8) 75%);
    color: var(--light-gray);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: var(--light-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--light-gray);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20, 20, 43, 0.8) 0%, #682e3466 35%, rgba(20, 20, 43, 0.8) 75%);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-nav-content {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    text-align: center;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
    color: var(--primary-pink);
}

.mobile-nav-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--light-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.mobile-nav-cta:hover,
.mobile-nav-cta:focus {
    background-color: var(--accent-orange);
    color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Hamburger Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--light-gray);
    opacity: 1;
}

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

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

.nav-cta {
    background-color: #ed3e3e;
    color: var(--light-gray);
    padding: 0.6rem 2.5rem !important;
    border-radius: 30px;
    font-weight: 700 !important;;
    transition: all 0.3s;
    opacity: 1;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.nav-cta:hover {
    background-color: var(--accent-orange);
    color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Header styles */
.page-header {
    background-color: var(--primary-dark);
    color: var(--light-gray);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 120%;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    opacity: 0.1;
    transform: rotate(-15deg);
    z-index: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.header-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
    color: var(--white);
    line-height: 1.6;
}

.header-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.header-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-pink));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.header-cta:hover:before {
    opacity: 1;
}

/* Section styles */
section {
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section:nth-of-type(even) {
    background-color: var(--secondary-dark);
}

h2 {
    color: var(--light-gray);
    font-size: 2.4rem;
    margin-bottom: 1.5em;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    border-bottom: none;
    font-weight: 700;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
}

/* Service overview */
.service-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: center;
}

.service-image {
    background-color: var(--primary-dark);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    opacity: 0.1;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.2);
}

.service-image:hover::before {
    opacity: 0.2;
}

.service-image p {
    color: var(--light-gray);
    font-style: italic;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

/* Benefits section */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background-color: var(--secondary-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    color: var(--light-gray);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.benefit-card h3 {
    color: var(--light-gray);
    margin-top: 0;
    font-size: 1.4rem;
    position: relative;
    padding-left: 35px;
    font-weight: 600;
}

.benefit-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}

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

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

/* Timeline Process section */
.timeline-container {
    margin-top: 50px;
    padding: 20px 0;
    width: 100%;
}

.timeline-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.timeline-item {
    width: 100%;
}

.timeline-content {
    background-color: var(--secondary-dark);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid;
    border-image: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange)) 1;
    color: var(--light-gray);
}

.timeline-item:nth-child(odd) .timeline-content {
    background-color: var(--secondary-dark);
}

.timeline-item:nth-child(even) .timeline-content {
    background-color: var(--primary-dark);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.timeline-content h3 {
    color: var(--light-gray);
    margin-top: 0;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
}

@media (max-width: 768px) {
    .timeline-content {
        padding: 20px;
    }
}

/* Features section */
.features-container {
    margin-top: 30px;
}

.feature-item {
    background-color: var(--secondary-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--light-gray);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.feature-item h3 {
    color: var(--light-gray);
    margin-top: 0;
    font-size: 1.4rem;
    position: relative;
    padding-left: 15px;
    font-weight: 600;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    padding: 80px 20px;
    text-align: center;
    border-radius: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    color: var(--light-gray);
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 120%;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    opacity: 0.15;
    transform: rotate(15deg);
}

.cta-section h2 {
    color: var(--light-gray);
    border-bottom: none;
}

.cta-section h2::after {
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--light-gray);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-pink));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.cta-button:hover:before {
    opacity: 1;
}

/* Service Link Styling */
.service-link {
    display: inline-block;
    background: transparent;
    color: var(--primary-pink);
    padding: 12px 24px;
    border: 2px solid var(--primary-pink);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 15px;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    color: var(--light-gray);
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    border-color: transparent;
}

/* Footer logo styling */
.footer-logo {
    margin-top: 20px;
}

.footer-logo img {
    height: 42px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

/* Laptop Mockup Carousel Styling */
#live-preview {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#live-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 159, 28, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

#live-preview h2,
#live-preview p {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.laptop-mockup {
    max-width: 900px;
    margin: 40px auto;
    position: relative;
    z-index: 2;
}

.laptop-screen {
    background: #2a2a2a;
    border-radius: 15px 15px 4px 4px;
    padding: 20px 20px 40px 20px;
    box-shadow: 0 0 0 8px #1a1a1a, 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #444;
    border-radius: 50%;
}

.laptop-content {
    background: #f8f8fb;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.report-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: top;
}

.slide-caption {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: white;
    padding: 15px 20px;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-caption h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.slide-caption p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.laptop-base {
    height: 20px;
    background: linear-gradient(to bottom, #e0e0e0, #c0c0c0);
    border-radius: 0 0 50px 50px;
    margin: 0 auto;
    width: 60%;
    position: relative;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 10px;
    background: linear-gradient(to bottom, #b0b0b0, #a0a0a0);
    border-radius: 0 0 10px 10px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-pink);
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.dot:hover {
    background: var(--accent-orange);
}

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

/* Animation for carousel entrance */
#live-preview {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

#live-preview.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.laptop-mockup {
    transform: perspective(1000px) rotateX(5deg) rotateY(-2deg);
    transition: transform 0.3s ease;
}

.laptop-mockup:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-1deg) scale(1.02);
}

/* Mobile responsiveness for laptop mockup */
@media (max-width: 768px) {
    .laptop-mockup {
        max-width: 95%;
    }
    
    .laptop-screen {
        padding: 15px 15px 30px 15px;
    }
    
    .carousel-controls {
        gap: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slide-caption {
        padding: 12px 15px;
    }
    
    .slide-caption h4 {
        font-size: 1rem;
    }
    
    .slide-caption p {
        font-size: 0.8rem;
    }
}

/* Report page styling */
.report-image {
    margin: 30px 0;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--light-gray);
    padding: 0;
}

.report-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.report-image:hover img {
    transform: scale(1.02);
}

.demo-cta {
    text-align: center;
    margin: 25px 0 40px 0;
}

.report-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.report-section:last-child {
    border-bottom: none;
}

/* Footer styles */
footer {
    background-color: var(--primary-dark);
    color: var(--light-gray);
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 5px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary-pink);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-pink);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    color: var(--medium-gray);
}

/* Home page specific styles */
.hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: var(--light-gray);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 120%;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    opacity: 0.15;
    transform: rotate(-15deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatShape 15s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 120%;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-pink));
    opacity: 0.1;
    transform: rotate(15deg);
    border-radius: 70% 30% 30% 70% / 70% 30% 30% 70%;
    animation: floatShape 20s ease-in-out infinite alternate-reverse;
}

/* Additional decorative elements for hero */
.hero .hero-content::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
    opacity: 0.05;
    top: -100px;
    left: 10%;
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 8s infinite alternate;
}

.hero .hero-content::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
    opacity: 0.05;
    bottom: -80px;
    right: 10%;
    border-radius: 50%;
    filter: blur(15px);
    animation: pulse 12s infinite alternate-reverse;
}

@keyframes floatShape {
    0% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-10deg) translateY(-20px);
    }
    100% {
        transform: rotate(-18deg) translateY(10px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.03;
        transform: scale(1);
    }
    50% {
        opacity: 0.08;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.05;
        transform: scale(0.95);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    padding: 0 10px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero h1::before,
.hero h1::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-pink);
    border-radius: 50%;
    opacity: 0.6;
    z-index: -1;
}

.hero h1::before {
    top: -5px;
    left: 0;
}

.hero h1::after {
    bottom: -5px;
    right: 0;
    background: var(--accent-orange);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-gray);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-primary-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--light-gray);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s, letter-spacing 0.5s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.hero-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    letter-spacing: 1.5px;
}

.hero-primary-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-pink));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

/* Shine effect for primary button */
.hero-primary-button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
    );
    transition: opacity 0.3s, transform 0.7s;
    z-index: 1;
}

.hero-primary-button:hover:after {
    opacity: 1;
    transform: rotate(30deg) translateX(300%);
    transition: opacity 0.3s, transform 0.7s;
}

.hero-primary-button:hover:before {
    opacity: 1;
}

.hero-secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--light-gray);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s, letter-spacing 0.5s, border-color 0.3s;
    border: 2px solid var(--primary-pink);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.hero-secondary-button:hover {
    background-color: rgba(255, 107, 107, 0.1);
    color: var(--light-gray);
    transform: translateY(-2px);
    border-color: var(--accent-orange);
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.15);
}

.hero-secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 159, 28, 0.1));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero-secondary-button:hover::before {
    opacity: 1;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background-color: var(--secondary-dark);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
    transition: width 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 27, 53, 0.8), rgba(20, 20, 43, 0.8));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
}

.service-card:hover::before {
    width: 8px;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    color: var(--light-gray);
    margin-top: 0;
    font-size: 1.5rem;
    position: relative;
    padding-left: 18px;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 18px;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    transition: width 0.4s ease, background 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-pink);
    transform: translateX(3px);
}

.service-card:hover h3::after {
    width: 80px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange), var(--primary-pink));
    background-size: 200% 100%;
    animation: gradientMove 2s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-card p {
    margin: 25px 0;
    color: var(--light-gray);
    opacity: 0.85;
    transition: opacity 0.3s ease;
    line-height: 1.7;
}

.service-card:hover p {
    opacity: 1;
}

.service-card a {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 24px;
    border: 2px solid var(--primary-pink);
    border-radius: 8px;
    transition: all 0.3s ease, letter-spacing 0.5s ease;
    background-color: transparent;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.service-card a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 159, 28, 0.15));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.service-card a:hover {
    background-color: rgba(255, 107, 107, 0.1);
    color: var(--light-gray);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    letter-spacing: 1.2px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.service-card a:hover::before {
    opacity: 1;
}

/* Service card images */
.service-card-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.02);
}

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

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

/* About page specific styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background-color: var(--secondary-dark);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    transition: height 0.3s ease;
}

.team-member::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 27, 53, 0.8), rgba(20, 20, 43, 0.8));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
}

.team-member:hover::before {
    height: 8px;
}

.team-member:hover::after {
    opacity: 1;
}

.team-member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid transparent;
    background-image: linear-gradient(var(--secondary-dark), var(--secondary-dark)),
                      linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-member:hover .team-member-image {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.25);
}

.team-member-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    z-index: -1;
    border-radius: 50%;
    opacity: 0.15;
    transition: opacity 0.4s ease;
}

.team-member:hover .team-member-image::after {
    opacity: 0.25;
}

.team-member h3 {
    color: var(--light-gray);
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    display: inline-block;
}

.team-member:hover h3 {
    color: var(--primary-pink);
    transform: translateY(-2px);
}

.team-member h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    transition: width 0.4s ease;
    opacity: 0;
}

.team-member:hover h3::after {
    width: 80%;
    opacity: 1;
}

.team-member p {
    color: var(--light-gray);
    opacity: 0.8;
    margin-bottom: 25px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    line-height: 1.7;
}

.team-member:hover p {
    opacity: 1;
    transform: translateY(-2px);
}

.team-member .social-links {
    justify-content: center;
    margin-top: 25px;
    transition: transform 0.3s ease;
    gap: 20px;
}

.team-member:hover .social-links {
    transform: translateY(-3px);
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 30px;
    display: block;
    border: 4px solid rgba(255, 107, 107, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.25);
    border-color: rgba(255, 107, 107, 0.5);
}

.team-member h3 a:hover {
    color: var(--primary-pink) !important;
}

.team-member .social-links a {
    color: var(--primary-pink);
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    transform: translateY(0);
}

.team-member .social-links a:hover {
    color: var(--light-gray);
    background-color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

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

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact page specific styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-form {
    background-color: var(--secondary-dark);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.2);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
    transition: width 0.3s ease;
}

.contact-form:hover::before {
    width: 7px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    position: absolute;
    top: 14px;
    left: 16px;
    font-weight: 500;
    color: var(--medium-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    transform-origin: left top;
    background-color: var(--primary-dark);
    padding: 0 4px;
}

.form-group.active label {
    transform: translateY(-24px) scale(0.85);
    color: var(--primary-pink);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease, transform 0.2s ease;
    background-color: rgba(20, 20, 43, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--light-gray);
    position: relative;
    z-index: 2;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23F8F8FB' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    z-index: 1;
}

.form-group select:focus {
    z-index: 10;
}

.form-group select option {
    background-color: var(--primary-dark);
    color: var(--light-gray);
    padding: 10px;
}

/* Custom select wrapper */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-wrapper select {
    width: 100%;
    padding: 16px 40px 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease, transform 0.2s ease;
    background-color: rgba(20, 20, 43, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--light-gray);
    position: relative;
    z-index: 2;
    appearance: none;
    -webkit-appearance: none;
    background-image: none;
}

.custom-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

/* Custom select wrapper for desktop */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-wrapper select {
    width: 100%;
    padding: 16px 40px 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease, transform 0.2s ease;
    background-color: rgba(20, 20, 43, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--light-gray);
    position: relative;
    z-index: 2;
    appearance: none;
    -webkit-appearance: none;
    background-image: none;
}

.custom-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
    transform: translateY(-2px);
}

.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group select:valid + label {
    transform: translateY(-24px) scale(0.85);
    color: var(--primary-pink);
}

/* Mobile/Desktop visibility controls */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Remove placeholder text on desktop for message field */
@media (min-width: 769px) {
    .mobile-placeholder::placeholder {
        color: transparent !important;
    }
}

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

/* Form message styling */
.form-message {
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-message.info {
    background-color: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Login message inherits form-message styles */
.login-message {
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: 500;
}

.login-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.login-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.login-message.info {
    background-color: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Dashboard Styles */
.dashboard-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(104, 46, 52, 0.4) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--light-gray);
}

.dashboard-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.dashboard-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

#dashboard-main {
    padding: 60px 0;
    background-color: var(--primary-dark);
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dashboard-card {
    background-color: rgba(20, 20, 43, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
}

.dashboard-card h2 {
    color: var(--light-gray);
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-pink);
}

/* Account Summary */
.account-summary {
    grid-column: 1 / 3;
}

.account-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    color: var(--light-gray);
    font-size: 1rem;
}

.info-item strong {
    color: var(--primary-pink);
    display: inline-block;
    min-width: 120px;
}

/* Quick Actions */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn:hover {
    background-color: rgba(255, 107, 107, 0.1);
    border-color: var(--primary-pink);
    transform: translateX(10px);
}

.btn-icon {
    font-size: 2rem;
    margin-right: 20px;
    min-width: 50px;
}

.btn-content h3 {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.btn-content p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Recent Activity */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-pink);
}

.activity-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 40px;
}

.activity-content h4 {
    color: var(--light-gray);
    font-size: 1rem;
    margin-bottom: 5px;
}

.activity-content p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.activity-time {
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Available Features */
.available-features {
    grid-column: 1 / 3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 107, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.feature-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-status.active {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.feature-status.coming-soon {
    background-color: rgba(255, 159, 28, 0.2);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 159, 28, 0.3);
}

/* Navigation active state */
.nav-links a.active {
    color: var(--primary-pink);
    font-weight: 600;
}

.mobile-nav-links a.active {
    color: var(--primary-pink);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .account-summary {
        grid-column: 1;
    }
    
    .available-features {
        grid-column: 1;
    }
    
    .account-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dashboard-header h1 {
        font-size: 2rem;
    }
    
    .dashboard-header {
        padding: 60px 0 40px;
    }
    
    #dashboard-main {
        padding: 40px 0;
    }
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    transition: width 0.4s ease;
    opacity: 0;
}

.form-group:focus-within::after {
    width: 100%;
    opacity: 1;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--light-gray);
    border: none;
    padding: 16px 36px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease, letter-spacing 0.5s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    letter-spacing: 1.5px;
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-pink));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.submit-button:hover:before {
    opacity: 1;
}

/* Shine effect for submit button */
.submit-button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
    );
    transition: opacity 0.3s, transform 0.7s;
    z-index: 1;
}

.submit-button:hover:after {
    opacity: 1;
    transform: rotate(30deg) translateX(300%);
    transition: opacity 0.3s, transform 0.7s;
}

.contact-info {
    background-color: var(--secondary-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
}

.contact-info h3 {
    color: var(--light-gray);
    margin-top: 0;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
}

.contact-info-item {
    margin-bottom: 15px;
    color: var(--light-gray);
    opacity: 0.8;
}

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

/* Client Zone specific styles */
.client-zone-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.login-form {
    background-color: var(--secondary-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.login-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
}

.new-client-info {
    background-color: var(--secondary-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.new-client-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
}

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

/* Client Zone specific styles */
#client-zone {
    padding: 60px 0;
}

.client-zone-container {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .client-zone-container {
        flex-wrap: nowrap;
    }
    
    .login-form,
    .client-zone-info {
        flex: 1;
    }
}

.login-form {
    background-color: var(--secondary-dark);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.login-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.2);
}

.login-form h2 {
    color: var(--light-gray);
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.login-form h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    transition: width 0.3s ease;
}

.login-form:hover h2::after {
    width: 100%;
}

.login-form p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-group:hover label {
    color: var(--primary-pink);
}

.form-group input {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.form-group input:hover {
    border-color: rgba(255, 107, 107, 0.3);
}

.login-form small {
    display: block;
    text-align: center;
    color: var(--medium-gray);
    margin-top: 20px;
    font-style: italic;
}

.demo-credentials {
    background-color: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.demo-credentials p {
    margin: 5px 0;
    color: var(--light-gray);
}

.demo-credentials small {
    color: #4a90e2;
    font-weight: 500;
}
.login-button {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--light-gray);
    border: none;
    padding: 16px 36px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease, letter-spacing 0.5s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 10px;
}

.login-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    letter-spacing: 1.5px;
}

.login-button:active {
    transform: translateY(0);
}

.login-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-pink));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.login-button:hover:before {
    opacity: 1;
}

/* Shine effect for login button */
.login-button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
    );
    transition: opacity 0.3s, transform 0.7s;
    z-index: 1;
}

.login-button:hover:after {
    opacity: 1;
    transform: rotate(30deg) translateX(300%);
    transition: opacity 0.3s, transform 0.7s;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.forgot-password a:hover {
    color: var(--primary-pink);
}

.forgot-password a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-pink);
    transition: width 0.3s;
}

.forgot-password a:hover::after {
    width: 100%;
}

.client-zone-info {
    background-color: var(--secondary-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.client-zone-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.2);
}

.client-zone-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
    transition: width 0.3s ease;
}

.client-zone-info:hover::before {
    width: 7px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--light-gray);
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
    opacity: 1;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    border-radius: 50%;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.feature-list li:hover::before {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
}

.feature-list li strong {
    color: var(--primary-pink);
    font-weight: 600;
}

.request-access {
    background-color: var(--secondary-dark);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.request-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    transition: height 0.3s ease;
}

.request-access:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.2);
}

.request-access:hover::before {
    height: 7px;
}

.request-access h3 {
    color: var(--light-gray);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.request-access p {
    color: var(--light-gray);
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.request-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--light-gray);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease, letter-spacing 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.request-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    letter-spacing: 1.5px;
}

.request-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-pink));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.request-button:hover:before {
    opacity: 1;
}

/* Shine effect for request button */
.request-button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
    );
    transition: opacity 0.3s, transform 0.7s;
    z-index: 1;
}

.request-button:hover:after {
    opacity: 1;
    transform: rotate(30deg) translateX(300%);
    transition: opacity 0.3s, transform 0.7s;
}

/* SERP Report specific styles */
.report-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.report-feature {
    background-color: var(--secondary-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.report-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.3);
}

.report-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
}

.report-feature h3 {
    color: var(--light-gray);
    margin-top: 0;
    font-size: 1.4rem;
    position: relative;
    padding-left: 15px;
}

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

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Testimonial styles */
.testimonial {
    background-color: var(--secondary-dark);
    padding: 50px;
    border-radius: 16px;
    margin-top: 60px;
    text-align: center;
    font-style: italic;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 27, 53, 0.8), rgba(20, 20, 43, 0.8));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
}

.testimonial:hover::after {
    opacity: 1;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    font-family: Georgia, serif;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.testimonial:hover::before {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.4;
}

.testimonial p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.testimonial:hover p {
    transform: scale(1.02);
}

.testimonial-author {
    font-style: normal;
    font-weight: 700;
    color: var(--primary-pink);
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
    letter-spacing: 0.5px;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 40px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s ease, height 0.3s ease;
    border-radius: 3px;
}

.testimonial:hover .testimonial-author {
    transform: translateY(-3px);
    color: var(--accent-orange);
}

.testimonial:hover .testimonial-author::before {
    width: 80px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-orange), var(--primary-pink));
    background-size: 200% 100%;
    animation: gradientMove 2s ease infinite;
}

/* Additional hero styles */
.hero-content p:first-of-type {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--white);
}

/* Process steps for Science of Search section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.step {
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.3);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: var(--light-gray);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    top: 20px;
    left: -20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
}

/* Colored backgrounds for each step */
.step-1, .step-2, .step-3 {
    background-color: var(--secondary-dark);
}

.step-1::before, .step-2::before, .step-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
}

/* Geometric shapes for steps */
.step .geometric-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.2;
}

.step-shape-1 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -50px;
    background-color: var(--primary-pink);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(45deg);
}

.step-shape-2 {
    width: 120px;
    height: 120px;
    bottom: -40px;
    left: 30px;
    background-color: var(--accent-orange);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(15deg);
}

.step-shape-3 {
    width: 180px;
    height: 180px;
    top: 20px;
    right: -60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    transform: rotate(-15deg);
}

.step-content {
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

.step-content h3 {
    color: var(--light-gray);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.step:hover .step-content h3 {
    color: var(--primary-pink);
    transform: translateX(3px);
}

.step-content ul {
    padding-left: 20px;
}

.step-content li {
    margin-bottom: 10px;
}

/* Report sections for SERP Report page */
.report-section {
    background-color: var(--secondary-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.report-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
}

.report-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 107, 107, 0.3);
}

.report-section h3 {
    color: var(--light-gray);
    margin-top: 0;
    font-size: 1.4em;
    position: relative;
    padding-left: 15px;
}

.report-image {
    background-color: var(--primary-dark);
    height: 200px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: var(--light-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.report-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    opacity: 0.1;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.report-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.2);
}

.report-image:hover::before {
    opacity: 0.2;
}

/* Steps container for How It Works section */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

/* Feature icon styles */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary-pink);
}

/* Geometric decorations */
.geometric-shape {
    position: absolute;
    background-color: var(--primary-pink);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Utility classes for geometric shapes */
.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    transform: rotate(45deg);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    transform: rotate(15deg);
}

/* Turn Data Into Dominance section styling */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-box {
    background-color: var(--secondary-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--light-gray);
    cursor: pointer;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 107, 107, 0.3);
    background-color: rgba(26, 27, 53, 0.8);
}

.feature-box:hover h3 {
    color: var(--primary-pink);
}

.feature-box h3 {
    color: var(--light-gray);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
    position: relative;
    padding-left: 15px;
    transition: color 0.3s ease;
}

.feature-box h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary-pink), var(--accent-orange));
    border-radius: 3px;
}

.feature-box p {
    position: relative;
    z-index: 1;
}

/* Add geometric shapes to feature boxes */
.feature-box::after {
    content: '';
    position: absolute;
    z-index: 0;
    opacity: 0.2;
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -50px;
    background-color: var(--primary-pink);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(45deg);
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.feature-box:hover::after {
    transform: rotate(60deg) scale(1.2);
    opacity: 0.3;
}

.feature-box:nth-child(2)::after {
    top: -50px;
    right: -50px;
    bottom: auto;
    background-color: var(--accent-orange);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(15deg);
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.feature-box:nth-child(2):hover::after {
    transform: rotate(30deg) scale(1.2);
    opacity: 0.3;
}

.feature-box:nth-child(3)::after {
    bottom: -40px;
    left: -40px;
    right: auto;
    background-color: #9966ff; /* Purple */
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    transform: rotate(-15deg);
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.feature-box:nth-child(3):hover::after {
    transform: rotate(-30deg) scale(1.2);
    opacity: 0.3;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Show hamburger menu and hide desktop nav */
    .hamburger-menu {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Adjust section padding */
    section {
        padding: 60px 20px;
    }
    
    /* Adjust hero section */
    .hero {
        padding: 100px 20px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    /* Adjust typography */
    h2 {
        font-size: 2.2rem;
    }
    
    /* Adjust card layouts */
    .service-card,
    .benefit-card,
    .team-member,
    .feature-box {
        padding: 30px;
    }
    
    /* Adjust hero buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-primary-button,
    .hero-secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Mobile navigation dark gradient */
    nav {
        background: linear-gradient(to right, rgba(20, 20, 43, 0.8) 0%, #682e3466 35%, rgba(20, 20, 43, 0.8) 75%);
    }
    
    /* Adjust typography */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    /* Adjust spacing */
    section {
        padding: 50px 20px;
    }
    
    .hero {
        padding: 80px 20px;
    }
    
    /* Adjust card layouts */
    .service-card,
    .benefit-card,
    .team-member,
    .feature-box {
        padding: 25px;
    }
    
    /* Adjust footer */
    .footer-container {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 30px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Further typography adjustments */
    .hero h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    /* Adjust spacing */
    section {
        padding: 40px 20px;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    /* Adjust card layouts */
    .service-card,
    .benefit-card,
    .team-member,
    .feature-box {
        padding: 20px;
    }
    
    /* Adjust buttons */
    .cta-button,
    .header-cta,
    .hero-primary-button,
    .hero-secondary-button,
    .request-button,
    .login-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    /* Adjust form elements */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
    }
    
    /* Adjust testimonial */
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial p {
        font-size: 1.1rem;
    }
}

/* New Black Logo Styling */
.logo-new-test img {
    transition: all 0.3s ease;
}

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

/* Platform Icons Scroller */
.platform-scroller {
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.platform-scroller .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.platform-scroller h3 {
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    --gap: 50px;
    display: flex;
}

.platform-scroll-track {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--gap);
    will-change: transform;
    animation: scrolling 12s linear infinite;
}

.platform-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 50px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
    flex-shrink: 0;
}

.platform-icon:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.2) saturate(1.5);
}

.platform-icon img {
    max-width: 60px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* WordPress logo now uses blue version that works with standard greyscale filter */

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-51%);
    }
}

.platform-scroll-container:hover .platform-scroll-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .platform-scroller {
        margin: 40px 0 30px 0;
        padding: 15px 0;
    }
    
    .platform-scroll-track {
        gap: 30px;
    }
    
    .platform-icon {
        min-width: 60px;
        height: 40px;
    }
    
    .platform-icon img {
        max-width: 45px;
        max-height: 30px;
    }
}